@seamapi/http 1.122.0 → 1.124.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (29) hide show
  1. package/dist/connect.cjs.map +1 -1
  2. package/dist/connect.d.cts +36 -16
  3. package/dist/index.cjs.map +1 -1
  4. package/lib/seam/connect/resources/acs-entrance.d.ts +9 -0
  5. package/lib/seam/connect/resources/acs-system.d.ts +2 -2
  6. package/lib/seam/connect/resources/device-provider.d.ts +1 -1
  7. package/lib/seam/connect/resources/device.d.ts +11 -1
  8. package/lib/seam/connect/resources/phone-session.d.ts +9 -0
  9. package/lib/seam/connect/resources/unmanaged-device.d.ts +1 -1
  10. package/lib/seam/connect/routes/connect-webviews/connect-webviews.d.ts +1 -1
  11. package/lib/seam/connect/routes/customers/customers.d.ts +2 -1
  12. package/lib/seam/connect/routes/devices/devices.d.ts +3 -3
  13. package/lib/seam/connect/routes/devices/unmanaged/unmanaged.d.ts +3 -3
  14. package/lib/seam/connect/routes/locks/locks.d.ts +3 -3
  15. package/lib/version.d.ts +1 -1
  16. package/lib/version.js +1 -1
  17. package/package.json +3 -3
  18. package/src/lib/seam/connect/resources/acs-entrance.ts +13 -0
  19. package/src/lib/seam/connect/resources/acs-system.ts +2 -0
  20. package/src/lib/seam/connect/resources/device-provider.ts +1 -0
  21. package/src/lib/seam/connect/resources/device.ts +13 -0
  22. package/src/lib/seam/connect/resources/phone-session.ts +13 -0
  23. package/src/lib/seam/connect/resources/unmanaged-device.ts +1 -0
  24. package/src/lib/seam/connect/routes/connect-webviews/connect-webviews.ts +1 -0
  25. package/src/lib/seam/connect/routes/customers/customers.ts +2 -1
  26. package/src/lib/seam/connect/routes/devices/devices.ts +3 -0
  27. package/src/lib/seam/connect/routes/devices/unmanaged/unmanaged.ts +3 -0
  28. package/src/lib/seam/connect/routes/locks/locks.ts +3 -0
  29. package/src/lib/version.ts +1 -1
