@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.
Files changed (38) hide show
  1. package/dist/connect.cjs +185 -22
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +722 -57
  4. package/dist/index.cjs +185 -22
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-entrance.d.ts +49 -0
  7. package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
  8. package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
  9. package/lib/seam/connect/models/acs/acs-system.d.ts +7 -7
  10. package/lib/seam/connect/models/acs/acs-system.js +1 -0
  11. package/lib/seam/connect/models/acs/acs-system.js.map +1 -1
  12. package/lib/seam/connect/models/acs/metadata/akiles.d.ts +33 -0
  13. package/lib/seam/connect/models/acs/metadata/akiles.js +25 -0
  14. package/lib/seam/connect/models/acs/metadata/akiles.js.map +1 -0
  15. package/lib/seam/connect/models/devices/device-metadata.d.ts +48 -0
  16. package/lib/seam/connect/models/devices/device-metadata.js +40 -0
  17. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device-provider.d.ts +2 -1
  19. package/lib/seam/connect/models/devices/device-provider.js +2 -1
  20. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  21. package/lib/seam/connect/models/devices/device-type.d.ts +1 -0
  22. package/lib/seam/connect/models/devices/device-type.js +1 -0
  23. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device.d.ts +71 -3
  25. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +51 -3
  26. package/lib/seam/connect/models/phones/phone-session.d.ts +188 -0
  27. package/lib/seam/connect/openapi.js +136 -0
  28. package/lib/seam/connect/openapi.js.map +1 -1
  29. package/lib/seam/connect/route-types.d.ts +544 -45
  30. package/package.json +1 -1
  31. package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
  32. package/src/lib/seam/connect/models/acs/acs-system.ts +1 -0
  33. package/src/lib/seam/connect/models/acs/metadata/akiles.ts +31 -0
  34. package/src/lib/seam/connect/models/devices/device-metadata.ts +41 -0
  35. package/src/lib/seam/connect/models/devices/device-provider.ts +2 -1
  36. package/src/lib/seam/connect/models/devices/device-type.ts +1 -0
  37. package/src/lib/seam/connect/openapi.ts +147 -0
  38. package/src/lib/seam/connect/route-types.ts +663 -0
@@ -5638,6 +5638,37 @@ declare const acs_entrance: z.ZodObject<{
5638
5638
  zone_name?: string | undefined;
5639
5639
  entry_relays_total_count?: number | undefined;
5640
5640
  }>>;
5641
+ akiles_metadata: z.ZodOptional<z.ZodObject<{
5642
+ gadget_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5643
+ site_id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5644
+ site_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5645
+ actions: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodObject<{
5646
+ id: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5647
+ name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
5648
+ }, "strip", z.ZodTypeAny, {
5649
+ name?: string | undefined;
5650
+ id?: string | undefined;
5651
+ }, {
5652
+ name?: string | undefined;
5653
+ id?: string | undefined;
5654
+ }>, "many">>>;
5655
+ }, "strip", z.ZodTypeAny, {
5656
+ site_id?: string | undefined;
5657
+ site_name?: string | undefined;
5658
+ gadget_id?: string | undefined;
5659
+ actions?: {
5660
+ name?: string | undefined;
5661
+ id?: string | undefined;
5662
+ }[] | undefined;
5663
+ }, {
5664
+ site_id?: string | undefined;
5665
+ site_name?: string | undefined;
5666
+ gadget_id?: string | undefined;
5667
+ actions?: {
5668
+ name?: string | undefined;
5669
+ id?: string | undefined;
5670
+ }[] | undefined;
5671
+ }>>;
5641
5672
  is_locked: z.ZodOptional<z.ZodBoolean>;
5642
5673
  } & {
5643
5674
  can_unlock_with_mobile_key: z.ZodOptional<z.ZodBoolean>;
@@ -5710,6 +5741,15 @@ declare const acs_entrance: z.ZodObject<{
5710
5741
  visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
5711
5742
  }[] | undefined;
5712
5743
  } | undefined;
5744
+ akiles_metadata?: {
5745
+ site_id?: string | undefined;
5746
+ site_name?: string | undefined;
5747
+ gadget_id?: string | undefined;
5748
+ actions?: {
5749
+ name?: string | undefined;
5750
+ id?: string | undefined;
5751
+ }[] | undefined;
5752
+ } | undefined;
5713
5753
  assa_abloy_vostio_metadata?: {
5714
5754
  door_name?: string | undefined;
5715
5755
  door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
@@ -5813,6 +5853,15 @@ declare const acs_entrance: z.ZodObject<{
5813
5853
  visionline_door_profile_type?: "BLE" | "commonDoor" | "touch" | undefined;
5814
5854
  }[] | undefined;
5815
5855
  } | undefined;
