@seamapi/types 1.551.0 → 1.552.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 +168 -1
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1355 -125
  4. package/dist/index.cjs +168 -1
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
  7. package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
  8. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
  9. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
  10. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
  11. package/lib/seam/connect/models/batch.d.ts +1176 -131
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +95 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +62 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device-type.d.ts +8 -1
  16. package/lib/seam/connect/models/devices/device-type.js +8 -0
  17. package/lib/seam/connect/models/devices/device-type.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.d.ts +136 -3
  19. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +98 -3
  20. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  21. package/lib/seam/connect/openapi.d.ts +90 -0
  22. package/lib/seam/connect/openapi.js +140 -0
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +671 -25
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/devices/device-metadata.ts +62 -0
  27. package/src/lib/seam/connect/models/devices/device-type.ts +18 -0
  28. package/src/lib/seam/connect/openapi.ts +152 -0
  29. package/src/lib/seam/connect/route-types.ts +671 -0
@@ -10169,7 +10169,7 @@ export type Routes = {
10169
10169
  /** ID of the device. */
10170
10170
  device_id: string;
10171
10171
  /** Type of the device. */
10172
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
10172
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
10173
10173
  /** Optional nickname to describe the device, settable through Seam. */
10174
10174
  nickname?: string | undefined;
10175
10175
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -10714,8 +10714,46 @@ export type Routes = {
10714
10714
  } | undefined;
10715
10715
  /** Metadata for a KeyNest device. */
10716
10716
  keynest_metadata?: {
10717
+ /** Key ID for a KeyNest device. */
10718
+ key_id?: string | undefined;
10717
10719
  /** Device name for a KeyNest device. */
10718
10720
  device_name?: string | undefined;
10721
+ /** Property ID for a KeyNest device. */
10722
+ property_id?: (string | null) | undefined;
10723
+ /** Property postcode for a KeyNest device. */
10724
+ property_postcode?: (string | null) | undefined;
10725
+ /** Key notes for a KeyNest device. */
10726
+ key_notes?: (string | null) | undefined;
10727
+ /** Subscription plan for a KeyNest device. */
10728
+ subscription_plan?: string | undefined;
10729
+ /** Status type for a KeyNest device. */
10730
+ status_type?: string | undefined;
10731
+ /** Current or last store ID for a KeyNest device. */
10732
+ current_or_last_store_id?: number | undefined;
10733
+ /** Last movement timestamp for a KeyNest device. */
10734
+ last_movement?: string | undefined;
10735
+ /** Address for a KeyNest device. */
10736
+ address?: (string | null) | undefined;
10737
+ /** Current status for a KeyNest device. */
10738
+ current_status?: (string | null) | undefined;
10739
+ /** Current user name for a KeyNest device. */
10740
+ current_user_name?: (string | null) | undefined;
10741
+ /** Current user email for a KeyNest device. */
10742
+ current_user_email?: (string | null) | undefined;
10743
+ /** Current user phone number for a KeyNest device. */
10744
+ current_user_phone_number?: (string | null) | undefined;
10745
+ /** Current user company for a KeyNest device. */
10746
+ current_user_company?: (string | null) | undefined;
10747
+ /** Handover method for a KeyNest device. */
10748
+ handover_method?: (string | null) | undefined;
10749
+ /** KeyNest app user for a KeyNest device. */
10750
+ keynest_app_user?: (string | null) | undefined;
10751
+ /** Default office ID for a KeyNest device. */
10752
+ default_office_id?: number | undefined;
10753
+ /** Fob ID for a KeyNest device. */
10754
+ fob_id?: number | undefined;
10755
+ /** Whether the KeyNest device has a photo. */
10756
+ has_photo?: boolean | undefined;
10719
10757
  } | undefined;
10720
10758
  }) & ({
10721
10759
  /** */
@@ -13303,7 +13341,7 @@ export type Routes = {
13303
13341
  /** ID of the device. */
13304
13342
  device_id: string;
13305
13343
  /** Type of the device. */
13306
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
13344
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
13307
13345
  /** Optional nickname to describe the device, settable through Seam. */
13308
13346
  nickname?: string | undefined;
13309
13347
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -13848,8 +13886,46 @@ export type Routes = {
13848
13886
  } | undefined;
13849
13887
  /** Metadata for a KeyNest device. */
13850
13888
  keynest_metadata?: {
13889
+ /** Key ID for a KeyNest device. */
13890
+ key_id?: string | undefined;
13851
13891
  /** Device name for a KeyNest device. */
13852
13892
  device_name?: string | undefined;
13893
+ /** Property ID for a KeyNest device. */
13894
+ property_id?: (string | null) | undefined;
13895
+ /** Property postcode for a KeyNest device. */
13896
+ property_postcode?: (string | null) | undefined;
13897
+ /** Key notes for a KeyNest device. */
13898
+ key_notes?: (string | null) | undefined;
13899
+ /** Subscription plan for a KeyNest device. */
13900
+ subscription_plan?: string | undefined;
13901
+ /** Status type for a KeyNest device. */
13902
+ status_type?: string | undefined;
13903
+ /** Current or last store ID for a KeyNest device. */
13904
+ current_or_last_store_id?: number | undefined;
13905
+ /** Last movement timestamp for a KeyNest device. */
13906
+ last_movement?: string | undefined;
13907
+ /** Address for a KeyNest device. */
13908
+ address?: (string | null) | undefined;
13909
+ /** Current status for a KeyNest device. */
13910
+ current_status?: (string | null) | undefined;
13911
+ /** Current user name for a KeyNest device. */
13912
+ current_user_name?: (string | null) | undefined;
13913
+ /** Current user email for a KeyNest device. */
13914
+ current_user_email?: (string | null) | undefined;
13915
+ /** Current user phone number for a KeyNest device. */
13916
+ current_user_phone_number?: (string | null) | undefined;
13917
+ /** Current user company for a KeyNest device. */
13918
+ current_user_company?: (string | null) | undefined;
13919
+ /** Handover method for a KeyNest device. */
13920
+ handover_method?: (string | null) | undefined;
13921
+ /** KeyNest app user for a KeyNest device. */
13922
+ keynest_app_user?: (string | null) | undefined;
13923
+ /** Default office ID for a KeyNest device. */
13924
+ default_office_id?: number | undefined;
13925
+ /** Fob ID for a KeyNest device. */
13926
+ fob_id?: number | undefined;
13927
+ /** Whether the KeyNest device has a photo. */
13928
+ has_photo?: boolean | undefined;
13853
13929
  } | undefined;
13854
13930
  }) & ({
13855
13931
  /** */
@@ -16750,7 +16826,7 @@ export type Routes = {
16750
16826
  /** ID of the device. */
16751
16827
  device_id: string;
16752
16828
  /** Type of the device. */
16753
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
16829
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
16754
16830
  /** Unique identifier for the account associated with the device. */
16755
16831
  connected_account_id: string;
16756
16832
  /** Location information for the device. */
@@ -31724,7 +31800,7 @@ export type Routes = {
31724
31800
  /** ID of the device. */
31725
31801
  device_id: string;
31726
31802
  /** Type of the device. */
31727
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
31803
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
31728
31804
  /** Optional nickname to describe the device, settable through Seam. */
31729
31805
  nickname?: string | undefined;
31730
31806
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -32269,8 +32345,46 @@ export type Routes = {
32269
32345
  } | undefined;
32270
32346
  /** Metadata for a KeyNest device. */
32271
32347
  keynest_metadata?: {
32348
+ /** Key ID for a KeyNest device. */
32349
+ key_id?: string | undefined;
32272
32350
  /** Device name for a KeyNest device. */
32273
32351
  device_name?: string | undefined;
32352
+ /** Property ID for a KeyNest device. */
32353
+ property_id?: (string | null) | undefined;
32354
+ /** Property postcode for a KeyNest device. */
32355
+ property_postcode?: (string | null) | undefined;
32356
+ /** Key notes for a KeyNest device. */
32357
+ key_notes?: (string | null) | undefined;
32358
+ /** Subscription plan for a KeyNest device. */
32359
+ subscription_plan?: string | undefined;
32360
+ /** Status type for a KeyNest device. */
32361
+ status_type?: string | undefined;
32362
+ /** Current or last store ID for a KeyNest device. */
32363
+ current_or_last_store_id?: number | undefined;
32364
+ /** Last movement timestamp for a KeyNest device. */
32365
+ last_movement?: string | undefined;
32366
+ /** Address for a KeyNest device. */
32367
+ address?: (string | null) | undefined;
32368
+ /** Current status for a KeyNest device. */
32369
+ current_status?: (string | null) | undefined;
32370
+ /** Current user name for a KeyNest device. */
32371
+ current_user_name?: (string | null) | undefined;
32372
+ /** Current user email for a KeyNest device. */
32373
+ current_user_email?: (string | null) | undefined;
32374
+ /** Current user phone number for a KeyNest device. */
32375
+ current_user_phone_number?: (string | null) | undefined;
32376
+ /** Current user company for a KeyNest device. */
32377
+ current_user_company?: (string | null) | undefined;
32378
+ /** Handover method for a KeyNest device. */
32379
+ handover_method?: (string | null) | undefined;
32380
+ /** KeyNest app user for a KeyNest device. */
32381
+ keynest_app_user?: (string | null) | undefined;
32382
+ /** Default office ID for a KeyNest device. */
32383
+ default_office_id?: number | undefined;
32384
+ /** Fob ID for a KeyNest device. */
32385
+ fob_id?: number | undefined;
32386
+ /** Whether the KeyNest device has a photo. */
32387
+ has_photo?: boolean | undefined;
32274
32388
  } | undefined;
32275
32389
  }) & ({
32276
32390
  /** */
@@ -32909,9 +33023,9 @@ export type Routes = {
32909
33023
  /** ID of the Connect Webview for which you want to list devices. */
32910
33024
  connect_webview_id?: string | undefined;
32911
33025
  /** Device type for which you want to list devices. */
32912
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
33026
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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')) | undefined;
32913
33027
  /** Array of device types for which you want to list devices. */
32914
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
33028
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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'))[] | undefined;
32915
33029
  /** Manufacturer for which you want to list devices. */
32916
33030
  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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
32917
33031
  /** Array of device IDs for which you want to list devices. */
@@ -32946,7 +33060,7 @@ export type Routes = {
32946
33060
  /** ID of the device. */
32947
33061
  device_id: string;
32948
33062
  /** Type of the device. */
32949
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
33063
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
32950
33064
  /** Optional nickname to describe the device, settable through Seam. */
32951
33065
  nickname?: string | undefined;
32952
33066
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -33491,8 +33605,46 @@ export type Routes = {
33491
33605
  } | undefined;
33492
33606
  /** Metadata for a KeyNest device. */
33493
33607
  keynest_metadata?: {
33608
+ /** Key ID for a KeyNest device. */
33609
+ key_id?: string | undefined;
33494
33610
  /** Device name for a KeyNest device. */
33495
33611
  device_name?: string | undefined;
33612
+ /** Property ID for a KeyNest device. */
33613
+ property_id?: (string | null) | undefined;
33614
+ /** Property postcode for a KeyNest device. */
33615
+ property_postcode?: (string | null) | undefined;
33616
+ /** Key notes for a KeyNest device. */
33617
+ key_notes?: (string | null) | undefined;
33618
+ /** Subscription plan for a KeyNest device. */
33619
+ subscription_plan?: string | undefined;
33620
+ /** Status type for a KeyNest device. */
33621
+ status_type?: string | undefined;
33622
+ /** Current or last store ID for a KeyNest device. */
33623
+ current_or_last_store_id?: number | undefined;
33624
+ /** Last movement timestamp for a KeyNest device. */
33625
+ last_movement?: string | undefined;
33626
+ /** Address for a KeyNest device. */
33627
+ address?: (string | null) | undefined;
33628
+ /** Current status for a KeyNest device. */
33629
+ current_status?: (string | null) | undefined;
33630
+ /** Current user name for a KeyNest device. */
33631
+ current_user_name?: (string | null) | undefined;
33632
+ /** Current user email for a KeyNest device. */
33633
+ current_user_email?: (string | null) | undefined;
33634
+ /** Current user phone number for a KeyNest device. */
33635
+ current_user_phone_number?: (string | null) | undefined;
33636
+ /** Current user company for a KeyNest device. */
33637
+ current_user_company?: (string | null) | undefined;
33638
+ /** Handover method for a KeyNest device. */
33639
+ handover_method?: (string | null) | undefined;
33640
+ /** KeyNest app user for a KeyNest device. */
33641
+ keynest_app_user?: (string | null) | undefined;
33642
+ /** Default office ID for a KeyNest device. */
33643
+ default_office_id?: number | undefined;
33644
+ /** Fob ID for a KeyNest device. */
33645
+ fob_id?: number | undefined;
33646
+ /** Whether the KeyNest device has a photo. */
33647
+ has_photo?: boolean | undefined;
33496
33648
  } | undefined;
33497
33649
  }) & ({
33498
33650
  /** */
@@ -34250,7 +34402,7 @@ export type Routes = {
34250
34402
  /** ID of the device. */
34251
34403
  device_id: string;
34252
34404
  /** Type of the device. */
34253
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
34405
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
34254
34406
  /** Unique identifier for the account associated with the device. */
34255
34407
  connected_account_id: string;
34256
34408
  /** Location information for the device. */
@@ -34654,9 +34806,9 @@ export type Routes = {
34654
34806
  /** ID of the Connect Webview for which you want to list devices. */
34655
34807
  connect_webview_id?: string | undefined;
34656
34808
  /** Device type for which you want to list devices. */
34657
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone')) | undefined;
34809
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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')) | undefined;
34658
34810
  /** Array of device types for which you want to list devices. */
34659
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone'))[] | undefined;
34811
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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'))[] | undefined;
34660
34812
  /** Manufacturer for which you want to list devices. */
34661
34813
  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' | 'hubitat' | 'controlbyweb' | 'dormakaba_oracode' | 'tedee' | 'akiles' | 'ecobee' | 'honeywell_resideo' | 'kwikset2' | 'minut' | 'nest' | 'noiseaware' | 'tado' | 'sensi' | 'smartthings' | 'keynest') | undefined;
34662
34814
  /** Array of device IDs for which you want to list devices. */
@@ -34691,7 +34843,7 @@ export type Routes = {
34691
34843
  /** ID of the device. */
34692
34844
  device_id: string;
34693
34845
  /** Type of the device. */
34694
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
34846
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
34695
34847
  /** Unique identifier for the account associated with the device. */
34696
34848
  connected_account_id: string;
34697
34849
  /** Location information for the device. */
@@ -39025,7 +39177,7 @@ export type Routes = {
39025
39177
  /** ID of the device. */
39026
39178
  device_id: string;
39027
39179
  /** Type of the device. */
39028
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
39180
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
39029
39181
  /** Optional nickname to describe the device, settable through Seam. */
39030
39182
  nickname?: string | undefined;
39031
39183
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -39570,8 +39722,46 @@ export type Routes = {
39570
39722
  } | undefined;
39571
39723
  /** Metadata for a KeyNest device. */
39572
39724
  keynest_metadata?: {
39725
+ /** Key ID for a KeyNest device. */
39726
+ key_id?: string | undefined;
39573
39727
  /** Device name for a KeyNest device. */
39574
39728
  device_name?: string | undefined;
39729
+ /** Property ID for a KeyNest device. */
39730
+ property_id?: (string | null) | undefined;
39731
+ /** Property postcode for a KeyNest device. */
39732
+ property_postcode?: (string | null) | undefined;
39733
+ /** Key notes for a KeyNest device. */
39734
+ key_notes?: (string | null) | undefined;
39735
+ /** Subscription plan for a KeyNest device. */
39736
+ subscription_plan?: string | undefined;
39737
+ /** Status type for a KeyNest device. */
39738
+ status_type?: string | undefined;
39739
+ /** Current or last store ID for a KeyNest device. */
39740
+ current_or_last_store_id?: number | undefined;
39741
+ /** Last movement timestamp for a KeyNest device. */
39742
+ last_movement?: string | undefined;
39743
+ /** Address for a KeyNest device. */
39744
+ address?: (string | null) | undefined;
39745
+ /** Current status for a KeyNest device. */
39746
+ current_status?: (string | null) | undefined;
39747
+ /** Current user name for a KeyNest device. */
39748
+ current_user_name?: (string | null) | undefined;
39749
+ /** Current user email for a KeyNest device. */
39750
+ current_user_email?: (string | null) | undefined;
39751
+ /** Current user phone number for a KeyNest device. */
39752
+ current_user_phone_number?: (string | null) | undefined;
39753
+ /** Current user company for a KeyNest device. */
39754
+ current_user_company?: (string | null) | undefined;
39755
+ /** Handover method for a KeyNest device. */
39756
+ handover_method?: (string | null) | undefined;
39757
+ /** KeyNest app user for a KeyNest device. */
39758
+ keynest_app_user?: (string | null) | undefined;
39759
+ /** Default office ID for a KeyNest device. */
39760
+ default_office_id?: number | undefined;
39761
+ /** Fob ID for a KeyNest device. */
39762
+ fob_id?: number | undefined;
39763
+ /** Whether the KeyNest device has a photo. */
39764
+ has_photo?: boolean | undefined;
39575
39765
  } | undefined;
39576
39766
  }) & ({
39577
39767
  /** */
@@ -40198,7 +40388,7 @@ export type Routes = {
40198
40388
  /** ID of the device. */
40199
40389
  device_id: string;
40200
40390
  /** Type of the device. */
40201
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
40391
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
40202
40392
  /** Optional nickname to describe the device, settable through Seam. */
40203
40393
  nickname?: string | undefined;
40204
40394
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -40743,8 +40933,46 @@ export type Routes = {
40743
40933
  } | undefined;
40744
40934
  /** Metadata for a KeyNest device. */
40745
40935
  keynest_metadata?: {
40936
+ /** Key ID for a KeyNest device. */
40937
+ key_id?: string | undefined;
40746
40938
  /** Device name for a KeyNest device. */
40747
40939
  device_name?: string | undefined;
40940
+ /** Property ID for a KeyNest device. */
40941
+ property_id?: (string | null) | undefined;
40942
+ /** Property postcode for a KeyNest device. */
40943
+ property_postcode?: (string | null) | undefined;
40944
+ /** Key notes for a KeyNest device. */
40945
+ key_notes?: (string | null) | undefined;
40946
+ /** Subscription plan for a KeyNest device. */
40947
+ subscription_plan?: string | undefined;
40948
+ /** Status type for a KeyNest device. */
40949
+ status_type?: string | undefined;
40950
+ /** Current or last store ID for a KeyNest device. */
40951
+ current_or_last_store_id?: number | undefined;
40952
+ /** Last movement timestamp for a KeyNest device. */
40953
+ last_movement?: string | undefined;
40954
+ /** Address for a KeyNest device. */
40955
+ address?: (string | null) | undefined;
40956
+ /** Current status for a KeyNest device. */
40957
+ current_status?: (string | null) | undefined;
40958
+ /** Current user name for a KeyNest device. */
40959
+ current_user_name?: (string | null) | undefined;
40960
+ /** Current user email for a KeyNest device. */
40961
+ current_user_email?: (string | null) | undefined;
40962
+ /** Current user phone number for a KeyNest device. */
40963
+ current_user_phone_number?: (string | null) | undefined;
40964
+ /** Current user company for a KeyNest device. */
40965
+ current_user_company?: (string | null) | undefined;
40966
+ /** Handover method for a KeyNest device. */
40967
+ handover_method?: (string | null) | undefined;
40968
+ /** KeyNest app user for a KeyNest device. */
40969
+ keynest_app_user?: (string | null) | undefined;
40970
+ /** Default office ID for a KeyNest device. */
40971
+ default_office_id?: number | undefined;
40972
+ /** Fob ID for a KeyNest device. */
40973
+ fob_id?: number | undefined;
40974
+ /** Whether the KeyNest device has a photo. */
40975
+ has_photo?: boolean | undefined;
40748
40976
  } | undefined;
40749
40977
  }) & ({
40750
40978
  /** */
@@ -41420,7 +41648,7 @@ export type Routes = {
41420
41648
  /** ID of the device. */
41421
41649
  device_id: string;
41422
41650
  /** Type of the device. */
41423
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
41651
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
41424
41652
  /** Optional nickname to describe the device, settable through Seam. */
41425
41653
  nickname?: string | undefined;
41426
41654
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -41965,8 +42193,46 @@ export type Routes = {
41965
42193
  } | undefined;
41966
42194
  /** Metadata for a KeyNest device. */
41967
42195
  keynest_metadata?: {
42196
+ /** Key ID for a KeyNest device. */
42197
+ key_id?: string | undefined;
41968
42198
  /** Device name for a KeyNest device. */
41969
42199
  device_name?: string | undefined;
42200
+ /** Property ID for a KeyNest device. */
42201
+ property_id?: (string | null) | undefined;
42202
+ /** Property postcode for a KeyNest device. */
42203
+ property_postcode?: (string | null) | undefined;
42204
+ /** Key notes for a KeyNest device. */
42205
+ key_notes?: (string | null) | undefined;
42206
+ /** Subscription plan for a KeyNest device. */
42207
+ subscription_plan?: string | undefined;
42208
+ /** Status type for a KeyNest device. */
42209
+ status_type?: string | undefined;
42210
+ /** Current or last store ID for a KeyNest device. */
42211
+ current_or_last_store_id?: number | undefined;
42212
+ /** Last movement timestamp for a KeyNest device. */
42213
+ last_movement?: string | undefined;
42214
+ /** Address for a KeyNest device. */
42215
+ address?: (string | null) | undefined;
42216
+ /** Current status for a KeyNest device. */
42217
+ current_status?: (string | null) | undefined;
42218
+ /** Current user name for a KeyNest device. */
42219
+ current_user_name?: (string | null) | undefined;
42220
+ /** Current user email for a KeyNest device. */
42221
+ current_user_email?: (string | null) | undefined;
42222
+ /** Current user phone number for a KeyNest device. */
42223
+ current_user_phone_number?: (string | null) | undefined;
42224
+ /** Current user company for a KeyNest device. */
42225
+ current_user_company?: (string | null) | undefined;
42226
+ /** Handover method for a KeyNest device. */
42227
+ handover_method?: (string | null) | undefined;
42228
+ /** KeyNest app user for a KeyNest device. */
42229
+ keynest_app_user?: (string | null) | undefined;
42230
+ /** Default office ID for a KeyNest device. */
42231
+ default_office_id?: number | undefined;
42232
+ /** Fob ID for a KeyNest device. */
42233
+ fob_id?: number | undefined;
42234
+ /** Whether the KeyNest device has a photo. */
42235
+ has_photo?: boolean | undefined;
41970
42236
  } | undefined;
41971
42237
  }) & ({
41972
42238
  /** */
@@ -42592,7 +42858,7 @@ export type Routes = {
42592
42858
  /** ID of the device. */
42593
42859
  device_id: string;
42594
42860
  /** Type of the device. */
42595
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
42861
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
42596
42862
  /** Optional nickname to describe the device, settable through Seam. */
42597
42863
  nickname?: string | undefined;
42598
42864
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -43137,8 +43403,46 @@ export type Routes = {
43137
43403
  } | undefined;
43138
43404
  /** Metadata for a KeyNest device. */
43139
43405
  keynest_metadata?: {
43406
+ /** Key ID for a KeyNest device. */
43407
+ key_id?: string | undefined;
43140
43408
  /** Device name for a KeyNest device. */
43141
43409
  device_name?: string | undefined;
43410
+ /** Property ID for a KeyNest device. */
43411
+ property_id?: (string | null) | undefined;
43412
+ /** Property postcode for a KeyNest device. */
43413
+ property_postcode?: (string | null) | undefined;
43414
+ /** Key notes for a KeyNest device. */
43415
+ key_notes?: (string | null) | undefined;
43416
+ /** Subscription plan for a KeyNest device. */
43417
+ subscription_plan?: string | undefined;
43418
+ /** Status type for a KeyNest device. */
43419
+ status_type?: string | undefined;
43420
+ /** Current or last store ID for a KeyNest device. */
43421
+ current_or_last_store_id?: number | undefined;
43422
+ /** Last movement timestamp for a KeyNest device. */
43423
+ last_movement?: string | undefined;
43424
+ /** Address for a KeyNest device. */
43425
+ address?: (string | null) | undefined;
43426
+ /** Current status for a KeyNest device. */
43427
+ current_status?: (string | null) | undefined;
43428
+ /** Current user name for a KeyNest device. */
43429
+ current_user_name?: (string | null) | undefined;
43430
+ /** Current user email for a KeyNest device. */
43431
+ current_user_email?: (string | null) | undefined;
43432
+ /** Current user phone number for a KeyNest device. */
43433
+ current_user_phone_number?: (string | null) | undefined;
43434
+ /** Current user company for a KeyNest device. */
43435
+ current_user_company?: (string | null) | undefined;
43436
+ /** Handover method for a KeyNest device. */
43437
+ handover_method?: (string | null) | undefined;
43438
+ /** KeyNest app user for a KeyNest device. */
43439
+ keynest_app_user?: (string | null) | undefined;
43440
+ /** Default office ID for a KeyNest device. */
43441
+ default_office_id?: number | undefined;
43442
+ /** Fob ID for a KeyNest device. */
43443
+ fob_id?: number | undefined;
43444
+ /** Whether the KeyNest device has a photo. */
43445
+ has_photo?: boolean | undefined;
43142
43446
  } | undefined;
43143
43447
  }) & ({
43144
43448
  /** */
@@ -48852,7 +49156,7 @@ export type Routes = {
48852
49156
  /** ID of the device. */
48853
49157
  device_id: string;
48854
49158
  /** Type of the device. */
48855
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
49159
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
48856
49160
  /** Optional nickname to describe the device, settable through Seam. */
48857
49161
  nickname?: string | undefined;
48858
49162
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -49397,8 +49701,46 @@ export type Routes = {
49397
49701
  } | undefined;
49398
49702
  /** Metadata for a KeyNest device. */
49399
49703
  keynest_metadata?: {
49704
+ /** Key ID for a KeyNest device. */
49705
+ key_id?: string | undefined;
49400
49706
  /** Device name for a KeyNest device. */
49401
49707
  device_name?: string | undefined;
49708
+ /** Property ID for a KeyNest device. */
49709
+ property_id?: (string | null) | undefined;
49710
+ /** Property postcode for a KeyNest device. */
49711
+ property_postcode?: (string | null) | undefined;
49712
+ /** Key notes for a KeyNest device. */
49713
+ key_notes?: (string | null) | undefined;
49714
+ /** Subscription plan for a KeyNest device. */
49715
+ subscription_plan?: string | undefined;
49716
+ /** Status type for a KeyNest device. */
49717
+ status_type?: string | undefined;
49718
+ /** Current or last store ID for a KeyNest device. */
49719
+ current_or_last_store_id?: number | undefined;
49720
+ /** Last movement timestamp for a KeyNest device. */
49721
+ last_movement?: string | undefined;
49722
+ /** Address for a KeyNest device. */
49723
+ address?: (string | null) | undefined;
49724
+ /** Current status for a KeyNest device. */
49725
+ current_status?: (string | null) | undefined;
49726
+ /** Current user name for a KeyNest device. */
49727
+ current_user_name?: (string | null) | undefined;
49728
+ /** Current user email for a KeyNest device. */
49729
+ current_user_email?: (string | null) | undefined;
49730
+ /** Current user phone number for a KeyNest device. */
49731
+ current_user_phone_number?: (string | null) | undefined;
49732
+ /** Current user company for a KeyNest device. */
49733
+ current_user_company?: (string | null) | undefined;
49734
+ /** Handover method for a KeyNest device. */
49735
+ handover_method?: (string | null) | undefined;
49736
+ /** KeyNest app user for a KeyNest device. */
49737
+ keynest_app_user?: (string | null) | undefined;
49738
+ /** Default office ID for a KeyNest device. */
49739
+ default_office_id?: number | undefined;
49740
+ /** Fob ID for a KeyNest device. */
49741
+ fob_id?: number | undefined;
49742
+ /** Whether the KeyNest device has a photo. */
49743
+ has_photo?: boolean | undefined;
49402
49744
  } | undefined;
49403
49745
  }) & ({
49404
49746
  /** */
@@ -50024,7 +50366,7 @@ export type Routes = {
50024
50366
  /** ID of the device. */
50025
50367
  device_id: string;
50026
50368
  /** Type of the device. */
50027
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
50369
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
50028
50370
  /** Optional nickname to describe the device, settable through Seam. */
50029
50371
  nickname?: string | undefined;
50030
50372
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -50569,8 +50911,46 @@ export type Routes = {
50569
50911
  } | undefined;
50570
50912
  /** Metadata for a KeyNest device. */
50571
50913
  keynest_metadata?: {
50914
+ /** Key ID for a KeyNest device. */
50915
+ key_id?: string | undefined;
50572
50916
  /** Device name for a KeyNest device. */
50573
50917
  device_name?: string | undefined;
50918
+ /** Property ID for a KeyNest device. */
50919
+ property_id?: (string | null) | undefined;
50920
+ /** Property postcode for a KeyNest device. */
50921
+ property_postcode?: (string | null) | undefined;
50922
+ /** Key notes for a KeyNest device. */
50923
+ key_notes?: (string | null) | undefined;
50924
+ /** Subscription plan for a KeyNest device. */
50925
+ subscription_plan?: string | undefined;
50926
+ /** Status type for a KeyNest device. */
50927
+ status_type?: string | undefined;
50928
+ /** Current or last store ID for a KeyNest device. */
50929
+ current_or_last_store_id?: number | undefined;
50930
+ /** Last movement timestamp for a KeyNest device. */
50931
+ last_movement?: string | undefined;
50932
+ /** Address for a KeyNest device. */
50933
+ address?: (string | null) | undefined;
50934
+ /** Current status for a KeyNest device. */
50935
+ current_status?: (string | null) | undefined;
50936
+ /** Current user name for a KeyNest device. */
50937
+ current_user_name?: (string | null) | undefined;
50938
+ /** Current user email for a KeyNest device. */
50939
+ current_user_email?: (string | null) | undefined;
50940
+ /** Current user phone number for a KeyNest device. */
50941
+ current_user_phone_number?: (string | null) | undefined;
50942
+ /** Current user company for a KeyNest device. */
50943
+ current_user_company?: (string | null) | undefined;
50944
+ /** Handover method for a KeyNest device. */
50945
+ handover_method?: (string | null) | undefined;
50946
+ /** KeyNest app user for a KeyNest device. */
50947
+ keynest_app_user?: (string | null) | undefined;
50948
+ /** Default office ID for a KeyNest device. */
50949
+ default_office_id?: number | undefined;
50950
+ /** Fob ID for a KeyNest device. */
50951
+ fob_id?: number | undefined;
50952
+ /** Whether the KeyNest device has a photo. */
50953
+ has_photo?: boolean | undefined;
50574
50954
  } | undefined;
50575
50955
  }) & ({
50576
50956
  /** */
@@ -58590,7 +58970,7 @@ export type Routes = {
58590
58970
  /** ID of the device. */
58591
58971
  device_id: string;
58592
58972
  /** Type of the device. */
58593
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
58973
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
58594
58974
  /** Optional nickname to describe the device, settable through Seam. */
58595
58975
  nickname?: string | undefined;
58596
58976
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -59135,8 +59515,46 @@ export type Routes = {
59135
59515
  } | undefined;
59136
59516
  /** Metadata for a KeyNest device. */
59137
59517
  keynest_metadata?: {
59518
+ /** Key ID for a KeyNest device. */
59519
+ key_id?: string | undefined;
59138
59520
  /** Device name for a KeyNest device. */
59139
59521
  device_name?: string | undefined;
59522
+ /** Property ID for a KeyNest device. */
59523
+ property_id?: (string | null) | undefined;
59524
+ /** Property postcode for a KeyNest device. */
59525
+ property_postcode?: (string | null) | undefined;
59526
+ /** Key notes for a KeyNest device. */
59527
+ key_notes?: (string | null) | undefined;
59528
+ /** Subscription plan for a KeyNest device. */
59529
+ subscription_plan?: string | undefined;
59530
+ /** Status type for a KeyNest device. */
59531
+ status_type?: string | undefined;
59532
+ /** Current or last store ID for a KeyNest device. */
59533
+ current_or_last_store_id?: number | undefined;
59534
+ /** Last movement timestamp for a KeyNest device. */
59535
+ last_movement?: string | undefined;
59536
+ /** Address for a KeyNest device. */
59537
+ address?: (string | null) | undefined;
59538
+ /** Current status for a KeyNest device. */
59539
+ current_status?: (string | null) | undefined;
59540
+ /** Current user name for a KeyNest device. */
59541
+ current_user_name?: (string | null) | undefined;
59542
+ /** Current user email for a KeyNest device. */
59543
+ current_user_email?: (string | null) | undefined;
59544
+ /** Current user phone number for a KeyNest device. */
59545
+ current_user_phone_number?: (string | null) | undefined;
59546
+ /** Current user company for a KeyNest device. */
59547
+ current_user_company?: (string | null) | undefined;
59548
+ /** Handover method for a KeyNest device. */
59549
+ handover_method?: (string | null) | undefined;
59550
+ /** KeyNest app user for a KeyNest device. */
59551
+ keynest_app_user?: (string | null) | undefined;
59552
+ /** Default office ID for a KeyNest device. */
59553
+ default_office_id?: number | undefined;
59554
+ /** Fob ID for a KeyNest device. */
59555
+ fob_id?: number | undefined;
59556
+ /** Whether the KeyNest device has a photo. */
59557
+ has_photo?: boolean | undefined;
59140
59558
  } | undefined;
59141
59559
  }) & ({
59142
59560
  /** */
@@ -64156,7 +64574,7 @@ export type Routes = {
64156
64574
  /** ID of the device. */
64157
64575
  device_id: string;
64158
64576
  /** Type of the device. */
64159
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
64577
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
64160
64578
  /** Optional nickname to describe the device, settable through Seam. */
64161
64579
  nickname?: string | undefined;
64162
64580
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -64701,8 +65119,46 @@ export type Routes = {
64701
65119
  } | undefined;
64702
65120
  /** Metadata for a KeyNest device. */
64703
65121
  keynest_metadata?: {
65122
+ /** Key ID for a KeyNest device. */
65123
+ key_id?: string | undefined;
64704
65124
  /** Device name for a KeyNest device. */
64705
65125
  device_name?: string | undefined;
65126
+ /** Property ID for a KeyNest device. */
65127
+ property_id?: (string | null) | undefined;
65128
+ /** Property postcode for a KeyNest device. */
65129
+ property_postcode?: (string | null) | undefined;
65130
+ /** Key notes for a KeyNest device. */
65131
+ key_notes?: (string | null) | undefined;
65132
+ /** Subscription plan for a KeyNest device. */
65133
+ subscription_plan?: string | undefined;
65134
+ /** Status type for a KeyNest device. */
65135
+ status_type?: string | undefined;
65136
+ /** Current or last store ID for a KeyNest device. */
65137
+ current_or_last_store_id?: number | undefined;
65138
+ /** Last movement timestamp for a KeyNest device. */
65139
+ last_movement?: string | undefined;
65140
+ /** Address for a KeyNest device. */
65141
+ address?: (string | null) | undefined;
65142
+ /** Current status for a KeyNest device. */
65143
+ current_status?: (string | null) | undefined;
65144
+ /** Current user name for a KeyNest device. */
65145
+ current_user_name?: (string | null) | undefined;
65146
+ /** Current user email for a KeyNest device. */
65147
+ current_user_email?: (string | null) | undefined;
65148
+ /** Current user phone number for a KeyNest device. */
65149
+ current_user_phone_number?: (string | null) | undefined;
65150
+ /** Current user company for a KeyNest device. */
65151
+ current_user_company?: (string | null) | undefined;
65152
+ /** Handover method for a KeyNest device. */
65153
+ handover_method?: (string | null) | undefined;
65154
+ /** KeyNest app user for a KeyNest device. */
65155
+ keynest_app_user?: (string | null) | undefined;
65156
+ /** Default office ID for a KeyNest device. */
65157
+ default_office_id?: number | undefined;
65158
+ /** Fob ID for a KeyNest device. */
65159
+ fob_id?: number | undefined;
65160
+ /** Whether the KeyNest device has a photo. */
65161
+ has_photo?: boolean | undefined;
64706
65162
  } | undefined;
64707
65163
  }) & ({
64708
65164
  /** */
@@ -67910,7 +68366,7 @@ export type Routes = {
67910
68366
  /** ID of the device. */
67911
68367
  device_id: string;
67912
68368
  /** Type of the device. */
67913
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
68369
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
67914
68370
  /** Optional nickname to describe the device, settable through Seam. */
67915
68371
  nickname?: string | undefined;
67916
68372
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -68455,8 +68911,46 @@ export type Routes = {
68455
68911
  } | undefined;
68456
68912
  /** Metadata for a KeyNest device. */
68457
68913
  keynest_metadata?: {
68914
+ /** Key ID for a KeyNest device. */
68915
+ key_id?: string | undefined;
68458
68916
  /** Device name for a KeyNest device. */
68459
68917
  device_name?: string | undefined;
68918
+ /** Property ID for a KeyNest device. */
68919
+ property_id?: (string | null) | undefined;
68920
+ /** Property postcode for a KeyNest device. */
68921
+ property_postcode?: (string | null) | undefined;
68922
+ /** Key notes for a KeyNest device. */
68923
+ key_notes?: (string | null) | undefined;
68924
+ /** Subscription plan for a KeyNest device. */
68925
+ subscription_plan?: string | undefined;
68926
+ /** Status type for a KeyNest device. */
68927
+ status_type?: string | undefined;
68928
+ /** Current or last store ID for a KeyNest device. */
68929
+ current_or_last_store_id?: number | undefined;
68930
+ /** Last movement timestamp for a KeyNest device. */
68931
+ last_movement?: string | undefined;
68932
+ /** Address for a KeyNest device. */
68933
+ address?: (string | null) | undefined;
68934
+ /** Current status for a KeyNest device. */
68935
+ current_status?: (string | null) | undefined;
68936
+ /** Current user name for a KeyNest device. */
68937
+ current_user_name?: (string | null) | undefined;
68938
+ /** Current user email for a KeyNest device. */
68939
+ current_user_email?: (string | null) | undefined;
68940
+ /** Current user phone number for a KeyNest device. */
68941
+ current_user_phone_number?: (string | null) | undefined;
68942
+ /** Current user company for a KeyNest device. */
68943
+ current_user_company?: (string | null) | undefined;
68944
+ /** Handover method for a KeyNest device. */
68945
+ handover_method?: (string | null) | undefined;
68946
+ /** KeyNest app user for a KeyNest device. */
68947
+ keynest_app_user?: (string | null) | undefined;
68948
+ /** Default office ID for a KeyNest device. */
68949
+ default_office_id?: number | undefined;
68950
+ /** Fob ID for a KeyNest device. */
68951
+ fob_id?: number | undefined;
68952
+ /** Whether the KeyNest device has a photo. */
68953
+ has_photo?: boolean | undefined;
68460
68954
  } | undefined;
68461
68955
  }) & ({
68462
68956
  /** */
@@ -69082,7 +69576,7 @@ export type Routes = {
69082
69576
  /** ID of the device. */
69083
69577
  device_id: string;
69084
69578
  /** Type of the device. */
69085
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
69579
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
69086
69580
  /** Optional nickname to describe the device, settable through Seam. */
69087
69581
  nickname?: string | undefined;
69088
69582
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -69627,8 +70121,46 @@ export type Routes = {
69627
70121
  } | undefined;
69628
70122
  /** Metadata for a KeyNest device. */
69629
70123
  keynest_metadata?: {
70124
+ /** Key ID for a KeyNest device. */
70125
+ key_id?: string | undefined;
69630
70126
  /** Device name for a KeyNest device. */
69631
70127
  device_name?: string | undefined;
70128
+ /** Property ID for a KeyNest device. */
70129
+ property_id?: (string | null) | undefined;
70130
+ /** Property postcode for a KeyNest device. */
70131
+ property_postcode?: (string | null) | undefined;
70132
+ /** Key notes for a KeyNest device. */
70133
+ key_notes?: (string | null) | undefined;
70134
+ /** Subscription plan for a KeyNest device. */
70135
+ subscription_plan?: string | undefined;
70136
+ /** Status type for a KeyNest device. */
70137
+ status_type?: string | undefined;
70138
+ /** Current or last store ID for a KeyNest device. */
70139
+ current_or_last_store_id?: number | undefined;
70140
+ /** Last movement timestamp for a KeyNest device. */
70141
+ last_movement?: string | undefined;
70142
+ /** Address for a KeyNest device. */
70143
+ address?: (string | null) | undefined;
70144
+ /** Current status for a KeyNest device. */
70145
+ current_status?: (string | null) | undefined;
70146
+ /** Current user name for a KeyNest device. */
70147
+ current_user_name?: (string | null) | undefined;
70148
+ /** Current user email for a KeyNest device. */
70149
+ current_user_email?: (string | null) | undefined;
70150
+ /** Current user phone number for a KeyNest device. */
70151
+ current_user_phone_number?: (string | null) | undefined;
70152
+ /** Current user company for a KeyNest device. */
70153
+ current_user_company?: (string | null) | undefined;
70154
+ /** Handover method for a KeyNest device. */
70155
+ handover_method?: (string | null) | undefined;
70156
+ /** KeyNest app user for a KeyNest device. */
70157
+ keynest_app_user?: (string | null) | undefined;
70158
+ /** Default office ID for a KeyNest device. */
70159
+ default_office_id?: number | undefined;
70160
+ /** Fob ID for a KeyNest device. */
70161
+ fob_id?: number | undefined;
70162
+ /** Whether the KeyNest device has a photo. */
70163
+ has_photo?: boolean | undefined;
69632
70164
  } | undefined;
69633
70165
  }) & ({
69634
70166
  /** */
@@ -76195,7 +76727,7 @@ export type Routes = {
76195
76727
  /** ID of the device. */
76196
76728
  device_id: string;
76197
76729
  /** Type of the device. */
76198
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
76730
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
76199
76731
  /** Optional nickname to describe the device, settable through Seam. */
76200
76732
  nickname?: string | undefined;
76201
76733
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -76740,8 +77272,46 @@ export type Routes = {
76740
77272
  } | undefined;
76741
77273
  /** Metadata for a KeyNest device. */
76742
77274
  keynest_metadata?: {
77275
+ /** Key ID for a KeyNest device. */
77276
+ key_id?: string | undefined;
76743
77277
  /** Device name for a KeyNest device. */
76744
77278
  device_name?: string | undefined;
77279
+ /** Property ID for a KeyNest device. */
77280
+ property_id?: (string | null) | undefined;
77281
+ /** Property postcode for a KeyNest device. */
77282
+ property_postcode?: (string | null) | undefined;
77283
+ /** Key notes for a KeyNest device. */
77284
+ key_notes?: (string | null) | undefined;
77285
+ /** Subscription plan for a KeyNest device. */
77286
+ subscription_plan?: string | undefined;
77287
+ /** Status type for a KeyNest device. */
77288
+ status_type?: string | undefined;
77289
+ /** Current or last store ID for a KeyNest device. */
77290
+ current_or_last_store_id?: number | undefined;
77291
+ /** Last movement timestamp for a KeyNest device. */
77292
+ last_movement?: string | undefined;
77293
+ /** Address for a KeyNest device. */
77294
+ address?: (string | null) | undefined;
77295
+ /** Current status for a KeyNest device. */
77296
+ current_status?: (string | null) | undefined;
77297
+ /** Current user name for a KeyNest device. */
77298
+ current_user_name?: (string | null) | undefined;
77299
+ /** Current user email for a KeyNest device. */
77300
+ current_user_email?: (string | null) | undefined;
77301
+ /** Current user phone number for a KeyNest device. */
77302
+ current_user_phone_number?: (string | null) | undefined;
77303
+ /** Current user company for a KeyNest device. */
77304
+ current_user_company?: (string | null) | undefined;
77305
+ /** Handover method for a KeyNest device. */
77306
+ handover_method?: (string | null) | undefined;
77307
+ /** KeyNest app user for a KeyNest device. */
77308
+ keynest_app_user?: (string | null) | undefined;
77309
+ /** Default office ID for a KeyNest device. */
77310
+ default_office_id?: number | undefined;
77311
+ /** Fob ID for a KeyNest device. */
77312
+ fob_id?: number | undefined;
77313
+ /** Whether the KeyNest device has a photo. */
77314
+ has_photo?: boolean | undefined;
76745
77315
  } | undefined;
76746
77316
  }) & ({
76747
77317
  /** */
@@ -77369,7 +77939,7 @@ export type Routes = {
77369
77939
  /** ID of the device. */
77370
77940
  device_id: string;
77371
77941
  /** Type of the device. */
77372
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
77942
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
77373
77943
  /** Optional nickname to describe the device, settable through Seam. */
77374
77944
  nickname?: string | undefined;
77375
77945
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -77914,8 +78484,46 @@ export type Routes = {
77914
78484
  } | undefined;
77915
78485
  /** Metadata for a KeyNest device. */
77916
78486
  keynest_metadata?: {
78487
+ /** Key ID for a KeyNest device. */
78488
+ key_id?: string | undefined;
77917
78489
  /** Device name for a KeyNest device. */
77918
78490
  device_name?: string | undefined;
78491
+ /** Property ID for a KeyNest device. */
78492
+ property_id?: (string | null) | undefined;
78493
+ /** Property postcode for a KeyNest device. */
78494
+ property_postcode?: (string | null) | undefined;
78495
+ /** Key notes for a KeyNest device. */
78496
+ key_notes?: (string | null) | undefined;
78497
+ /** Subscription plan for a KeyNest device. */
78498
+ subscription_plan?: string | undefined;
78499
+ /** Status type for a KeyNest device. */
78500
+ status_type?: string | undefined;
78501
+ /** Current or last store ID for a KeyNest device. */
78502
+ current_or_last_store_id?: number | undefined;
78503
+ /** Last movement timestamp for a KeyNest device. */
78504
+ last_movement?: string | undefined;
78505
+ /** Address for a KeyNest device. */
78506
+ address?: (string | null) | undefined;
78507
+ /** Current status for a KeyNest device. */
78508
+ current_status?: (string | null) | undefined;
78509
+ /** Current user name for a KeyNest device. */
78510
+ current_user_name?: (string | null) | undefined;
78511
+ /** Current user email for a KeyNest device. */
78512
+ current_user_email?: (string | null) | undefined;
78513
+ /** Current user phone number for a KeyNest device. */
78514
+ current_user_phone_number?: (string | null) | undefined;
78515
+ /** Current user company for a KeyNest device. */
78516
+ current_user_company?: (string | null) | undefined;
78517
+ /** Handover method for a KeyNest device. */
78518
+ handover_method?: (string | null) | undefined;
78519
+ /** KeyNest app user for a KeyNest device. */
78520
+ keynest_app_user?: (string | null) | undefined;
78521
+ /** Default office ID for a KeyNest device. */
78522
+ default_office_id?: number | undefined;
78523
+ /** Fob ID for a KeyNest device. */
78524
+ fob_id?: number | undefined;
78525
+ /** Whether the KeyNest device has a photo. */
78526
+ has_photo?: boolean | undefined;
77919
78527
  } | undefined;
77920
78528
  }) & ({
77921
78529
  /** */
@@ -79305,7 +79913,7 @@ export type Routes = {
79305
79913
  /** ID of the device. */
79306
79914
  device_id: string;
79307
79915
  /** Type of the device. */
79308
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
79916
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
79309
79917
  /** Optional nickname to describe the device, settable through Seam. */
79310
79918
  nickname?: string | undefined;
79311
79919
  /** Display name of the device, defaults to nickname (if it is set) or `properties.appearance.name`, otherwise. Enables administrators and users to identify the device easily, especially when there are numerous devices. */
@@ -79850,8 +80458,46 @@ export type Routes = {
79850
80458
  } | undefined;
79851
80459
  /** Metadata for a KeyNest device. */
79852
80460
  keynest_metadata?: {
80461
+ /** Key ID for a KeyNest device. */
80462
+ key_id?: string | undefined;
79853
80463
  /** Device name for a KeyNest device. */
79854
80464
  device_name?: string | undefined;
80465
+ /** Property ID for a KeyNest device. */
80466
+ property_id?: (string | null) | undefined;
80467
+ /** Property postcode for a KeyNest device. */
80468
+ property_postcode?: (string | null) | undefined;
80469
+ /** Key notes for a KeyNest device. */
80470
+ key_notes?: (string | null) | undefined;
80471
+ /** Subscription plan for a KeyNest device. */
80472
+ subscription_plan?: string | undefined;
80473
+ /** Status type for a KeyNest device. */
80474
+ status_type?: string | undefined;
80475
+ /** Current or last store ID for a KeyNest device. */
80476
+ current_or_last_store_id?: number | undefined;
80477
+ /** Last movement timestamp for a KeyNest device. */
80478
+ last_movement?: string | undefined;
80479
+ /** Address for a KeyNest device. */
80480
+ address?: (string | null) | undefined;
80481
+ /** Current status for a KeyNest device. */
80482
+ current_status?: (string | null) | undefined;
80483
+ /** Current user name for a KeyNest device. */
80484
+ current_user_name?: (string | null) | undefined;
80485
+ /** Current user email for a KeyNest device. */
80486
+ current_user_email?: (string | null) | undefined;
80487
+ /** Current user phone number for a KeyNest device. */
80488
+ current_user_phone_number?: (string | null) | undefined;
80489
+ /** Current user company for a KeyNest device. */
80490
+ current_user_company?: (string | null) | undefined;
80491
+ /** Handover method for a KeyNest device. */
80492
+ handover_method?: (string | null) | undefined;
80493
+ /** KeyNest app user for a KeyNest device. */
80494
+ keynest_app_user?: (string | null) | undefined;
80495
+ /** Default office ID for a KeyNest device. */
80496
+ default_office_id?: number | undefined;
80497
+ /** Fob ID for a KeyNest device. */
80498
+ fob_id?: number | undefined;
80499
+ /** Whether the KeyNest device has a photo. */
80500
+ has_photo?: boolean | undefined;
79855
80501
  } | undefined;
79856
80502
  }) & ({
79857
80503
  /** */
@@ -82752,7 +83398,7 @@ export type Routes = {
82752
83398
  /** ID of the device. */
82753
83399
  device_id: string;
82754
83400
  /** Type of the device. */
82755
- 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_lock') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat' | 'honeywell_resideo_thermostat' | 'tado_thermostat' | 'sensi_thermostat' | 'smartthings_thermostat') | ('ios_phone' | 'android_phone');
83401
+ 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' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door' | 'tedee_lock' | 'akiles_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');
82756
83402
  /** Unique identifier for the account associated with the device. */
82757
83403
  connected_account_id: string;
82758
83404
  /** Location information for the device. */