@@ -1,6 +1,15 @@
1
1
  export type AcsEntranceResource = {
2
2
  acs_entrance_id: string;
3
3
  acs_system_id: string;
4
+ akiles_metadata?: {
5
+ actions?: Array<{
6
+ id?: string | undefined;
7
+ name?: string | undefined;
8
+ }> | undefined;
9
+ gadget_id?: string | undefined;
10
+ site_id?: string | undefined;
11
+ site_name?: string | undefined;
12
+ } | undefined;
4
13
  assa_abloy_vostio_metadata?: {
5
14
  door_name?: string | undefined;
6
15
  door_number?: number | undefined;
@@ -40,7 +40,7 @@ export type AcsSystemResource = {
40
40
  error_code: 'provider_service_unavailable';
41
41
  message: string;
42
42
  }>;
43
- 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;
43
+ 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;
44
44
  external_type_display_name?: string | undefined;
45
45
  image_alt_text: string;
46
46
  image_url: string;
@@ -49,7 +49,7 @@ export type AcsSystemResource = {
49
49
  time_zone: string | null;
50
50
  };
51
51
  name: string;
52
- 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;
52
+ 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;
53
53
  system_type_display_name?: string | undefined;
54
54
  visionline_metadata?: {
55
55
  lan_address?: string | undefined;
@@ -19,7 +19,7 @@ export type DeviceProviderResource = {
19
19
  can_simulate_removal?: boolean | undefined;
20
20
  can_turn_off_hvac?: boolean | undefined;
21
21
  can_unlock_with_code?: boolean | undefined;
22
- 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';
22
+ 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';
23
23
  display_name: string;
24
24
  image_url: string;
25
25
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'beta' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'cameras' | 'connectors'>;
@@ -35,7 +35,7 @@ export type DeviceResource = {
35
35
  image_url?: string | undefined;
36
36
  provider_category: string;
37
37
  } | undefined;
38
- 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';
38
+ 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';
39
39
  display_name: string;
40
40
  errors: Array<{
41
41
  created_at: string;
@@ -167,6 +167,16 @@ export type DeviceResource = {
167
167
  gadget_name?: string | undefined;
168
168
  product_name?: string | undefined;
169
169
  } | undefined;
170
+ aqara_metadata?: {
171
+ device_name?: string | undefined;
172
+ did?: string | undefined;
173
+ firmware_version?: string | null | undefined;
174
+ model?: string | undefined;
175
+ model_type?: number | undefined;
176
+ parent_did?: string | undefined;
177
+ position_id?: string | null | undefined;
178
+ time_zone?: string | null | undefined;
179
+ } | undefined;
170
180
  assa_abloy_vostio_metadata?: {
171
181
  encoder_name?: string | undefined;
172
182
  } | undefined;
@@ -8,6 +8,15 @@ export type PhoneSessionResource = {
8
8
  acs_entrances: Array<{
9
9
  acs_entrance_id: string;
10
10
  acs_system_id: string;
11
+ akiles_metadata?: {
12
+ actions?: Array<{
13
+ id?: string | undefined;
14
+ name?: string | undefined;
15
+ }> | undefined;
16
+ gadget_id?: string | undefined;
17
+ site_id?: string | undefined;
18
+ site_name?: string | undefined;
19
+ } | undefined;
11
20
  assa_abloy_vostio_metadata?: {
12
21
  door_name?: string | undefined;
13
22
  door_number?: number | undefined;
@@ -24,7 +24,7 @@ export type UnmanagedDeviceResource = {
24
24
  created_at: string;
25
25
  custom_metadata: Record<string, unknown>;
26
26
  device_id: string;
27
- 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';
27
+ 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';
28
28
  errors: Array<{
29
29
  created_at: string;
30
30
  error_code: 'account_disconnected';
@@ -24,7 +24,7 @@ export declare class SeamHttpConnectWebviews {
24
24
  }
25
25
  export type ConnectWebviewsCreateParameters = {
26
26
  accepted_capabilities?: Array<'lock' | 'thermostat' | 'noise_sensor' | 'access_control' | 'camera'> | undefined;
27
- accepted_providers?: Array<'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;
27
+ accepted_providers?: Array<'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;
28
28
  automatically_manage_new_devices?: boolean | undefined;
29
29
  custom_metadata?: Record<string, unknown> | undefined;
30
30
  custom_redirect_failure_url?: string | undefined;
@@ -33,7 +33,8 @@ export type CustomersCreatePortalParameters = {
33
33
  customization_profile_id?: string | undefined;
34
34
  deep_link?: {
35
35
  resource_key?: string | undefined;
36
- resource_type?: 'reservation' | 'space' | undefined;
36
+ resource_type?: 'reservation' | 'space' | 'device' | undefined;
37
+ resource_id?: string | undefined;
37
38
  } | undefined;
38
39
  exclude_locale_picker?: boolean | undefined;
39
40
  features?: {
@@ -67,12 +67,12 @@ export type DevicesListParameters = {
67
67
  custom_metadata_has?: Record<string, unknown> | undefined;
68
68
  customer_key?: string | undefined;
69
69
  device_ids?: Array<string> | undefined;
70
- 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;
71
- device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
70
+ 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;
71
+ device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
72
72
  exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
73
73
  include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
74
74
  limit?: number | undefined;
75
- 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;
75
+ 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;
76
76
  page_cursor?: string | undefined;
77
77
  search?: string | undefined;
78
78
  space_id?: string | undefined;
@@ -46,12 +46,12 @@ export type DevicesUnmanagedListParameters = {
46
46
  custom_metadata_has?: Record<string, unknown> | undefined;
47
47
  customer_key?: string | undefined;
48
48
  device_ids?: Array<string> | undefined;
49
- 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;
50
- device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
49
+ 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;
50
+ device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
51
51
  exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
52
52
  include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
53
53
  limit?: number | undefined;
54
- 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;
54
+ 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;
55
55
  page_cursor?: string | undefined;
56
56
  search?: string | undefined;
57
57
  space_id?: string | undefined;
@@ -66,12 +66,12 @@ export type LocksListParameters = {
66
66
  custom_metadata_has?: Record<string, unknown> | undefined;
67
67
  customer_key?: string | undefined;
68
68
  device_ids?: Array<string> | undefined;
69
- 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;
70
- device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
69
+ 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;
70
+ device_types?: Array<'akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'smartthings_lock' | 'wyze_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;
71
71
  exclude_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
72
72
  include_if?: Array<'can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs' | 'can_program_thermostat_programs_as_weekday_weekend' | 'can_program_thermostat_programs_as_different_each_day' | 'can_program_thermostat_programs_as_same_each_day' | 'can_simulate_hub_connection' | 'can_simulate_hub_disconnection' | 'can_simulate_paid_subscription' | 'can_configure_auto_lock'> | undefined;
73
73
  limit?: number | undefined;
74
- 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;
74
+ 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;
75
75
  page_cursor?: string | undefined;
76
76
  search?: string | undefined;
77
77
  space_id?: string | undefined;
package/lib/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const seamapiJavascriptHttpVersion = "1.122.0";
1
+ declare const seamapiJavascriptHttpVersion = "1.124.0";
2
2
  export default seamapiJavascriptHttpVersion;
package/lib/version.js CHANGED
@@ -1,3 +1,3 @@
1
- const seamapiJavascriptHttpVersion = '1.122.0';
1
+ const seamapiJavascriptHttpVersion = '1.124.0';
2
2
  export default seamapiJavascriptHttpVersion;
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/http",
3
- "version": "1.122.0",
3
+ "version": "1.124.0",
4
4
  "description": "JavaScript HTTP client for the Seam API written in TypeScript.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -86,7 +86,7 @@
86
86
  "npm": ">=10.9.4"
87
87
  },
88
88
  "peerDependencies": {
89
- "@seamapi/types": "^1.976.0"
89
+ "@seamapi/types": "^1.979.0"
90
90
  },
91
91
  "peerDependenciesMeta": {
92
92
  "@seamapi/types": {
@@ -102,7 +102,7 @@
102
102
  "@seamapi/blueprint": "^1.0.0",
103
103
  "@seamapi/fake-seam-connect": "^1.77.0",
104
104
  "@seamapi/smith": "^1.0.0",
105
- "@seamapi/types": "1.976.0",
105
+ "@seamapi/types": "1.979.0",
106
106
  "@swc/core": "^1.11.29",
107
107
  "@types/jsonwebtoken": "^9.0.6",
108
108
  "@types/node": "^24.10.9",
@@ -8,6 +8,19 @@ export type AcsEntranceResource = {
8
8
 
9
9
  acs_system_id: string
10
10
 
11
+ akiles_metadata?:
12
+ | {
13
+ actions?:
14
+ | Array<{
15
+ id?: string | undefined
16
+ name?: string | undefined
17
+ }>
18
+ | undefined
19
+ gadget_id?: string | undefined
20
+ site_id?: string | undefined
21
+ site_name?: string | undefined
22
+ }
23
+ | undefined
11
24
  assa_abloy_vostio_metadata?:
12
25
  | {
13
26
  door_name?: string | undefined
@@ -92,6 +92,7 @@ export type AcsSystemResource = {
92
92
  | 'assa_abloy_vostio_credential_service'
93
93
  | 'hotek_site'
94
94
  | 'kisi_organization'
95
+ | 'akiles_organization'
95
96
  | undefined
96
97
  external_type_display_name?: string | undefined
97
98
  image_alt_text: string
@@ -123,6 +124,7 @@ export type AcsSystemResource = {
123
124
  | 'assa_abloy_vostio_credential_service'
124
125
  | 'hotek_site'
125
126
  | 'kisi_organization'
127
+ | 'akiles_organization'
126
128
  | undefined
127
129
  system_type_display_name?: string | undefined
128
130
  visionline_metadata?:
@@ -87,6 +87,7 @@ export type DeviceProviderResource = {
87
87
  | 'acuity_scheduling'
88
88
  | 'omnitec'
89
89
  | 'kisi'
90
+ | 'aqara'
90
91
 
91
92
  display_name: string
92
93
 
@@ -89,6 +89,7 @@ export type DeviceResource = {
89
89
  | 'keyincode_lock'
90
90
  | 'omnitec_lock'
91
91
  | 'kisi_lock'
92
+ | 'aqara_lock'
92
93
  | 'keynest_key'
93
94
  | 'noiseaware_activity_zone'
94
95
  | 'minut_sensor'
@@ -314,6 +315,18 @@ export type DeviceResource = {
314
315
  product_name?: string | undefined
315
316
  }
316
317
  | undefined
318
+ aqara_metadata?:
319
+ | {
320
+ device_name?: string | undefined
321
+ did?: string | undefined
322
+ firmware_version?: string | null | undefined
323
+ model?: string | undefined
324
+ model_type?: number | undefined
325
+ parent_did?: string | undefined
326
+ position_id?: string | null | undefined
327
+ time_zone?: string | null | undefined
328
+ }
329
+ | undefined
317
330
  assa_abloy_vostio_metadata?:
318
331
  | {
319
332
  encoder_name?: string | undefined
@@ -17,6 +17,19 @@ export type PhoneSessionResource = {
17
17
 
18
18
  acs_system_id: string
19
19
 
20
+ akiles_metadata?:
21
+ | {
22
+ actions?:
23
+ | Array<{
24
+ id?: string | undefined
25
+ name?: string | undefined
26
+ }>
27
+ | undefined
28
+ gadget_id?: string | undefined
29
+ site_id?: string | undefined
30
+ site_name?: string | undefined
31
+ }
32
+ | undefined
20
33
  assa_abloy_vostio_metadata?:
21
34
  | {
22
35
  door_name?: string | undefined
@@ -71,6 +71,7 @@ export type UnmanagedDeviceResource = {
71
71
  | 'keyincode_lock'
72
72
  | 'omnitec_lock'
73
73
  | 'kisi_lock'
74
+ | 'aqara_lock'
74
75
  | 'keynest_key'
75
76
  | 'noiseaware_activity_zone'
76
77
  | 'minut_sensor'
@@ -284,6 +284,7 @@ export type ConnectWebviewsCreateParameters = {
284
284
  | 'acuity_scheduling'
285
285
  | 'omnitec'
286
286
  | 'kisi'
287
+ | 'aqara'
287
288
  | 'yale_access'
288
289
  | 'hid_cm'
289
290
  | 'google_nest'
@@ -220,7 +220,8 @@ export type CustomersCreatePortalParameters = {
220
220
  deep_link?:
221
221
  | {
222
222
  resource_key?: string | undefined
223
- resource_type?: 'reservation' | 'space' | undefined
223
+ resource_type?: 'reservation' | 'space' | 'device' | undefined
224
+ resource_id?: string | undefined
224
225
  }
225
226
  | undefined
226
227
  exclude_locale_picker?: boolean | undefined
@@ -332,6 +332,7 @@ export type DevicesListParameters = {
332
332
  | 'keyincode_lock'
333
333
  | 'omnitec_lock'
334
334
  | 'kisi_lock'
335
+ | 'aqara_lock'
335
336
  | 'keynest_key'
336
337
  | 'noiseaware_activity_zone'
337
338
  | 'minut_sensor'
@@ -376,6 +377,7 @@ export type DevicesListParameters = {
376
377
  | 'keyincode_lock'
377
378
  | 'omnitec_lock'
378
379
  | 'kisi_lock'
380
+ | 'aqara_lock'
379
381
  | 'keynest_key'
380
382
  | 'noiseaware_activity_zone'
381
383
  | 'minut_sensor'
@@ -470,6 +472,7 @@ export type DevicesListParameters = {
470
472
  | 'tedee'
471
473
  | 'keyincode'
472
474
  | 'akiles'
475
+ | 'aqara'
473
476
  | 'ecobee'
474
477
  | 'honeywell_resideo'
475
478
  | 'keynest'
@@ -261,6 +261,7 @@ export type DevicesUnmanagedListParameters = {
261
261
  | 'keyincode_lock'
262
262
  | 'omnitec_lock'
263
263
  | 'kisi_lock'
264
+ | 'aqara_lock'
264
265
  | 'keynest_key'
265
266
  | 'noiseaware_activity_zone'
266
267
  | 'minut_sensor'
@@ -305,6 +306,7 @@ export type DevicesUnmanagedListParameters = {
305
306
  | 'keyincode_lock'
306
307
  | 'omnitec_lock'
307
308
  | 'kisi_lock'
309
+ | 'aqara_lock'
308
310
  | 'keynest_key'
309
311
  | 'noiseaware_activity_zone'
310
312
  | 'minut_sensor'
@@ -399,6 +401,7 @@ export type DevicesUnmanagedListParameters = {
399
401
  | 'tedee'
400
402
  | 'keyincode'
401
403
  | 'akiles'
404
+ | 'aqara'
402
405
  | 'ecobee'
403
406
  | 'honeywell_resideo'
404
407
  | 'keynest'
@@ -320,6 +320,7 @@ export type LocksListParameters = {
320
320
  | 'keyincode_lock'
321
321
  | 'omnitec_lock'
322
322
  | 'kisi_lock'
323
+ | 'aqara_lock'
323
324
  | undefined
324
325
  device_types?:
325
326
  | Array<
@@ -352,6 +353,7 @@ export type LocksListParameters = {
352
353
  | 'keyincode_lock'
353
354
  | 'omnitec_lock'
354
355
  | 'kisi_lock'
356
+ | 'aqara_lock'
355
357
  >
356
358
  | undefined
357
359
  exclude_if?:
@@ -430,6 +432,7 @@ export type LocksListParameters = {
430
432
  | 'tedee'
431
433
  | 'keyincode'
432
434
  | 'akiles'
435
+ | 'aqara'
433
436
  | 'korelock'
434
437
  | 'smartthings'
435
438
  | 'ultraloq'
@@ -1,3 +1,3 @@
1
- const seamapiJavascriptHttpVersion = '1.122.0'
1
+ const seamapiJavascriptHttpVersion = '1.124.0'
2
2
 
3
3
  export default seamapiJavascriptHttpVersion