5856
+ akiles_metadata?: {
5857
+ site_id?: string | undefined;
5858
+ site_name?: string | undefined;
5859
+ gadget_id?: string | undefined;
5860
+ actions?: {
5861
+ name?: string | undefined;
5862
+ id?: string | undefined;
5863
+ }[] | undefined;
5864
+ } | undefined;
5816
5865
  assa_abloy_vostio_metadata?: {
5817
5866
  door_name?: string | undefined;
5818
5867
  door_type?: "CommonDoor" | "EntranceDoor" | "GuestDoor" | "Elevator" | undefined;
@@ -5859,7 +5908,7 @@ declare const acs_system: z.ZodObject<{
5859
5908
  acs_system_id: z.ZodString;
5860
5909
  acs_user_count: z.ZodOptional<z.ZodNumber>;
5861
5910
  acs_access_group_count: z.ZodOptional<z.ZodNumber>;
5862
- external_type: z.ZodOptional<z.ZodEnum<["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"]>>;
5911
+ external_type: z.ZodOptional<z.ZodEnum<["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"]>>;
5863
5912
  external_type_display_name: z.ZodOptional<z.ZodString>;
5864
5913
  is_credential_manager: z.ZodBoolean;
5865
5914
  visionline_metadata: z.ZodOptional<z.ZodObject<{
@@ -5875,7 +5924,7 @@ declare const acs_system: z.ZodObject<{
5875
5924
  system_id?: string | undefined;
5876
5925
  lan_address?: string | undefined;
5877
5926
  }>>;
5878
- system_type: z.ZodOptional<z.ZodEnum<["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"]>>;
5927
+ system_type: z.ZodOptional<z.ZodEnum<["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"]>>;
5879
5928
  system_type_display_name: z.ZodOptional<z.ZodString>;
5880
5929
  location: z.ZodObject<{
5881
5930
  time_zone: z.ZodNullable<z.ZodString>;
@@ -6108,12 +6157,12 @@ declare const acs_system: z.ZodObject<{
6108
6157
  system_id?: string | undefined;
6109
6158
  lan_address?: string | undefined;
6110
6159
  } | undefined;
6111
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
6160
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
6112
6161
  external_type_display_name?: string | undefined;
6113
6162
  default_credential_manager_acs_system_id?: string | null | undefined;
6114
6163
  acs_user_count?: number | undefined;
6115
6164
  acs_access_group_count?: number | undefined;
6116
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
6165
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
6117
6166
  system_type_display_name?: string | undefined;
6118
6167
  }, {
6119
6168
  name: string;
@@ -6181,12 +6230,12 @@ declare const acs_system: z.ZodObject<{
6181
6230
  system_id?: string | undefined;
6182
6231
  lan_address?: string | undefined;
6183
6232
  } | undefined;
6184
- external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
6233
+ external_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
6185
6234
  external_type_display_name?: string | undefined;
6186
6235
  default_credential_manager_acs_system_id?: string | null | undefined;
6187
6236
  acs_user_count?: number | undefined;
6188
6237
  acs_access_group_count?: number | undefined;
6189
- system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | undefined;
6238
+ system_type?: "assa_abloy_credential_service" | "assa_abloy_vostio" | "assa_abloy_vostio_credential_service" | "pti_site" | "avigilon_alta_org" | "salto_ks_site" | "salto_space_system" | "brivo_account" | "hid_credential_manager_organization" | "visionline_system" | "latch_building" | "dormakaba_community_site" | "dormakaba_ambiance_site" | "legic_connect_credential_service" | "hotek_site" | "kisi_organization" | "akiles_organization" | undefined;
6190
6239
  system_type_display_name?: string | undefined;
6191
6240
  }>;
6192
6241
  type AcsSystem = z.output<typeof acs_system>;
@@ -14761,7 +14810,7 @@ declare const device_warning: z.ZodDiscriminatedUnion<"warning_code", [z.ZodObje
14761
14810
  type DeviceWarning = z.infer<typeof device_warning>;
14762
14811
  declare const device: z.ZodObject<{
14763
14812
  device_id: z.ZodString;
14764
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
14813
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
14765
14814
  space_ids: z.ZodArray<z.ZodString, "many">;
14766
14815
  nickname: z.ZodOptional<z.ZodString>;
14767
14816
  display_name: z.ZodString;
@@ -15897,6 +15946,34 @@ declare const device: z.ZodObject<{
15897
15946
  place_name?: string | null | undefined;
15898
15947
  description?: string | null | undefined;
15899
15948
  }>>;
15949
+ aqara_metadata: z.ZodOptional<z.ZodObject<{
15950
+ did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15951
+ parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15952
+ device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15953
+ model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
15954
+ model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
15955
+ time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15956
+ position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15957
+ firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
15958
+ }, "strip", z.ZodTypeAny, {
15959
+ time_zone?: string | null | undefined;
15960
+ model?: string | undefined;
15961
+ device_name?: string | undefined;
15962
+ firmware_version?: string | null | undefined;
15963
+ did?: string | undefined;
15964
+ parent_did?: string | undefined;
15965
+ model_type?: number | undefined;
15966
+ position_id?: string | null | undefined;
15967
+ }, {
15968
+ time_zone?: string | null | undefined;
15969
+ model?: string | undefined;
15970
+ device_name?: string | undefined;
15971
+ firmware_version?: string | null | undefined;
15972
+ did?: string | undefined;
15973
+ parent_did?: string | undefined;
15974
+ model_type?: number | undefined;
15975
+ position_id?: string | null | undefined;
15976
+ }>>;
15900
15977
  }, "strip", z.ZodTypeAny, {
15901
15978
  ecobee_metadata?: {
15902
15979
  device_name?: string | undefined;
@@ -16192,6 +16269,16 @@ declare const device: z.ZodObject<{
16192
16269
  place_name?: string | null | undefined;
16193
16270
  description?: string | null | undefined;
16194
16271
  } | undefined;
16272
+ aqara_metadata?: {
16273
+ time_zone?: string | null | undefined;
16274
+ model?: string | undefined;
16275
+ device_name?: string | undefined;
16276
+ firmware_version?: string | null | undefined;
16277
+ did?: string | undefined;
16278
+ parent_did?: string | undefined;
16279
+ model_type?: number | undefined;
16280
+ position_id?: string | null | undefined;
16281
+ } | undefined;
16195
16282
  }, {
16196
16283
  ecobee_metadata?: {
16197
16284
  device_name?: string | undefined;
@@ -16487,6 +16574,16 @@ declare const device: z.ZodObject<{
16487
16574
  place_name?: string | null | undefined;
16488
16575
  description?: string | null | undefined;
16489
16576
  } | undefined;
16577
+ aqara_metadata?: {
16578
+ time_zone?: string | null | undefined;
16579
+ model?: string | undefined;
16580
+ device_name?: string | undefined;
16581
+ firmware_version?: string | null | undefined;
16582
+ did?: string | undefined;
16583
+ parent_did?: string | undefined;
16584
+ model_type?: number | undefined;
16585
+ position_id?: string | null | undefined;
16586
+ } | undefined;
16490
16587
  }>>, z.ZodIntersection<z.ZodObject<{
16491
16588
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
16492
16589
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -18343,7 +18440,7 @@ declare const device: z.ZodObject<{
18343
18440
  warning_code: "insufficient_permissions";
18344
18441
  })[];
18345
18442
  custom_metadata: Record<string, string | boolean>;
18346
- 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";
18443
+ 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";
18347
18444
  space_ids: string[];
18348
18445
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
18349
18446
  properties: {
@@ -18689,6 +18786,16 @@ declare const device: z.ZodObject<{
18689
18786
  place_name?: string | null | undefined;
18690
18787
  description?: string | null | undefined;
18691
18788
  } | undefined;
18789
+ aqara_metadata?: {
18790
+ time_zone?: string | null | undefined;
18791
+ model?: string | undefined;
18792
+ device_name?: string | undefined;
18793
+ firmware_version?: string | null | undefined;
18794
+ did?: string | undefined;
18795
+ parent_did?: string | undefined;
18796
+ model_type?: number | undefined;
18797
+ position_id?: string | null | undefined;
18798
+ } | undefined;
18692
18799
  } & {
18693
18800
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
18694
18801
  code_constraints?: ({
@@ -19129,7 +19236,7 @@ declare const device: z.ZodObject<{
19129
19236
  warning_code: "insufficient_permissions";
19130
19237
  })[];
19131
19238
  custom_metadata: Record<string, string | boolean>;
19132
- 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";
19239
+ 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";
19133
19240
  space_ids: string[];
19134
19241
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
19135
19242
  properties: {
@@ -19475,6 +19582,16 @@ declare const device: z.ZodObject<{
19475
19582
  place_name?: string | null | undefined;
19476
19583
  description?: string | null | undefined;
19477
19584
  } | undefined;
19585
+ aqara_metadata?: {
19586
+ time_zone?: string | null | undefined;
19587
+ model?: string | undefined;
19588
+ device_name?: string | undefined;
19589
+ firmware_version?: string | null | undefined;
19590
+ did?: string | undefined;
19591
+ parent_did?: string | undefined;
19592
+ model_type?: number | undefined;
19593
+ position_id?: string | null | undefined;
19594
+ } | undefined;
19478
19595
  } & {
19479
19596
  _experimental_supported_code_from_access_codes_lengths?: number[] | undefined;
19480
19597
  code_constraints?: ({
@@ -19763,6 +19880,7 @@ declare const DEVICE_PROVIDERS: {
19763
19880
  readonly ACUITY_SCHEDULING: "acuity_scheduling";
19764
19881
  readonly OMNITEC: "omnitec";
19765
19882
  readonly KISI: "kisi";
19883
+ readonly AQARA: "aqara";
19766
19884
  };
19767
19885
  type DeviceProviderName = (typeof DEVICE_PROVIDERS)[keyof typeof DEVICE_PROVIDERS];
19768
19886
  declare const device_provider: z.ZodObject<{
@@ -19846,7 +19964,7 @@ type DeviceProvider = z.infer<typeof device_provider>;
19846
19964
 
19847
19965
  declare const unmanaged_device: z.ZodObject<Pick<{
19848
19966
  device_id: z.ZodString;
19849
- device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
19967
+ device_type: z.ZodUnion<[z.ZodEnum<["akuvox_lock" | "august_lock" | "brivo_access_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"]>, z.ZodEnum<["keynest_key"]>, z.ZodEnum<["noiseaware_activity_zone" | "minut_sensor"]>, z.ZodEnum<["ecobee_thermostat" | "nest_thermostat" | "honeywell_resideo_thermostat" | "tado_thermostat" | "sensi_thermostat" | "smartthings_thermostat"]>, z.ZodEnum<["ios_phone" | "android_phone"]>, z.ZodEnum<["ring_camera"]>]>;
19850
19968
  space_ids: z.ZodArray<z.ZodString, "many">;
19851
19969
  nickname: z.ZodOptional<z.ZodString>;
19852
19970
  display_name: z.ZodString;
@@ -20982,6 +21100,34 @@ declare const unmanaged_device: z.ZodObject<Pick<{
20982
21100
  place_name?: string | null | undefined;
20983
21101
  description?: string | null | undefined;
20984
21102
  }>>;
21103
+ aqara_metadata: z.ZodOptional<z.ZodObject<{
21104
+ did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21105
+ parent_did: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21106
+ device_name: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21107
+ model: z.ZodOptional<z.ZodOptional<z.ZodString>>;
21108
+ model_type: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
21109
+ time_zone: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
21110
+ position_id: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
21111
+ firmware_version: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodString>>>;
21112
+ }, "strip", z.ZodTypeAny, {
21113
+ time_zone?: string | null | undefined;
21114
+ model?: string | undefined;
21115
+ device_name?: string | undefined;
21116
+ firmware_version?: string | null | undefined;
21117
+ did?: string | undefined;
21118
+ parent_did?: string | undefined;
21119
+ model_type?: number | undefined;
21120
+ position_id?: string | null | undefined;
21121
+ }, {
21122
+ time_zone?: string | null | undefined;
21123
+ model?: string | undefined;
21124
+ device_name?: string | undefined;
21125
+ firmware_version?: string | null | undefined;
21126
+ did?: string | undefined;
21127
+ parent_did?: string | undefined;
21128
+ model_type?: number | undefined;
21129
+ position_id?: string | null | undefined;
21130
+ }>>;
20985
21131
  }, "strip", z.ZodTypeAny, {
20986
21132
  ecobee_metadata?: {
20987
21133
  device_name?: string | undefined;
@@ -21277,6 +21423,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21277
21423
  place_name?: string | null | undefined;
21278
21424
  description?: string | null | undefined;
21279
21425
  } | undefined;
21426
+ aqara_metadata?: {
21427
+ time_zone?: string | null | undefined;
21428
+ model?: string | undefined;
21429
+ device_name?: string | undefined;
21430
+ firmware_version?: string | null | undefined;
21431
+ did?: string | undefined;
21432
+ parent_did?: string | undefined;
21433
+ model_type?: number | undefined;
21434
+ position_id?: string | null | undefined;
21435
+ } | undefined;
21280
21436
  }, {
21281
21437
  ecobee_metadata?: {
21282
21438
  device_name?: string | undefined;
@@ -21572,6 +21728,16 @@ declare const unmanaged_device: z.ZodObject<Pick<{
21572
21728
  place_name?: string | null | undefined;
21573
21729
  description?: string | null | undefined;
21574
21730
  } | undefined;
21731
+ aqara_metadata?: {
21732
+ time_zone?: string | null | undefined;
21733
+ model?: string | undefined;
21734
+ device_name?: string | undefined;
21735
+ firmware_version?: string | null | undefined;
21736
+ did?: string | undefined;
21737
+ parent_did?: string | undefined;
21738
+ model_type?: number | undefined;
21739
+ position_id?: string | null | undefined;
21740
+ } | undefined;
21575
21741
  }>>, z.ZodIntersection<z.ZodObject<{
21576
21742
  _experimental_supported_code_from_access_codes_lengths: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>>;
21577
21743
  code_constraints: z.ZodOptional<z.ZodOptional<z.ZodArray<z.ZodUnion<[z.ZodObject<{
@@ -23584,7 +23750,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23584
23750
  warning_code: "insufficient_permissions";
23585
23751
  })[];
23586
23752
  custom_metadata: Record<string, string | boolean>;
23587
- 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";
23753
+ 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";
23588
23754
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23589
23755
  properties: {
23590
23756
  name: string;
@@ -23858,7 +24024,7 @@ declare const unmanaged_device: z.ZodObject<Pick<{
23858
24024
  warning_code: "insufficient_permissions";
23859
24025
  })[];
23860
24026
  custom_metadata: Record<string, string | boolean>;
23861
- 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";
24027
+ 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";
23862
24028
  capabilities_supported: ("access_code" | "lock" | "noise_detection" | "thermostat" | "battery" | "phone")[];
23863
24029
  properties: {
23864
24030
  name: string;
@@ -41753,7 +41919,7 @@ type Routes = {
41753
41919
  /** ID of the device. */
41754
41920
  device_id: string;
41755
41921
  /** Type of the device. */
41756
- 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';
41922
+ 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';
41757
41923
  /** IDs of the spaces the device is in. */
41758
41924
  space_ids: string[];
41759
41925
  /** Optional nickname to describe the device, settable through Seam. */
@@ -42415,6 +42581,25 @@ type Routes = {
42415
42581
  /** Description for a Kisi device. */
42416
42582
  description?: ((string | null) | undefined) | undefined;
42417
42583
  } | undefined;
42584
+ /** Metadata for an Aqara device. */
42585
+ aqara_metadata?: {
42586
+ /** Device ID (did) for an Aqara device. */
42587
+ did?: (string | undefined) | undefined;
42588
+ /** Parent gateway device ID for an Aqara device. */
42589
+ parent_did?: (string | undefined) | undefined;
42590
+ /** Device name for an Aqara device. */
42591
+ device_name?: (string | undefined) | undefined;
42592
+ /** Model identifier for an Aqara device. */
42593
+ model?: (string | undefined) | undefined;
42594
+ /** Model type for an Aqara device. */
42595
+ model_type?: (number | undefined) | undefined;
42596
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
42597
+ time_zone?: ((string | null) | undefined) | undefined;
42598
+ /** Position (room) ID for an Aqara device. */
42599
+ position_id?: ((string | null) | undefined) | undefined;
42600
+ /** Firmware version for an Aqara device. */
42601
+ firmware_version?: ((string | null) | undefined) | undefined;
42602
+ } | undefined;
42418
42603
  }) & ({
42419
42604
  /** */
42420
42605
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -43374,6 +43559,22 @@ type Routes = {
43374
43559
  /** Total count of entry relays for an Avigilon Alta system. */
43375
43560
  entry_relays_total_count?: (number | undefined) | undefined;
43376
43561
  } | undefined;
43562
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
43563
+ akiles_metadata?: {
43564
+ /** ID of the Akiles gadget. */
43565
+ gadget_id?: (string | undefined) | undefined;
43566
+ /** ID of the Akiles site the gadget belongs to. */
43567
+ site_id?: (string | undefined) | undefined;
43568
+ /** Name of the Akiles site the gadget belongs to. */
43569
+ site_name?: (string | undefined) | undefined;
43570
+ /** Actions the gadget exposes (for example, open). */
43571
+ actions?: ({
43572
+ /** ID of the gadget action. */
43573
+ id?: (string | undefined) | undefined;
43574
+ /** Name of the gadget action. */
43575
+ name?: (string | undefined) | undefined;
43576
+ }[] | undefined) | undefined;
43577
+ } | undefined;
43377
43578
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
43378
43579
  is_locked?: boolean | undefined;
43379
43580
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -43577,7 +43778,7 @@ type Routes = {
43577
43778
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
43578
43779
  acs_access_group_count?: number | undefined;
43579
43780
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
43580
- 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;
43781
+ 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;
43581
43782
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
43582
43783
  external_type_display_name?: string | undefined;
43583
43784
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -43593,7 +43794,7 @@ type Routes = {
43593
43794
  } | undefined;
43594
43795
  /**
43595
43796
  * @deprecated Use `external_type`.*/
43596
- 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;
43797
+ 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;
43597
43798
  /**
43598
43799
  * @deprecated Use `external_type_display_name`.*/
43599
43800
  system_type_display_name?: string | undefined;
@@ -48552,7 +48753,7 @@ type Routes = {
48552
48753
  /** ID of the device. */
48553
48754
  device_id: string;
48554
48755
  /** Type of the device. */
48555
- 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';
48756
+ 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';
48556
48757
  /** IDs of the spaces the device is in. */
48557
48758
  space_ids: string[];
48558
48759
  /** Optional nickname to describe the device, settable through Seam. */
@@ -49214,6 +49415,25 @@ type Routes = {
49214
49415
  /** Description for a Kisi device. */
49215
49416
  description?: ((string | null) | undefined) | undefined;
49216
49417
  } | undefined;
49418
+ /** Metadata for an Aqara device. */
49419
+ aqara_metadata?: {
49420
+ /** Device ID (did) for an Aqara device. */
49421
+ did?: (string | undefined) | undefined;
49422
+ /** Parent gateway device ID for an Aqara device. */
49423
+ parent_did?: (string | undefined) | undefined;
49424
+ /** Device name for an Aqara device. */
49425
+ device_name?: (string | undefined) | undefined;
49426
+ /** Model identifier for an Aqara device. */
49427
+ model?: (string | undefined) | undefined;
49428
+ /** Model type for an Aqara device. */
49429
+ model_type?: (number | undefined) | undefined;
49430
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
49431
+ time_zone?: ((string | null) | undefined) | undefined;
49432
+ /** Position (room) ID for an Aqara device. */
49433
+ position_id?: ((string | null) | undefined) | undefined;
49434
+ /** Firmware version for an Aqara device. */
49435
+ firmware_version?: ((string | null) | undefined) | undefined;
49436
+ } | undefined;
49217
49437
  }) & ({
49218
49438
  /** */
49219
49439
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -50173,6 +50393,22 @@ type Routes = {
50173
50393
  /** Total count of entry relays for an Avigilon Alta system. */
50174
50394
  entry_relays_total_count?: (number | undefined) | undefined;
50175
50395
  } | undefined;
50396
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
50397
+ akiles_metadata?: {
50398
+ /** ID of the Akiles gadget. */
50399
+ gadget_id?: (string | undefined) | undefined;
50400
+ /** ID of the Akiles site the gadget belongs to. */
50401
+ site_id?: (string | undefined) | undefined;
50402
+ /** Name of the Akiles site the gadget belongs to. */
50403
+ site_name?: (string | undefined) | undefined;
50404
+ /** Actions the gadget exposes (for example, open). */
50405
+ actions?: ({
50406
+ /** ID of the gadget action. */
50407
+ id?: (string | undefined) | undefined;
50408
+ /** Name of the gadget action. */
50409
+ name?: (string | undefined) | undefined;
50410
+ }[] | undefined) | undefined;
50411
+ } | undefined;
50176
50412
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
50177
50413
  is_locked?: boolean | undefined;
50178
50414
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -53421,6 +53657,22 @@ type Routes = {
53421
53657
  /** Total count of entry relays for an Avigilon Alta system. */
53422
53658
  entry_relays_total_count?: (number | undefined) | undefined;
53423
53659
  } | undefined;
53660
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
53661
+ akiles_metadata?: {
53662
+ /** ID of the Akiles gadget. */
53663
+ gadget_id?: (string | undefined) | undefined;
53664
+ /** ID of the Akiles site the gadget belongs to. */
53665
+ site_id?: (string | undefined) | undefined;
53666
+ /** Name of the Akiles site the gadget belongs to. */
53667
+ site_name?: (string | undefined) | undefined;
53668
+ /** Actions the gadget exposes (for example, open). */
53669
+ actions?: ({
53670
+ /** ID of the gadget action. */
53671
+ id?: (string | undefined) | undefined;
53672
+ /** Name of the gadget action. */
53673
+ name?: (string | undefined) | undefined;
53674
+ }[] | undefined) | undefined;
53675
+ } | undefined;
53424
53676
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
53425
53677
  is_locked?: boolean | undefined;
53426
53678
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -55217,6 +55469,22 @@ type Routes = {
55217
55469
  /** Total count of entry relays for an Avigilon Alta system. */
55218
55470
  entry_relays_total_count?: (number | undefined) | undefined;
55219
55471
  } | undefined;
55472
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
55473
+ akiles_metadata?: {
55474
+ /** ID of the Akiles gadget. */
55475
+ gadget_id?: (string | undefined) | undefined;
55476
+ /** ID of the Akiles site the gadget belongs to. */
55477
+ site_id?: (string | undefined) | undefined;
55478
+ /** Name of the Akiles site the gadget belongs to. */
55479
+ site_name?: (string | undefined) | undefined;
55480
+ /** Actions the gadget exposes (for example, open). */
55481
+ actions?: ({
55482
+ /** ID of the gadget action. */
55483
+ id?: (string | undefined) | undefined;
55484
+ /** Name of the gadget action. */
55485
+ name?: (string | undefined) | undefined;
55486
+ }[] | undefined) | undefined;
55487
+ } | undefined;
55220
55488
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
55221
55489
  is_locked?: boolean | undefined;
55222
55490
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -61381,6 +61649,22 @@ type Routes = {
61381
61649
  /** Total count of entry relays for an Avigilon Alta system. */
61382
61650
  entry_relays_total_count?: (number | undefined) | undefined;
61383
61651
  } | undefined;
61652
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
61653
+ akiles_metadata?: {
61654
+ /** ID of the Akiles gadget. */
61655
+ gadget_id?: (string | undefined) | undefined;
61656
+ /** ID of the Akiles site the gadget belongs to. */
61657
+ site_id?: (string | undefined) | undefined;
61658
+ /** Name of the Akiles site the gadget belongs to. */
61659
+ site_name?: (string | undefined) | undefined;
61660
+ /** Actions the gadget exposes (for example, open). */
61661
+ actions?: ({
61662
+ /** ID of the gadget action. */
61663
+ id?: (string | undefined) | undefined;
61664
+ /** Name of the gadget action. */
61665
+ name?: (string | undefined) | undefined;
61666
+ }[] | undefined) | undefined;
61667
+ } | undefined;
61384
61668
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
61385
61669
  is_locked?: boolean | undefined;
61386
61670
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -61620,6 +61904,22 @@ type Routes = {
61620
61904
  /** Total count of entry relays for an Avigilon Alta system. */
61621
61905
  entry_relays_total_count?: (number | undefined) | undefined;
61622
61906
  } | undefined;
61907
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
61908
+ akiles_metadata?: {
61909
+ /** ID of the Akiles gadget. */
61910
+ gadget_id?: (string | undefined) | undefined;
61911
+ /** ID of the Akiles site the gadget belongs to. */
61912
+ site_id?: (string | undefined) | undefined;
61913
+ /** Name of the Akiles site the gadget belongs to. */
61914
+ site_name?: (string | undefined) | undefined;
61915
+ /** Actions the gadget exposes (for example, open). */
61916
+ actions?: ({
61917
+ /** ID of the gadget action. */
61918
+ id?: (string | undefined) | undefined;
61919
+ /** Name of the gadget action. */
61920
+ name?: (string | undefined) | undefined;
61921
+ }[] | undefined) | undefined;
61922
+ } | undefined;
61623
61923
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
61624
61924
  is_locked?: boolean | undefined;
61625
61925
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -63530,7 +63830,7 @@ type Routes = {
63530
63830
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
63531
63831
  acs_access_group_count?: number | undefined;
63532
63832
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63533
- 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;
63833
+ 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;
63534
63834
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63535
63835
  external_type_display_name?: string | undefined;
63536
63836
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -63546,7 +63846,7 @@ type Routes = {
63546
63846
  } | undefined;
63547
63847
  /**
63548
63848
  * @deprecated Use `external_type`.*/
63549
- 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;
63849
+ 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;
63550
63850
  /**
63551
63851
  * @deprecated Use `external_type_display_name`.*/
63552
63852
  system_type_display_name?: string | undefined;
@@ -63685,7 +63985,7 @@ type Routes = {
63685
63985
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
63686
63986
  acs_access_group_count?: number | undefined;
63687
63987
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63688
- 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;
63988
+ 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;
63689
63989
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63690
63990
  external_type_display_name?: string | undefined;
63691
63991
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -63701,7 +64001,7 @@ type Routes = {
63701
64001
  } | undefined;
63702
64002
  /**
63703
64003
  * @deprecated Use `external_type`.*/
63704
- 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;
64004
+ 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;
63705
64005
  /**
63706
64006
  * @deprecated Use `external_type_display_name`.*/
63707
64007
  system_type_display_name?: string | undefined;
@@ -63836,7 +64136,7 @@ type Routes = {
63836
64136
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
63837
64137
  acs_access_group_count?: number | undefined;
63838
64138
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63839
- 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;
64139
+ 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;
63840
64140
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
63841
64141
  external_type_display_name?: string | undefined;
63842
64142
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -63852,7 +64152,7 @@ type Routes = {
63852
64152
  } | undefined;
63853
64153
  /**
63854
64154
  * @deprecated Use `external_type`.*/
63855
- 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;
64155
+ 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;
63856
64156
  /**
63857
64157
  * @deprecated Use `external_type_display_name`.*/
63858
64158
  system_type_display_name?: string | undefined;
@@ -65119,6 +65419,22 @@ type Routes = {
65119
65419
  /** Total count of entry relays for an Avigilon Alta system. */
65120
65420
  entry_relays_total_count?: (number | undefined) | undefined;
65121
65421
  } | undefined;
65422
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
65423
+ akiles_metadata?: {
65424
+ /** ID of the Akiles gadget. */
65425
+ gadget_id?: (string | undefined) | undefined;
65426
+ /** ID of the Akiles site the gadget belongs to. */
65427
+ site_id?: (string | undefined) | undefined;
65428
+ /** Name of the Akiles site the gadget belongs to. */
65429
+ site_name?: (string | undefined) | undefined;
65430
+ /** Actions the gadget exposes (for example, open). */
65431
+ actions?: ({
65432
+ /** ID of the gadget action. */
65433
+ id?: (string | undefined) | undefined;
65434
+ /** Name of the gadget action. */
65435
+ name?: (string | undefined) | undefined;
65436
+ }[] | undefined) | undefined;
65437
+ } | undefined;
65122
65438
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
65123
65439
  is_locked?: boolean | undefined;
65124
65440
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -69597,7 +69913,7 @@ type Routes = {
69597
69913
  /** 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. */
69598
69914
  customer_key?: string | undefined;
69599
69915
  /** 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. */
69600
- 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;
69916
+ 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;
69601
69917
  /** 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. */
69602
69918
  provider_category?: ('stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors' | 'internal_beta') | undefined;
69603
69919
  /** 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). */
@@ -71426,7 +71742,7 @@ type Routes = {
71426
71742
  /** ID of the device. */
71427
71743
  device_id: string;
71428
71744
  /** Type of the device. */
71429
- 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';
71745
+ 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';
71430
71746
  /** IDs of the spaces the device is in. */
71431
71747
  space_ids: string[];
71432
71748
  /** Optional nickname to describe the device, settable through Seam. */
@@ -72088,6 +72404,25 @@ type Routes = {
72088
72404
  /** Description for a Kisi device. */
72089
72405
  description?: ((string | null) | undefined) | undefined;
72090
72406
  } | undefined;
72407
+ /** Metadata for an Aqara device. */
72408
+ aqara_metadata?: {
72409
+ /** Device ID (did) for an Aqara device. */
72410
+ did?: (string | undefined) | undefined;
72411
+ /** Parent gateway device ID for an Aqara device. */
72412
+ parent_did?: (string | undefined) | undefined;
72413
+ /** Device name for an Aqara device. */
72414
+ device_name?: (string | undefined) | undefined;
72415
+ /** Model identifier for an Aqara device. */
72416
+ model?: (string | undefined) | undefined;
72417
+ /** Model type for an Aqara device. */
72418
+ model_type?: (number | undefined) | undefined;
72419
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
72420
+ time_zone?: ((string | null) | undefined) | undefined;
72421
+ /** Position (room) ID for an Aqara device. */
72422
+ position_id?: ((string | null) | undefined) | undefined;
72423
+ /** Firmware version for an Aqara device. */
72424
+ firmware_version?: ((string | null) | undefined) | undefined;
72425
+ } | undefined;
72091
72426
  }) & ({
72092
72427
  /** */
72093
72428
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -72889,11 +73224,11 @@ type Routes = {
72889
73224
  /** ID of the Connect Webview for which you want to list devices. */
72890
73225
  connect_webview_id?: string | undefined;
72891
73226
  /** Device type for which you want to list devices. */
72892
- 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;
73227
+ 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;
72893
73228
  /** Array of device types for which you want to list devices. */
72894
- 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;
73229
+ 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;
72895
73230
  /** Manufacturer for which you want to list devices. */
72896
- 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;
73231
+ 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;
72897
73232
  /** Array of device IDs for which you want to list devices. */
72898
73233
  device_ids?: string[] | undefined;
72899
73234
  /** Numerical limit on the number of devices to return. */
@@ -72926,7 +73261,7 @@ type Routes = {
72926
73261
  /** ID of the device. */
72927
73262
  device_id: string;
72928
73263
  /** Type of the device. */
72929
- 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';
73264
+ 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';
72930
73265
  /** IDs of the spaces the device is in. */
72931
73266
  space_ids: string[];
72932
73267
  /** Optional nickname to describe the device, settable through Seam. */
@@ -73588,6 +73923,25 @@ type Routes = {
73588
73923
  /** Description for a Kisi device. */
73589
73924
  description?: ((string | null) | undefined) | undefined;
73590
73925
  } | undefined;
73926
+ /** Metadata for an Aqara device. */
73927
+ aqara_metadata?: {
73928
+ /** Device ID (did) for an Aqara device. */
73929
+ did?: (string | undefined) | undefined;
73930
+ /** Parent gateway device ID for an Aqara device. */
73931
+ parent_did?: (string | undefined) | undefined;
73932
+ /** Device name for an Aqara device. */
73933
+ device_name?: (string | undefined) | undefined;
73934
+ /** Model identifier for an Aqara device. */
73935
+ model?: (string | undefined) | undefined;
73936
+ /** Model type for an Aqara device. */
73937
+ model_type?: (number | undefined) | undefined;
73938
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
73939
+ time_zone?: ((string | null) | undefined) | undefined;
73940
+ /** Position (room) ID for an Aqara device. */
73941
+ position_id?: ((string | null) | undefined) | undefined;
73942
+ /** Firmware version for an Aqara device. */
73943
+ firmware_version?: ((string | null) | undefined) | undefined;
73944
+ } | undefined;
73591
73945
  }) & ({
73592
73946
  /** */
73593
73947
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -74396,7 +74750,7 @@ type Routes = {
74396
74750
  jsonResponse: {
74397
74751
  device_providers: {
74398
74752
  /** Name of the device provider. */
74399
- 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';
74753
+ 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';
74400
74754
  /** Display name for the device provider. */
74401
74755
  display_name: string;
74402
74756
  /** Image URL for the device provider. */
@@ -74574,7 +74928,7 @@ type Routes = {
74574
74928
  /** ID of the device. */
74575
74929
  device_id: string;
74576
74930
  /** Type of the device. */
74577
- 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';
74931
+ 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';
74578
74932
  /** Unique identifier for the account associated with the device. */
74579
74933
  connected_account_id: string;
74580
74934
  /** Location information for the device. */
@@ -75061,11 +75415,11 @@ type Routes = {
75061
75415
  /** ID of the Connect Webview for which you want to list devices. */
75062
75416
  connect_webview_id?: string | undefined;
75063
75417
  /** Device type for which you want to list devices. */
75064
- 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;
75418
+ 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;
75065
75419
  /** Array of device types for which you want to list devices. */
75066
- 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;
75420
+ 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;
75067
75421
  /** Manufacturer for which you want to list devices. */
75068
- 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;
75422
+ 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;
75069
75423
  /** Array of device IDs for which you want to list devices. */
75070
75424
  device_ids?: string[] | undefined;
75071
75425
  /** Timestamp by which to limit returned devices. Returns devices created before this timestamp. */
@@ -75098,7 +75452,7 @@ type Routes = {
75098
75452
  /** ID of the device. */
75099
75453
  device_id: string;
75100
75454
  /** Type of the device. */
75101
- 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';
75455
+ 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';
75102
75456
  /** Unique identifier for the account associated with the device. */
75103
75457
  connected_account_id: string;
75104
75458
  /** Location information for the device. */
@@ -84057,7 +84411,7 @@ type Routes = {
84057
84411
  /** ID of the device. */
84058
84412
  device_id: string;
84059
84413
  /** Type of the device. */
84060
- 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';
84414
+ 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';
84061
84415
  /** IDs of the spaces the device is in. */
84062
84416
  space_ids: string[];
84063
84417
  /** Optional nickname to describe the device, settable through Seam. */
@@ -84719,6 +85073,25 @@ type Routes = {
84719
85073
  /** Description for a Kisi device. */
84720
85074
  description?: ((string | null) | undefined) | undefined;
84721
85075
  } | undefined;
85076
+ /** Metadata for an Aqara device. */
85077
+ aqara_metadata?: {
85078
+ /** Device ID (did) for an Aqara device. */
85079
+ did?: (string | undefined) | undefined;
85080
+ /** Parent gateway device ID for an Aqara device. */
85081
+ parent_did?: (string | undefined) | undefined;
85082
+ /** Device name for an Aqara device. */
85083
+ device_name?: (string | undefined) | undefined;
85084
+ /** Model identifier for an Aqara device. */
85085
+ model?: (string | undefined) | undefined;
85086
+ /** Model type for an Aqara device. */
85087
+ model_type?: (number | undefined) | undefined;
85088
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
85089
+ time_zone?: ((string | null) | undefined) | undefined;
85090
+ /** Position (room) ID for an Aqara device. */
85091
+ position_id?: ((string | null) | undefined) | undefined;
85092
+ /** Firmware version for an Aqara device. */
85093
+ firmware_version?: ((string | null) | undefined) | undefined;
85094
+ } | undefined;
84722
85095
  }) & ({
84723
85096
  /** */
84724
85097
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -85507,7 +85880,7 @@ type Routes = {
85507
85880
  /** ID of the device. */
85508
85881
  device_id: string;
85509
85882
  /** Type of the device. */
85510
- 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';
85883
+ 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';
85511
85884
  /** IDs of the spaces the device is in. */
85512
85885
  space_ids: string[];
85513
85886
  /** Optional nickname to describe the device, settable through Seam. */
@@ -86169,6 +86542,25 @@ type Routes = {
86169
86542
  /** Description for a Kisi device. */
86170
86543
  description?: ((string | null) | undefined) | undefined;
86171
86544
  } | undefined;
86545
+ /** Metadata for an Aqara device. */
86546
+ aqara_metadata?: {
86547
+ /** Device ID (did) for an Aqara device. */
86548
+ did?: (string | undefined) | undefined;
86549
+ /** Parent gateway device ID for an Aqara device. */
86550
+ parent_did?: (string | undefined) | undefined;
86551
+ /** Device name for an Aqara device. */
86552
+ device_name?: (string | undefined) | undefined;
86553
+ /** Model identifier for an Aqara device. */
86554
+ model?: (string | undefined) | undefined;
86555
+ /** Model type for an Aqara device. */
86556
+ model_type?: (number | undefined) | undefined;
86557
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
86558
+ time_zone?: ((string | null) | undefined) | undefined;
86559
+ /** Position (room) ID for an Aqara device. */
86560
+ position_id?: ((string | null) | undefined) | undefined;
86561
+ /** Firmware version for an Aqara device. */
86562
+ firmware_version?: ((string | null) | undefined) | undefined;
86563
+ } | undefined;
86172
86564
  }) & ({
86173
86565
  /** */
86174
86566
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -86970,11 +87362,11 @@ type Routes = {
86970
87362
  /** ID of the Connect Webview for which you want to list devices. */
86971
87363
  connect_webview_id?: string | undefined;
86972
87364
  /** Device type of the locks that you want to list. */
86973
- 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;
87365
+ 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;
86974
87366
  /** Device types of the locks that you want to list. */
86975
- 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;
87367
+ 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;
86976
87368
  /** Manufacturer of the locks that you want to list. */
86977
- 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;
87369
+ 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;
86978
87370
  /** Array of device IDs for which you want to list devices. */
86979
87371
  device_ids?: string[] | undefined;
86980
87372
  /** Numerical limit on the number of devices to return. */
@@ -87007,7 +87399,7 @@ type Routes = {
87007
87399
  /** ID of the device. */
87008
87400
  device_id: string;
87009
87401
  /** Type of the device. */
87010
- 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';
87402
+ 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';
87011
87403
  /** IDs of the spaces the device is in. */
87012
87404
  space_ids: string[];
87013
87405
  /** Optional nickname to describe the device, settable through Seam. */
@@ -87669,6 +88061,25 @@ type Routes = {
87669
88061
  /** Description for a Kisi device. */
87670
88062
  description?: ((string | null) | undefined) | undefined;
87671
88063
  } | undefined;
88064
+ /** Metadata for an Aqara device. */
88065
+ aqara_metadata?: {
88066
+ /** Device ID (did) for an Aqara device. */
88067
+ did?: (string | undefined) | undefined;
88068
+ /** Parent gateway device ID for an Aqara device. */
88069
+ parent_did?: (string | undefined) | undefined;
88070
+ /** Device name for an Aqara device. */
88071
+ device_name?: (string | undefined) | undefined;
88072
+ /** Model identifier for an Aqara device. */
88073
+ model?: (string | undefined) | undefined;
88074
+ /** Model type for an Aqara device. */
88075
+ model_type?: (number | undefined) | undefined;
88076
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
88077
+ time_zone?: ((string | null) | undefined) | undefined;
88078
+ /** Position (room) ID for an Aqara device. */
88079
+ position_id?: ((string | null) | undefined) | undefined;
88080
+ /** Firmware version for an Aqara device. */
88081
+ firmware_version?: ((string | null) | undefined) | undefined;
88082
+ } | undefined;
87672
88083
  }) & ({
87673
88084
  /** */
87674
88085
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -88456,7 +88867,7 @@ type Routes = {
88456
88867
  /** ID of the device. */
88457
88868
  device_id: string;
88458
88869
  /** Type of the device. */
88459
- 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';
88870
+ 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';
88460
88871
  /** IDs of the spaces the device is in. */
88461
88872
  space_ids: string[];
88462
88873
  /** Optional nickname to describe the device, settable through Seam. */
@@ -89118,6 +89529,25 @@ type Routes = {
89118
89529
  /** Description for a Kisi device. */
89119
89530
  description?: ((string | null) | undefined) | undefined;
89120
89531
  } | undefined;
89532
+ /** Metadata for an Aqara device. */
89533
+ aqara_metadata?: {
89534
+ /** Device ID (did) for an Aqara device. */
89535
+ did?: (string | undefined) | undefined;
89536
+ /** Parent gateway device ID for an Aqara device. */
89537
+ parent_did?: (string | undefined) | undefined;
89538
+ /** Device name for an Aqara device. */
89539
+ device_name?: (string | undefined) | undefined;
89540
+ /** Model identifier for an Aqara device. */
89541
+ model?: (string | undefined) | undefined;
89542
+ /** Model type for an Aqara device. */
89543
+ model_type?: (number | undefined) | undefined;
89544
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
89545
+ time_zone?: ((string | null) | undefined) | undefined;
89546
+ /** Position (room) ID for an Aqara device. */
89547
+ position_id?: ((string | null) | undefined) | undefined;
89548
+ /** Firmware version for an Aqara device. */
89549
+ firmware_version?: ((string | null) | undefined) | undefined;
89550
+ } | undefined;
89121
89551
  }) & ({
89122
89552
  /** */
89123
89553
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -96786,7 +97216,7 @@ type Routes = {
96786
97216
  /** ID of the device. */
96787
97217
  device_id: string;
96788
97218
  /** Type of the device. */
96789
- 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';
97219
+ 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';
96790
97220
  /** IDs of the spaces the device is in. */
96791
97221
  space_ids: string[];
96792
97222
  /** Optional nickname to describe the device, settable through Seam. */
@@ -97448,6 +97878,25 @@ type Routes = {
97448
97878
  /** Description for a Kisi device. */
97449
97879
  description?: ((string | null) | undefined) | undefined;
97450
97880
  } | undefined;
97881
+ /** Metadata for an Aqara device. */
97882
+ aqara_metadata?: {
97883
+ /** Device ID (did) for an Aqara device. */
97884
+ did?: (string | undefined) | undefined;
97885
+ /** Parent gateway device ID for an Aqara device. */
97886
+ parent_did?: (string | undefined) | undefined;
97887
+ /** Device name for an Aqara device. */
97888
+ device_name?: (string | undefined) | undefined;
97889
+ /** Model identifier for an Aqara device. */
97890
+ model?: (string | undefined) | undefined;
97891
+ /** Model type for an Aqara device. */
97892
+ model_type?: (number | undefined) | undefined;
97893
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
97894
+ time_zone?: ((string | null) | undefined) | undefined;
97895
+ /** Position (room) ID for an Aqara device. */
97896
+ position_id?: ((string | null) | undefined) | undefined;
97897
+ /** Firmware version for an Aqara device. */
97898
+ firmware_version?: ((string | null) | undefined) | undefined;
97899
+ } | undefined;
97451
97900
  }) & ({
97452
97901
  /** */
97453
97902
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -98235,7 +98684,7 @@ type Routes = {
98235
98684
  /** ID of the device. */
98236
98685
  device_id: string;
98237
98686
  /** Type of the device. */
98238
- 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';
98687
+ 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';
98239
98688
  /** IDs of the spaces the device is in. */
98240
98689
  space_ids: string[];
98241
98690
  /** Optional nickname to describe the device, settable through Seam. */
@@ -98897,6 +99346,25 @@ type Routes = {
98897
99346
  /** Description for a Kisi device. */
98898
99347
  description?: ((string | null) | undefined) | undefined;
98899
99348
  } | undefined;
99349
+ /** Metadata for an Aqara device. */
99350
+ aqara_metadata?: {
99351
+ /** Device ID (did) for an Aqara device. */
99352
+ did?: (string | undefined) | undefined;
99353
+ /** Parent gateway device ID for an Aqara device. */
99354
+ parent_did?: (string | undefined) | undefined;
99355
+ /** Device name for an Aqara device. */
99356
+ device_name?: (string | undefined) | undefined;
99357
+ /** Model identifier for an Aqara device. */
99358
+ model?: (string | undefined) | undefined;
99359
+ /** Model type for an Aqara device. */
99360
+ model_type?: (number | undefined) | undefined;
99361
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
99362
+ time_zone?: ((string | null) | undefined) | undefined;
99363
+ /** Position (room) ID for an Aqara device. */
99364
+ position_id?: ((string | null) | undefined) | undefined;
99365
+ /** Firmware version for an Aqara device. */
99366
+ firmware_version?: ((string | null) | undefined) | undefined;
99367
+ } | undefined;
98900
99368
  }) & ({
98901
99369
  /** */
98902
99370
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -114427,6 +114895,22 @@ type Routes = {
114427
114895
  /** Total count of entry relays for an Avigilon Alta system. */
114428
114896
  entry_relays_total_count?: (number | undefined) | undefined;
114429
114897
  } | undefined;
114898
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
114899
+ akiles_metadata?: {
114900
+ /** ID of the Akiles gadget. */
114901
+ gadget_id?: (string | undefined) | undefined;
114902
+ /** ID of the Akiles site the gadget belongs to. */
114903
+ site_id?: (string | undefined) | undefined;
114904
+ /** Name of the Akiles site the gadget belongs to. */
114905
+ site_name?: (string | undefined) | undefined;
114906
+ /** Actions the gadget exposes (for example, open). */
114907
+ actions?: ({
114908
+ /** ID of the gadget action. */
114909
+ id?: (string | undefined) | undefined;
114910
+ /** Name of the gadget action. */
114911
+ name?: (string | undefined) | undefined;
114912
+ }[] | undefined) | undefined;
114913
+ } | undefined;
114430
114914
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
114431
114915
  is_locked?: boolean | undefined;
114432
114916
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -114822,7 +115306,7 @@ type Routes = {
114822
115306
  /** ID of the device. */
114823
115307
  device_id: string;
114824
115308
  /** Type of the device. */
114825
- 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';
115309
+ 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';
114826
115310
  /** IDs of the spaces the device is in. */
114827
115311
  space_ids: string[];
114828
115312
  /** Optional nickname to describe the device, settable through Seam. */
@@ -115484,6 +115968,25 @@ type Routes = {
115484
115968
  /** Description for a Kisi device. */
115485
115969
  description?: ((string | null) | undefined) | undefined;
115486
115970
  } | undefined;
115971
+ /** Metadata for an Aqara device. */
115972
+ aqara_metadata?: {
115973
+ /** Device ID (did) for an Aqara device. */
115974
+ did?: (string | undefined) | undefined;
115975
+ /** Parent gateway device ID for an Aqara device. */
115976
+ parent_did?: (string | undefined) | undefined;
115977
+ /** Device name for an Aqara device. */
115978
+ device_name?: (string | undefined) | undefined;
115979
+ /** Model identifier for an Aqara device. */
115980
+ model?: (string | undefined) | undefined;
115981
+ /** Model type for an Aqara device. */
115982
+ model_type?: (number | undefined) | undefined;
115983
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
115984
+ time_zone?: ((string | null) | undefined) | undefined;
115985
+ /** Position (room) ID for an Aqara device. */
115986
+ position_id?: ((string | null) | undefined) | undefined;
115987
+ /** Firmware version for an Aqara device. */
115988
+ firmware_version?: ((string | null) | undefined) | undefined;
115989
+ } | undefined;
115487
115990
  }) & ({
115488
115991
  /** */
115489
115992
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -116443,6 +116946,22 @@ type Routes = {
116443
116946
  /** Total count of entry relays for an Avigilon Alta system. */
116444
116947
  entry_relays_total_count?: (number | undefined) | undefined;
116445
116948
  } | undefined;
116949
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
116950
+ akiles_metadata?: {
116951
+ /** ID of the Akiles gadget. */
116952
+ gadget_id?: (string | undefined) | undefined;
116953
+ /** ID of the Akiles site the gadget belongs to. */
116954
+ site_id?: (string | undefined) | undefined;
116955
+ /** Name of the Akiles site the gadget belongs to. */
116956
+ site_name?: (string | undefined) | undefined;
116957
+ /** Actions the gadget exposes (for example, open). */
116958
+ actions?: ({
116959
+ /** ID of the gadget action. */
116960
+ id?: (string | undefined) | undefined;
116961
+ /** Name of the gadget action. */
116962
+ name?: (string | undefined) | undefined;
116963
+ }[] | undefined) | undefined;
116964
+ } | undefined;
116446
116965
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
116447
116966
  is_locked?: boolean | undefined;
116448
116967
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -116646,7 +117165,7 @@ type Routes = {
116646
117165
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
116647
117166
  acs_access_group_count?: number | undefined;
116648
117167
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
116649
- 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;
117168
+ 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;
116650
117169
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
116651
117170
  external_type_display_name?: string | undefined;
116652
117171
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -116662,7 +117181,7 @@ type Routes = {
116662
117181
  } | undefined;
116663
117182
  /**
116664
117183
  * @deprecated Use `external_type`.*/
116665
- 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;
117184
+ 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;
116666
117185
  /**
116667
117186
  * @deprecated Use `external_type_display_name`.*/
116668
117187
  system_type_display_name?: string | undefined;
@@ -122382,7 +122901,7 @@ type Routes = {
122382
122901
  /** ID of the device. */
122383
122902
  device_id: string;
122384
122903
  /** Type of the device. */
122385
- 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';
122904
+ 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';
122386
122905
  /** IDs of the spaces the device is in. */
122387
122906
  space_ids: string[];
122388
122907
  /** Optional nickname to describe the device, settable through Seam. */
@@ -123044,6 +123563,25 @@ type Routes = {
123044
123563
  /** Description for a Kisi device. */
123045
123564
  description?: ((string | null) | undefined) | undefined;
123046
123565
  } | undefined;
123566
+ /** Metadata for an Aqara device. */
123567
+ aqara_metadata?: {
123568
+ /** Device ID (did) for an Aqara device. */
123569
+ did?: (string | undefined) | undefined;
123570
+ /** Parent gateway device ID for an Aqara device. */
123571
+ parent_did?: (string | undefined) | undefined;
123572
+ /** Device name for an Aqara device. */
123573
+ device_name?: (string | undefined) | undefined;
123574
+ /** Model identifier for an Aqara device. */
123575
+ model?: (string | undefined) | undefined;
123576
+ /** Model type for an Aqara device. */
123577
+ model_type?: (number | undefined) | undefined;
123578
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
123579
+ time_zone?: ((string | null) | undefined) | undefined;
123580
+ /** Position (room) ID for an Aqara device. */
123581
+ position_id?: ((string | null) | undefined) | undefined;
123582
+ /** Firmware version for an Aqara device. */
123583
+ firmware_version?: ((string | null) | undefined) | undefined;
123584
+ } | undefined;
123047
123585
  }) & ({
123048
123586
  /** */
123049
123587
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -127310,7 +127848,7 @@ type Routes = {
127310
127848
  /** ID of the device. */
127311
127849
  device_id: string;
127312
127850
  /** Type of the device. */
127313
- 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';
127851
+ 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';
127314
127852
  /** IDs of the spaces the device is in. */
127315
127853
  space_ids: string[];
127316
127854
  /** Optional nickname to describe the device, settable through Seam. */
@@ -127972,6 +128510,25 @@ type Routes = {
127972
128510
  /** Description for a Kisi device. */
127973
128511
  description?: ((string | null) | undefined) | undefined;
127974
128512
  } | undefined;
128513
+ /** Metadata for an Aqara device. */
128514
+ aqara_metadata?: {
128515
+ /** Device ID (did) for an Aqara device. */
128516
+ did?: (string | undefined) | undefined;
128517
+ /** Parent gateway device ID for an Aqara device. */
128518
+ parent_did?: (string | undefined) | undefined;
128519
+ /** Device name for an Aqara device. */
128520
+ device_name?: (string | undefined) | undefined;
128521
+ /** Model identifier for an Aqara device. */
128522
+ model?: (string | undefined) | undefined;
128523
+ /** Model type for an Aqara device. */
128524
+ model_type?: (number | undefined) | undefined;
128525
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
128526
+ time_zone?: ((string | null) | undefined) | undefined;
128527
+ /** Position (room) ID for an Aqara device. */
128528
+ position_id?: ((string | null) | undefined) | undefined;
128529
+ /** Firmware version for an Aqara device. */
128530
+ firmware_version?: ((string | null) | undefined) | undefined;
128531
+ } | undefined;
127975
128532
  }) & ({
127976
128533
  /** */
127977
128534
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -128759,7 +129316,7 @@ type Routes = {
128759
129316
  /** ID of the device. */
128760
129317
  device_id: string;
128761
129318
  /** Type of the device. */
128762
- 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';
129319
+ 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';
128763
129320
  /** IDs of the spaces the device is in. */
128764
129321
  space_ids: string[];
128765
129322
  /** Optional nickname to describe the device, settable through Seam. */
@@ -129421,6 +129978,25 @@ type Routes = {
129421
129978
  /** Description for a Kisi device. */
129422
129979
  description?: ((string | null) | undefined) | undefined;
129423
129980
  } | undefined;
129981
+ /** Metadata for an Aqara device. */
129982
+ aqara_metadata?: {
129983
+ /** Device ID (did) for an Aqara device. */
129984
+ did?: (string | undefined) | undefined;
129985
+ /** Parent gateway device ID for an Aqara device. */
129986
+ parent_did?: (string | undefined) | undefined;
129987
+ /** Device name for an Aqara device. */
129988
+ device_name?: (string | undefined) | undefined;
129989
+ /** Model identifier for an Aqara device. */
129990
+ model?: (string | undefined) | undefined;
129991
+ /** Model type for an Aqara device. */
129992
+ model_type?: (number | undefined) | undefined;
129993
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
129994
+ time_zone?: ((string | null) | undefined) | undefined;
129995
+ /** Position (room) ID for an Aqara device. */
129996
+ position_id?: ((string | null) | undefined) | undefined;
129997
+ /** Firmware version for an Aqara device. */
129998
+ firmware_version?: ((string | null) | undefined) | undefined;
129999
+ } | undefined;
129424
130000
  }) & ({
129425
130001
  /** */
129426
130002
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -138034,7 +138610,7 @@ type Routes = {
138034
138610
  /** ID of the device. */
138035
138611
  device_id: string;
138036
138612
  /** Type of the device. */
138037
- 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';
138613
+ 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';
138038
138614
  /** IDs of the spaces the device is in. */
138039
138615
  space_ids: string[];
138040
138616
  /** Optional nickname to describe the device, settable through Seam. */
@@ -138696,6 +139272,25 @@ type Routes = {
138696
139272
  /** Description for a Kisi device. */
138697
139273
  description?: ((string | null) | undefined) | undefined;
138698
139274
  } | undefined;
139275
+ /** Metadata for an Aqara device. */
139276
+ aqara_metadata?: {
139277
+ /** Device ID (did) for an Aqara device. */
139278
+ did?: (string | undefined) | undefined;
139279
+ /** Parent gateway device ID for an Aqara device. */
139280
+ parent_did?: (string | undefined) | undefined;
139281
+ /** Device name for an Aqara device. */
139282
+ device_name?: (string | undefined) | undefined;
139283
+ /** Model identifier for an Aqara device. */
139284
+ model?: (string | undefined) | undefined;
139285
+ /** Model type for an Aqara device. */
139286
+ model_type?: (number | undefined) | undefined;
139287
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
139288
+ time_zone?: ((string | null) | undefined) | undefined;
139289
+ /** Position (room) ID for an Aqara device. */
139290
+ position_id?: ((string | null) | undefined) | undefined;
139291
+ /** Firmware version for an Aqara device. */
139292
+ firmware_version?: ((string | null) | undefined) | undefined;
139293
+ } | undefined;
138699
139294
  }) & ({
138700
139295
  /** */
138701
139296
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -139485,7 +140080,7 @@ type Routes = {
139485
140080
  /** ID of the device. */
139486
140081
  device_id: string;
139487
140082
  /** Type of the device. */
139488
- 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';
140083
+ 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';
139489
140084
  /** IDs of the spaces the device is in. */
139490
140085
  space_ids: string[];
139491
140086
  /** Optional nickname to describe the device, settable through Seam. */
@@ -140147,6 +140742,25 @@ type Routes = {
140147
140742
  /** Description for a Kisi device. */
140148
140743
  description?: ((string | null) | undefined) | undefined;
140149
140744
  } | undefined;
140745
+ /** Metadata for an Aqara device. */
140746
+ aqara_metadata?: {
140747
+ /** Device ID (did) for an Aqara device. */
140748
+ did?: (string | undefined) | undefined;
140749
+ /** Parent gateway device ID for an Aqara device. */
140750
+ parent_did?: (string | undefined) | undefined;
140751
+ /** Device name for an Aqara device. */
140752
+ device_name?: (string | undefined) | undefined;
140753
+ /** Model identifier for an Aqara device. */
140754
+ model?: (string | undefined) | undefined;
140755
+ /** Model type for an Aqara device. */
140756
+ model_type?: (number | undefined) | undefined;
140757
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
140758
+ time_zone?: ((string | null) | undefined) | undefined;
140759
+ /** Position (room) ID for an Aqara device. */
140760
+ position_id?: ((string | null) | undefined) | undefined;
140761
+ /** Firmware version for an Aqara device. */
140762
+ firmware_version?: ((string | null) | undefined) | undefined;
140763
+ } | undefined;
140150
140764
  }) & ({
140151
140765
  /** */
140152
140766
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -141120,6 +141734,22 @@ type Routes = {
141120
141734
  /** Total count of entry relays for an Avigilon Alta system. */
141121
141735
  entry_relays_total_count?: (number | undefined) | undefined;
141122
141736
  } | undefined;
141737
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
141738
+ akiles_metadata?: {
141739
+ /** ID of the Akiles gadget. */
141740
+ gadget_id?: (string | undefined) | undefined;
141741
+ /** ID of the Akiles site the gadget belongs to. */
141742
+ site_id?: (string | undefined) | undefined;
141743
+ /** Name of the Akiles site the gadget belongs to. */
141744
+ site_name?: (string | undefined) | undefined;
141745
+ /** Actions the gadget exposes (for example, open). */
141746
+ actions?: ({
141747
+ /** ID of the gadget action. */
141748
+ id?: (string | undefined) | undefined;
141749
+ /** Name of the gadget action. */
141750
+ name?: (string | undefined) | undefined;
141751
+ }[] | undefined) | undefined;
141752
+ } | undefined;
141123
141753
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
141124
141754
  is_locked?: boolean | undefined;
141125
141755
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -141157,7 +141787,7 @@ type Routes = {
141157
141787
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
141158
141788
  acs_access_group_count?: number | undefined;
141159
141789
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
141160
- 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;
141790
+ 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;
141161
141791
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
141162
141792
  external_type_display_name?: string | undefined;
141163
141793
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -141173,7 +141803,7 @@ type Routes = {
141173
141803
  } | undefined;
141174
141804
  /**
141175
141805
  * @deprecated Use `external_type`.*/
141176
- 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;
141806
+ 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;
141177
141807
  /**
141178
141808
  * @deprecated Use `external_type_display_name`.*/
141179
141809
  system_type_display_name?: string | undefined;
@@ -142211,7 +142841,7 @@ type Routes = {
142211
142841
  /** ID of the device. */
142212
142842
  device_id: string;
142213
142843
  /** Type of the device. */
142214
- 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';
142844
+ 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';
142215
142845
  /** IDs of the spaces the device is in. */
142216
142846
  space_ids: string[];
142217
142847
  /** Optional nickname to describe the device, settable through Seam. */
@@ -142873,6 +143503,25 @@ type Routes = {
142873
143503
  /** Description for a Kisi device. */
142874
143504
  description?: ((string | null) | undefined) | undefined;
142875
143505
  } | undefined;
143506
+ /** Metadata for an Aqara device. */
143507
+ aqara_metadata?: {
143508
+ /** Device ID (did) for an Aqara device. */
143509
+ did?: (string | undefined) | undefined;
143510
+ /** Parent gateway device ID for an Aqara device. */
143511
+ parent_did?: (string | undefined) | undefined;
143512
+ /** Device name for an Aqara device. */
143513
+ device_name?: (string | undefined) | undefined;
143514
+ /** Model identifier for an Aqara device. */
143515
+ model?: (string | undefined) | undefined;
143516
+ /** Model type for an Aqara device. */
143517
+ model_type?: (number | undefined) | undefined;
143518
+ /** Time zone reported for an Aqara device (e.g. GMT-07:00). */
143519
+ time_zone?: ((string | null) | undefined) | undefined;
143520
+ /** Position (room) ID for an Aqara device. */
143521
+ position_id?: ((string | null) | undefined) | undefined;
143522
+ /** Firmware version for an Aqara device. */
143523
+ firmware_version?: ((string | null) | undefined) | undefined;
143524
+ } | undefined;
142876
143525
  }) & ({
142877
143526
  /** */
142878
143527
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -143832,6 +144481,22 @@ type Routes = {
143832
144481
  /** Total count of entry relays for an Avigilon Alta system. */
143833
144482
  entry_relays_total_count?: (number | undefined) | undefined;
143834
144483
  } | undefined;
144484
+ /** Akiles-specific metadata associated with the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details). */
144485
+ akiles_metadata?: {
144486
+ /** ID of the Akiles gadget. */
144487
+ gadget_id?: (string | undefined) | undefined;
144488
+ /** ID of the Akiles site the gadget belongs to. */
144489
+ site_id?: (string | undefined) | undefined;
144490
+ /** Name of the Akiles site the gadget belongs to. */
144491
+ site_name?: (string | undefined) | undefined;
144492
+ /** Actions the gadget exposes (for example, open). */
144493
+ actions?: ({
144494
+ /** ID of the gadget action. */
144495
+ id?: (string | undefined) | undefined;
144496
+ /** Name of the gadget action. */
144497
+ name?: (string | undefined) | undefined;
144498
+ }[] | undefined) | undefined;
144499
+ } | undefined;
143835
144500
  /** Indicates whether the [entrance](https://docs.seam.co/low-level-apis/access-systems/retrieving-entrance-details) is currently locked. */
143836
144501
  is_locked?: boolean | undefined;
143837
144502
  /** Indicates whether the ACS entrance can be unlocked with mobile key credentials. */
@@ -143855,7 +144520,7 @@ type Routes = {
143855
144520
  /** Number of access groups in the [access control system](https://docs.seam.co/low-level-apis/access-systems). */
143856
144521
  acs_access_group_count?: number | undefined;
143857
144522
  /** Brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
143858
- 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;
144523
+ 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;
143859
144524
  /** Display name that corresponds to the brand-specific terminology for the [access control system](https://docs.seam.co/low-level-apis/access-systems) type. */
143860
144525
  external_type_display_name?: string | undefined;
143861
144526
  /** Indicates whether the `acs_system` is a credential manager. */
@@ -143871,7 +144536,7 @@ type Routes = {
143871
144536
  } | undefined;
143872
144537
  /**
143873
144538
  * @deprecated Use `external_type`.*/
143874
- 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;
144539
+ 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;
143875
144540
  /**
143876
144541
  * @deprecated Use `external_type_display_name`.*/
143877
144542
  system_type_display_name?: string | undefined;
@@ -146583,7 +147248,7 @@ type Routes = {
146583
147248
  /** ID of the device. */
146584
147249
  device_id: string;
146585
147250
  /** Type of the device. */
146586
- 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';
147251
+ 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';
146587
147252
  /** Unique identifier for the account associated with the device. */
146588
147253
  connected_account_id: string;
146589
147254
  /** Location information for the device. */