@seamapi/types 1.459.0 → 1.460.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 +158 -7
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1329 -40
  4. package/dist/index.cjs +158 -7
  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 +980 -0
  12. package/lib/seam/connect/models/devices/device-metadata.d.ts +108 -0
  13. package/lib/seam/connect/models/devices/device-metadata.js +67 -0
  14. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  15. package/lib/seam/connect/models/devices/device-provider.d.ts +1 -0
  16. package/lib/seam/connect/models/devices/device-provider.js +1 -0
  17. package/lib/seam/connect/models/devices/device-provider.js.map +1 -1
  18. package/lib/seam/connect/models/devices/device.d.ts +152 -0
  19. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +108 -0
  20. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  21. package/lib/seam/connect/openapi.d.ts +101 -0
  22. package/lib/seam/connect/openapi.js +128 -0
  23. package/lib/seam/connect/openapi.js.map +1 -1
  24. package/lib/seam/connect/route-types.d.ts +735 -4
  25. package/package.json +1 -1
  26. package/src/lib/seam/connect/models/devices/device-metadata.ts +68 -0
  27. package/src/lib/seam/connect/models/devices/device-provider.ts +1 -0
  28. package/src/lib/seam/connect/openapi.ts +140 -0
  29. package/src/lib/seam/connect/route-types.ts +769 -0
@@ -10748,6 +10748,49 @@ export interface Routes {
10748
10748
  /** Product type for a Sensi device. */
10749
10749
  product_type: string;
10750
10750
  } | undefined;
10751
+ /** Metadata for a KeyNest device. */
10752
+ keynest_metadata?: {
10753
+ /** Key ID for a KeyNest device. */
10754
+ key_id: string;
10755
+ /** Device name for a KeyNest device. */
10756
+ device_name: string;
10757
+ /** Property ID for a KeyNest device. */
10758
+ property_id: string | null;
10759
+ /** Property postcode for a KeyNest device. */
10760
+ property_postcode: string | null;
10761
+ /** Key notes for a KeyNest device. */
10762
+ key_notes: string | null;
10763
+ /** Subscription plan for a KeyNest device. */
10764
+ subscription_plan: string;
10765
+ /** Status type for a KeyNest device. */
10766
+ status_type: string;
10767
+ /** Current or last store ID for a KeyNest device. */
10768
+ current_or_last_store_id: number;
10769
+ /** Last movement timestamp for a KeyNest device. */
10770
+ last_movement: string;
10771
+ /** Address for a KeyNest device. */
10772
+ address: string | null;
10773
+ /** Current status for a KeyNest device. */
10774
+ current_status: string | null;
10775
+ /** Current user name for a KeyNest device. */
10776
+ current_user_name: string | null;
10777
+ /** Current user email for a KeyNest device. */
10778
+ current_user_email: string | null;
10779
+ /** Current user phone number for a KeyNest device. */
10780
+ current_user_phone_number: string | null;
10781
+ /** Current user company for a KeyNest device. */
10782
+ current_user_company: string | null;
10783
+ /** Handover method for a KeyNest device. */
10784
+ handover_method: string | null;
10785
+ /** KeyNest app user for a KeyNest device. */
10786
+ keynest_app_user: string | null;
10787
+ /** Default office ID for a KeyNest device. */
10788
+ default_office_id: number;
10789
+ /** Fob ID for a KeyNest device. */
10790
+ fob_id: number;
10791
+ /** Whether the KeyNest device has a photo. */
10792
+ has_photo: boolean;
10793
+ } | undefined;
10751
10794
  }) & ({
10752
10795
  /** */
10753
10796
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -13516,6 +13559,49 @@ export interface Routes {
13516
13559
  /** Product type for a Sensi device. */
13517
13560
  product_type: string;
13518
13561
  } | undefined;
13562
+ /** Metadata for a KeyNest device. */
13563
+ keynest_metadata?: {
13564
+ /** Key ID for a KeyNest device. */
13565
+ key_id: string;
13566
+ /** Device name for a KeyNest device. */
13567
+ device_name: string;
13568
+ /** Property ID for a KeyNest device. */
13569
+ property_id: string | null;
13570
+ /** Property postcode for a KeyNest device. */
13571
+ property_postcode: string | null;
13572
+ /** Key notes for a KeyNest device. */
13573
+ key_notes: string | null;
13574
+ /** Subscription plan for a KeyNest device. */
13575
+ subscription_plan: string;
13576
+ /** Status type for a KeyNest device. */
13577
+ status_type: string;
13578
+ /** Current or last store ID for a KeyNest device. */
13579
+ current_or_last_store_id: number;
13580
+ /** Last movement timestamp for a KeyNest device. */
13581
+ last_movement: string;
13582
+ /** Address for a KeyNest device. */
13583
+ address: string | null;
13584
+ /** Current status for a KeyNest device. */
13585
+ current_status: string | null;
13586
+ /** Current user name for a KeyNest device. */
13587
+ current_user_name: string | null;
13588
+ /** Current user email for a KeyNest device. */
13589
+ current_user_email: string | null;
13590
+ /** Current user phone number for a KeyNest device. */
13591
+ current_user_phone_number: string | null;
13592
+ /** Current user company for a KeyNest device. */
13593
+ current_user_company: string | null;
13594
+ /** Handover method for a KeyNest device. */
13595
+ handover_method: string | null;
13596
+ /** KeyNest app user for a KeyNest device. */
13597
+ keynest_app_user: string | null;
13598
+ /** Default office ID for a KeyNest device. */
13599
+ default_office_id: number;
13600
+ /** Fob ID for a KeyNest device. */
13601
+ fob_id: number;
13602
+ /** Whether the KeyNest device has a photo. */
13603
+ has_photo: boolean;
13604
+ } | undefined;
13519
13605
  }) & ({
13520
13606
  /** */
13521
13607
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -24256,7 +24342,7 @@ export interface Routes {
24256
24342
  /** Optional unique string key that can be used to identify the customer. If provided, the customer will be created or retrieved based on this key. */
24257
24343
  customer_key?: string | undefined;
24258
24344
  /** Accepted device provider keys as an alternative to `provider_category`. Use this parameter to specify accepted providers explicitly. See [Customize the Brands to Display in Your Connect Webviews](https://docs.seam.co/latest/core-concepts/connect-webviews/customizing-connect-webviews#customize-the-brands-to-display-in-your-connect-webviews). To list all provider keys, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with no filters. */
24259
- accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
24345
+ accepted_providers?: Array<'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest' | 'yale_access' | 'hid_cm' | 'google_nest'> | undefined;
24260
24346
  /** Specifies the category of providers that you want to include. To list all providers within a category, use [`/devices/list_device_providers`](https://docs.seam.co/latest/api/devices/list_device_providers) with the desired `provider_category` filter. */
24261
24347
  provider_category?: ('stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems' | 'internal_beta') | undefined;
24262
24348
  /** Custom metadata that you want to associate with the Connect Webview. Supports up to 50 JSON key:value pairs. [Adding custom metadata to a Connect Webview](https://docs.seam.co/latest/core-concepts/connect-webviews/attaching-custom-data-to-the-connect-webview) enables you to store custom information, like customer details or internal IDs from your application. The custom metadata is then transferred to any [connected accounts](https://docs.seam.co/latest/core-concepts/connected-accounts) that were connected using the Connect Webview, making it easy to find and filter these resources in your [workspace](https://docs.seam.co/latest/core-concepts/workspaces). You can also [filter Connect Webviews by custom metadata](https://docs.seam.co/latest/core-concepts/connect-webviews/filtering-connect-webviews-by-custom-metadata). */
@@ -26053,6 +26139,49 @@ export interface Routes {
26053
26139
  /** Product type for a Sensi device. */
26054
26140
  product_type: string;
26055
26141
  } | undefined;
26142
+ /** Metadata for a KeyNest device. */
26143
+ keynest_metadata?: {
26144
+ /** Key ID for a KeyNest device. */
26145
+ key_id: string;
26146
+ /** Device name for a KeyNest device. */
26147
+ device_name: string;
26148
+ /** Property ID for a KeyNest device. */
26149
+ property_id: string | null;
26150
+ /** Property postcode for a KeyNest device. */
26151
+ property_postcode: string | null;
26152
+ /** Key notes for a KeyNest device. */
26153
+ key_notes: string | null;
26154
+ /** Subscription plan for a KeyNest device. */
26155
+ subscription_plan: string;
26156
+ /** Status type for a KeyNest device. */
26157
+ status_type: string;
26158
+ /** Current or last store ID for a KeyNest device. */
26159
+ current_or_last_store_id: number;
26160
+ /** Last movement timestamp for a KeyNest device. */
26161
+ last_movement: string;
26162
+ /** Address for a KeyNest device. */
26163
+ address: string | null;
26164
+ /** Current status for a KeyNest device. */
26165
+ current_status: string | null;
26166
+ /** Current user name for a KeyNest device. */
26167
+ current_user_name: string | null;
26168
+ /** Current user email for a KeyNest device. */
26169
+ current_user_email: string | null;
26170
+ /** Current user phone number for a KeyNest device. */
26171
+ current_user_phone_number: string | null;
26172
+ /** Current user company for a KeyNest device. */
26173
+ current_user_company: string | null;
26174
+ /** Handover method for a KeyNest device. */
26175
+ handover_method: string | null;
26176
+ /** KeyNest app user for a KeyNest device. */
26177
+ keynest_app_user: string | null;
26178
+ /** Default office ID for a KeyNest device. */
26179
+ default_office_id: number;
26180
+ /** Fob ID for a KeyNest device. */
26181
+ fob_id: number;
26182
+ /** Whether the KeyNest device has a photo. */
26183
+ has_photo: boolean;
26184
+ } | undefined;
26056
26185
  }) & ({
26057
26186
  /** */
26058
26187
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -26690,7 +26819,7 @@ export interface Routes {
26690
26819
  /** Array of device types for which you want to list devices. */
26691
26820
  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' | '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;
26692
26821
  /** Manufacturer for which you want to list devices. */
26693
- 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') | undefined;
26822
+ 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;
26694
26823
  /** Array of device IDs for which you want to list devices. */
26695
26824
  device_ids?: string[] | undefined;
26696
26825
  /** Numerical limit on the number of devices to return. */
@@ -27262,6 +27391,49 @@ export interface Routes {
27262
27391
  /** Product type for a Sensi device. */
27263
27392
  product_type: string;
27264
27393
  } | undefined;
27394
+ /** Metadata for a KeyNest device. */
27395
+ keynest_metadata?: {
27396
+ /** Key ID for a KeyNest device. */
27397
+ key_id: string;
27398
+ /** Device name for a KeyNest device. */
27399
+ device_name: string;
27400
+ /** Property ID for a KeyNest device. */
27401
+ property_id: string | null;
27402
+ /** Property postcode for a KeyNest device. */
27403
+ property_postcode: string | null;
27404
+ /** Key notes for a KeyNest device. */
27405
+ key_notes: string | null;
27406
+ /** Subscription plan for a KeyNest device. */
27407
+ subscription_plan: string;
27408
+ /** Status type for a KeyNest device. */
27409
+ status_type: string;
27410
+ /** Current or last store ID for a KeyNest device. */
27411
+ current_or_last_store_id: number;
27412
+ /** Last movement timestamp for a KeyNest device. */
27413
+ last_movement: string;
27414
+ /** Address for a KeyNest device. */
27415
+ address: string | null;
27416
+ /** Current status for a KeyNest device. */
27417
+ current_status: string | null;
27418
+ /** Current user name for a KeyNest device. */
27419
+ current_user_name: string | null;
27420
+ /** Current user email for a KeyNest device. */
27421
+ current_user_email: string | null;
27422
+ /** Current user phone number for a KeyNest device. */
27423
+ current_user_phone_number: string | null;
27424
+ /** Current user company for a KeyNest device. */
27425
+ current_user_company: string | null;
27426
+ /** Handover method for a KeyNest device. */
27427
+ handover_method: string | null;
27428
+ /** KeyNest app user for a KeyNest device. */
27429
+ keynest_app_user: string | null;
27430
+ /** Default office ID for a KeyNest device. */
27431
+ default_office_id: number;
27432
+ /** Fob ID for a KeyNest device. */
27433
+ fob_id: number;
27434
+ /** Whether the KeyNest device has a photo. */
27435
+ has_photo: boolean;
27436
+ } | undefined;
27265
27437
  }) & ({
27266
27438
  /** */
27267
27439
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -27902,7 +28074,7 @@ export interface Routes {
27902
28074
  formData: {};
27903
28075
  jsonResponse: {
27904
28076
  device_providers: Array<{
27905
- device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2';
28077
+ device_provider_name: 'dormakaba_community' | 'legic_connect' | 'akuvox' | 'august' | 'avigilon_alta' | 'brivo' | 'butterflymx' | 'schlage' | 'smartthings' | 'yale' | 'genie' | 'doorking' | 'salto' | 'salto_ks' | 'lockly' | 'ttlock' | 'linear' | 'noiseaware' | 'nuki' | 'seam_relay_admin' | 'igloo' | 'kwikset' | 'minut' | 'my_2n' | 'controlbyweb' | 'nest' | 'igloohome' | 'ecobee' | 'hubitat' | 'four_suites' | 'dormakaba_oracode' | 'pti' | 'wyze' | 'seam_passport' | 'visionline' | 'assa_abloy_credential_service' | 'tedee' | 'honeywell_resideo' | 'latch' | 'akiles' | 'assa_abloy_vostio' | 'assa_abloy_vostio_credential_service' | 'tado' | 'salto_space' | 'sensi' | 'kwikset2' | 'keynest';
27906
28078
  display_name: string;
27907
28079
  image_url: string;
27908
28080
  provider_categories: Array<'stable' | 'consumer_smartlocks' | 'thermostats' | 'noise_sensors' | 'access_control_systems'>;
@@ -28403,7 +28575,7 @@ export interface Routes {
28403
28575
  /** Array of device types for which you want to list devices. */
28404
28576
  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' | '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;
28405
28577
  /** Manufacturer for which you want to list devices. */
28406
- 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') | undefined;
28578
+ 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;
28407
28579
  /** Array of device IDs for which you want to list devices. */
28408
28580
  device_ids?: string[] | undefined;
28409
28581
  /** Numerical limit on the number of devices to return. */
@@ -32695,6 +32867,49 @@ export interface Routes {
32695
32867
  /** Product type for a Sensi device. */
32696
32868
  product_type: string;
32697
32869
  } | undefined;
32870
+ /** Metadata for a KeyNest device. */
32871
+ keynest_metadata?: {
32872
+ /** Key ID for a KeyNest device. */
32873
+ key_id: string;
32874
+ /** Device name for a KeyNest device. */
32875
+ device_name: string;
32876
+ /** Property ID for a KeyNest device. */
32877
+ property_id: string | null;
32878
+ /** Property postcode for a KeyNest device. */
32879
+ property_postcode: string | null;
32880
+ /** Key notes for a KeyNest device. */
32881
+ key_notes: string | null;
32882
+ /** Subscription plan for a KeyNest device. */
32883
+ subscription_plan: string;
32884
+ /** Status type for a KeyNest device. */
32885
+ status_type: string;
32886
+ /** Current or last store ID for a KeyNest device. */
32887
+ current_or_last_store_id: number;
32888
+ /** Last movement timestamp for a KeyNest device. */
32889
+ last_movement: string;
32890
+ /** Address for a KeyNest device. */
32891
+ address: string | null;
32892
+ /** Current status for a KeyNest device. */
32893
+ current_status: string | null;
32894
+ /** Current user name for a KeyNest device. */
32895
+ current_user_name: string | null;
32896
+ /** Current user email for a KeyNest device. */
32897
+ current_user_email: string | null;
32898
+ /** Current user phone number for a KeyNest device. */
32899
+ current_user_phone_number: string | null;
32900
+ /** Current user company for a KeyNest device. */
32901
+ current_user_company: string | null;
32902
+ /** Handover method for a KeyNest device. */
32903
+ handover_method: string | null;
32904
+ /** KeyNest app user for a KeyNest device. */
32905
+ keynest_app_user: string | null;
32906
+ /** Default office ID for a KeyNest device. */
32907
+ default_office_id: number;
32908
+ /** Fob ID for a KeyNest device. */
32909
+ fob_id: number;
32910
+ /** Whether the KeyNest device has a photo. */
32911
+ has_photo: boolean;
32912
+ } | undefined;
32698
32913
  }) & ({
32699
32914
  /** */
32700
32915
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -33856,6 +34071,49 @@ export interface Routes {
33856
34071
  /** Product type for a Sensi device. */
33857
34072
  product_type: string;
33858
34073
  } | undefined;
34074
+ /** Metadata for a KeyNest device. */
34075
+ keynest_metadata?: {
34076
+ /** Key ID for a KeyNest device. */
34077
+ key_id: string;
34078
+ /** Device name for a KeyNest device. */
34079
+ device_name: string;
34080
+ /** Property ID for a KeyNest device. */
34081
+ property_id: string | null;
34082
+ /** Property postcode for a KeyNest device. */
34083
+ property_postcode: string | null;
34084
+ /** Key notes for a KeyNest device. */
34085
+ key_notes: string | null;
34086
+ /** Subscription plan for a KeyNest device. */
34087
+ subscription_plan: string;
34088
+ /** Status type for a KeyNest device. */
34089
+ status_type: string;
34090
+ /** Current or last store ID for a KeyNest device. */
34091
+ current_or_last_store_id: number;
34092
+ /** Last movement timestamp for a KeyNest device. */
34093
+ last_movement: string;
34094
+ /** Address for a KeyNest device. */
34095
+ address: string | null;
34096
+ /** Current status for a KeyNest device. */
34097
+ current_status: string | null;
34098
+ /** Current user name for a KeyNest device. */
34099
+ current_user_name: string | null;
34100
+ /** Current user email for a KeyNest device. */
34101
+ current_user_email: string | null;
34102
+ /** Current user phone number for a KeyNest device. */
34103
+ current_user_phone_number: string | null;
34104
+ /** Current user company for a KeyNest device. */
34105
+ current_user_company: string | null;
34106
+ /** Handover method for a KeyNest device. */
34107
+ handover_method: string | null;
34108
+ /** KeyNest app user for a KeyNest device. */
34109
+ keynest_app_user: string | null;
34110
+ /** Default office ID for a KeyNest device. */
34111
+ default_office_id: number;
34112
+ /** Fob ID for a KeyNest device. */
34113
+ fob_id: number;
34114
+ /** Whether the KeyNest device has a photo. */
34115
+ has_photo: boolean;
34116
+ } | undefined;
33859
34117
  }) & ({
33860
34118
  /** */
33861
34119
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -35065,6 +35323,49 @@ export interface Routes {
35065
35323
  /** Product type for a Sensi device. */
35066
35324
  product_type: string;
35067
35325
  } | undefined;
35326
+ /** Metadata for a KeyNest device. */
35327
+ keynest_metadata?: {
35328
+ /** Key ID for a KeyNest device. */
35329
+ key_id: string;
35330
+ /** Device name for a KeyNest device. */
35331
+ device_name: string;
35332
+ /** Property ID for a KeyNest device. */
35333
+ property_id: string | null;
35334
+ /** Property postcode for a KeyNest device. */
35335
+ property_postcode: string | null;
35336
+ /** Key notes for a KeyNest device. */
35337
+ key_notes: string | null;
35338
+ /** Subscription plan for a KeyNest device. */
35339
+ subscription_plan: string;
35340
+ /** Status type for a KeyNest device. */
35341
+ status_type: string;
35342
+ /** Current or last store ID for a KeyNest device. */
35343
+ current_or_last_store_id: number;
35344
+ /** Last movement timestamp for a KeyNest device. */
35345
+ last_movement: string;
35346
+ /** Address for a KeyNest device. */
35347
+ address: string | null;
35348
+ /** Current status for a KeyNest device. */
35349
+ current_status: string | null;
35350
+ /** Current user name for a KeyNest device. */
35351
+ current_user_name: string | null;
35352
+ /** Current user email for a KeyNest device. */
35353
+ current_user_email: string | null;
35354
+ /** Current user phone number for a KeyNest device. */
35355
+ current_user_phone_number: string | null;
35356
+ /** Current user company for a KeyNest device. */
35357
+ current_user_company: string | null;
35358
+ /** Handover method for a KeyNest device. */
35359
+ handover_method: string | null;
35360
+ /** KeyNest app user for a KeyNest device. */
35361
+ keynest_app_user: string | null;
35362
+ /** Default office ID for a KeyNest device. */
35363
+ default_office_id: number;
35364
+ /** Fob ID for a KeyNest device. */
35365
+ fob_id: number;
35366
+ /** Whether the KeyNest device has a photo. */
35367
+ has_photo: boolean;
35368
+ } | undefined;
35068
35369
  }) & ({
35069
35370
  /** */
35070
35371
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -36225,6 +36526,49 @@ export interface Routes {
36225
36526
  /** Product type for a Sensi device. */
36226
36527
  product_type: string;
36227
36528
  } | undefined;
36529
+ /** Metadata for a KeyNest device. */
36530
+ keynest_metadata?: {
36531
+ /** Key ID for a KeyNest device. */
36532
+ key_id: string;
36533
+ /** Device name for a KeyNest device. */
36534
+ device_name: string;
36535
+ /** Property ID for a KeyNest device. */
36536
+ property_id: string | null;
36537
+ /** Property postcode for a KeyNest device. */
36538
+ property_postcode: string | null;
36539
+ /** Key notes for a KeyNest device. */
36540
+ key_notes: string | null;
36541
+ /** Subscription plan for a KeyNest device. */
36542
+ subscription_plan: string;
36543
+ /** Status type for a KeyNest device. */
36544
+ status_type: string;
36545
+ /** Current or last store ID for a KeyNest device. */
36546
+ current_or_last_store_id: number;
36547
+ /** Last movement timestamp for a KeyNest device. */
36548
+ last_movement: string;
36549
+ /** Address for a KeyNest device. */
36550
+ address: string | null;
36551
+ /** Current status for a KeyNest device. */
36552
+ current_status: string | null;
36553
+ /** Current user name for a KeyNest device. */
36554
+ current_user_name: string | null;
36555
+ /** Current user email for a KeyNest device. */
36556
+ current_user_email: string | null;
36557
+ /** Current user phone number for a KeyNest device. */
36558
+ current_user_phone_number: string | null;
36559
+ /** Current user company for a KeyNest device. */
36560
+ current_user_company: string | null;
36561
+ /** Handover method for a KeyNest device. */
36562
+ handover_method: string | null;
36563
+ /** KeyNest app user for a KeyNest device. */
36564
+ keynest_app_user: string | null;
36565
+ /** Default office ID for a KeyNest device. */
36566
+ default_office_id: number;
36567
+ /** Fob ID for a KeyNest device. */
36568
+ fob_id: number;
36569
+ /** Whether the KeyNest device has a photo. */
36570
+ has_photo: boolean;
36571
+ } | undefined;
36228
36572
  }) & ({
36229
36573
  /** */
36230
36574
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -42472,6 +42816,49 @@ export interface Routes {
42472
42816
  /** Product type for a Sensi device. */
42473
42817
  product_type: string;
42474
42818
  } | undefined;
42819
+ /** Metadata for a KeyNest device. */
42820
+ keynest_metadata?: {
42821
+ /** Key ID for a KeyNest device. */
42822
+ key_id: string;
42823
+ /** Device name for a KeyNest device. */
42824
+ device_name: string;
42825
+ /** Property ID for a KeyNest device. */
42826
+ property_id: string | null;
42827
+ /** Property postcode for a KeyNest device. */
42828
+ property_postcode: string | null;
42829
+ /** Key notes for a KeyNest device. */
42830
+ key_notes: string | null;
42831
+ /** Subscription plan for a KeyNest device. */
42832
+ subscription_plan: string;
42833
+ /** Status type for a KeyNest device. */
42834
+ status_type: string;
42835
+ /** Current or last store ID for a KeyNest device. */
42836
+ current_or_last_store_id: number;
42837
+ /** Last movement timestamp for a KeyNest device. */
42838
+ last_movement: string;
42839
+ /** Address for a KeyNest device. */
42840
+ address: string | null;
42841
+ /** Current status for a KeyNest device. */
42842
+ current_status: string | null;
42843
+ /** Current user name for a KeyNest device. */
42844
+ current_user_name: string | null;
42845
+ /** Current user email for a KeyNest device. */
42846
+ current_user_email: string | null;
42847
+ /** Current user phone number for a KeyNest device. */
42848
+ current_user_phone_number: string | null;
42849
+ /** Current user company for a KeyNest device. */
42850
+ current_user_company: string | null;
42851
+ /** Handover method for a KeyNest device. */
42852
+ handover_method: string | null;
42853
+ /** KeyNest app user for a KeyNest device. */
42854
+ keynest_app_user: string | null;
42855
+ /** Default office ID for a KeyNest device. */
42856
+ default_office_id: number;
42857
+ /** Fob ID for a KeyNest device. */
42858
+ fob_id: number;
42859
+ /** Whether the KeyNest device has a photo. */
42860
+ has_photo: boolean;
42861
+ } | undefined;
42475
42862
  }) & ({
42476
42863
  /** */
42477
42864
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -43632,6 +44019,49 @@ export interface Routes {
43632
44019
  /** Product type for a Sensi device. */
43633
44020
  product_type: string;
43634
44021
  } | undefined;
44022
+ /** Metadata for a KeyNest device. */
44023
+ keynest_metadata?: {
44024
+ /** Key ID for a KeyNest device. */
44025
+ key_id: string;
44026
+ /** Device name for a KeyNest device. */
44027
+ device_name: string;
44028
+ /** Property ID for a KeyNest device. */
44029
+ property_id: string | null;
44030
+ /** Property postcode for a KeyNest device. */
44031
+ property_postcode: string | null;
44032
+ /** Key notes for a KeyNest device. */
44033
+ key_notes: string | null;
44034
+ /** Subscription plan for a KeyNest device. */
44035
+ subscription_plan: string;
44036
+ /** Status type for a KeyNest device. */
44037
+ status_type: string;
44038
+ /** Current or last store ID for a KeyNest device. */
44039
+ current_or_last_store_id: number;
44040
+ /** Last movement timestamp for a KeyNest device. */
44041
+ last_movement: string;
44042
+ /** Address for a KeyNest device. */
44043
+ address: string | null;
44044
+ /** Current status for a KeyNest device. */
44045
+ current_status: string | null;
44046
+ /** Current user name for a KeyNest device. */
44047
+ current_user_name: string | null;
44048
+ /** Current user email for a KeyNest device. */
44049
+ current_user_email: string | null;
44050
+ /** Current user phone number for a KeyNest device. */
44051
+ current_user_phone_number: string | null;
44052
+ /** Current user company for a KeyNest device. */
44053
+ current_user_company: string | null;
44054
+ /** Handover method for a KeyNest device. */
44055
+ handover_method: string | null;
44056
+ /** KeyNest app user for a KeyNest device. */
44057
+ keynest_app_user: string | null;
44058
+ /** Default office ID for a KeyNest device. */
44059
+ default_office_id: number;
44060
+ /** Fob ID for a KeyNest device. */
44061
+ fob_id: number;
44062
+ /** Whether the KeyNest device has a photo. */
44063
+ has_photo: boolean;
44064
+ } | undefined;
43635
44065
  }) & ({
43636
44066
  /** */
43637
44067
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -50125,6 +50555,49 @@ export interface Routes {
50125
50555
  /** Product type for a Sensi device. */
50126
50556
  product_type: string;
50127
50557
  } | undefined;
50558
+ /** Metadata for a KeyNest device. */
50559
+ keynest_metadata?: {
50560
+ /** Key ID for a KeyNest device. */
50561
+ key_id: string;
50562
+ /** Device name for a KeyNest device. */
50563
+ device_name: string;
50564
+ /** Property ID for a KeyNest device. */
50565
+ property_id: string | null;
50566
+ /** Property postcode for a KeyNest device. */
50567
+ property_postcode: string | null;
50568
+ /** Key notes for a KeyNest device. */
50569
+ key_notes: string | null;
50570
+ /** Subscription plan for a KeyNest device. */
50571
+ subscription_plan: string;
50572
+ /** Status type for a KeyNest device. */
50573
+ status_type: string;
50574
+ /** Current or last store ID for a KeyNest device. */
50575
+ current_or_last_store_id: number;
50576
+ /** Last movement timestamp for a KeyNest device. */
50577
+ last_movement: string;
50578
+ /** Address for a KeyNest device. */
50579
+ address: string | null;
50580
+ /** Current status for a KeyNest device. */
50581
+ current_status: string | null;
50582
+ /** Current user name for a KeyNest device. */
50583
+ current_user_name: string | null;
50584
+ /** Current user email for a KeyNest device. */
50585
+ current_user_email: string | null;
50586
+ /** Current user phone number for a KeyNest device. */
50587
+ current_user_phone_number: string | null;
50588
+ /** Current user company for a KeyNest device. */
50589
+ current_user_company: string | null;
50590
+ /** Handover method for a KeyNest device. */
50591
+ handover_method: string | null;
50592
+ /** KeyNest app user for a KeyNest device. */
50593
+ keynest_app_user: string | null;
50594
+ /** Default office ID for a KeyNest device. */
50595
+ default_office_id: number;
50596
+ /** Fob ID for a KeyNest device. */
50597
+ fob_id: number;
50598
+ /** Whether the KeyNest device has a photo. */
50599
+ has_photo: boolean;
50600
+ } | undefined;
50128
50601
  }) & ({
50129
50602
  /** */
50130
50603
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -55413,6 +55886,49 @@ export interface Routes {
55413
55886
  /** Product type for a Sensi device. */
55414
55887
  product_type: string;
55415
55888
  } | undefined;
55889
+ /** Metadata for a KeyNest device. */
55890
+ keynest_metadata?: {
55891
+ /** Key ID for a KeyNest device. */
55892
+ key_id: string;
55893
+ /** Device name for a KeyNest device. */
55894
+ device_name: string;
55895
+ /** Property ID for a KeyNest device. */
55896
+ property_id: string | null;
55897
+ /** Property postcode for a KeyNest device. */
55898
+ property_postcode: string | null;
55899
+ /** Key notes for a KeyNest device. */
55900
+ key_notes: string | null;
55901
+ /** Subscription plan for a KeyNest device. */
55902
+ subscription_plan: string;
55903
+ /** Status type for a KeyNest device. */
55904
+ status_type: string;
55905
+ /** Current or last store ID for a KeyNest device. */
55906
+ current_or_last_store_id: number;
55907
+ /** Last movement timestamp for a KeyNest device. */
55908
+ last_movement: string;
55909
+ /** Address for a KeyNest device. */
55910
+ address: string | null;
55911
+ /** Current status for a KeyNest device. */
55912
+ current_status: string | null;
55913
+ /** Current user name for a KeyNest device. */
55914
+ current_user_name: string | null;
55915
+ /** Current user email for a KeyNest device. */
55916
+ current_user_email: string | null;
55917
+ /** Current user phone number for a KeyNest device. */
55918
+ current_user_phone_number: string | null;
55919
+ /** Current user company for a KeyNest device. */
55920
+ current_user_company: string | null;
55921
+ /** Handover method for a KeyNest device. */
55922
+ handover_method: string | null;
55923
+ /** KeyNest app user for a KeyNest device. */
55924
+ keynest_app_user: string | null;
55925
+ /** Default office ID for a KeyNest device. */
55926
+ default_office_id: number;
55927
+ /** Fob ID for a KeyNest device. */
55928
+ fob_id: number;
55929
+ /** Whether the KeyNest device has a photo. */
55930
+ has_photo: boolean;
55931
+ } | undefined;
55416
55932
  }) & ({
55417
55933
  /** */
55418
55934
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -59154,6 +59670,49 @@ export interface Routes {
59154
59670
  /** Product type for a Sensi device. */
59155
59671
  product_type: string;
59156
59672
  } | undefined;
59673
+ /** Metadata for a KeyNest device. */
59674
+ keynest_metadata?: {
59675
+ /** Key ID for a KeyNest device. */
59676
+ key_id: string;
59677
+ /** Device name for a KeyNest device. */
59678
+ device_name: string;
59679
+ /** Property ID for a KeyNest device. */
59680
+ property_id: string | null;
59681
+ /** Property postcode for a KeyNest device. */
59682
+ property_postcode: string | null;
59683
+ /** Key notes for a KeyNest device. */
59684
+ key_notes: string | null;
59685
+ /** Subscription plan for a KeyNest device. */
59686
+ subscription_plan: string;
59687
+ /** Status type for a KeyNest device. */
59688
+ status_type: string;
59689
+ /** Current or last store ID for a KeyNest device. */
59690
+ current_or_last_store_id: number;
59691
+ /** Last movement timestamp for a KeyNest device. */
59692
+ last_movement: string;
59693
+ /** Address for a KeyNest device. */
59694
+ address: string | null;
59695
+ /** Current status for a KeyNest device. */
59696
+ current_status: string | null;
59697
+ /** Current user name for a KeyNest device. */
59698
+ current_user_name: string | null;
59699
+ /** Current user email for a KeyNest device. */
59700
+ current_user_email: string | null;
59701
+ /** Current user phone number for a KeyNest device. */
59702
+ current_user_phone_number: string | null;
59703
+ /** Current user company for a KeyNest device. */
59704
+ current_user_company: string | null;
59705
+ /** Handover method for a KeyNest device. */
59706
+ handover_method: string | null;
59707
+ /** KeyNest app user for a KeyNest device. */
59708
+ keynest_app_user: string | null;
59709
+ /** Default office ID for a KeyNest device. */
59710
+ default_office_id: number;
59711
+ /** Fob ID for a KeyNest device. */
59712
+ fob_id: number;
59713
+ /** Whether the KeyNest device has a photo. */
59714
+ has_photo: boolean;
59715
+ } | undefined;
59157
59716
  }) & ({
59158
59717
  /** */
59159
59718
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -60314,6 +60873,49 @@ export interface Routes {
60314
60873
  /** Product type for a Sensi device. */
60315
60874
  product_type: string;
60316
60875
  } | undefined;
60876
+ /** Metadata for a KeyNest device. */
60877
+ keynest_metadata?: {
60878
+ /** Key ID for a KeyNest device. */
60879
+ key_id: string;
60880
+ /** Device name for a KeyNest device. */
60881
+ device_name: string;
60882
+ /** Property ID for a KeyNest device. */
60883
+ property_id: string | null;
60884
+ /** Property postcode for a KeyNest device. */
60885
+ property_postcode: string | null;
60886
+ /** Key notes for a KeyNest device. */
60887
+ key_notes: string | null;
60888
+ /** Subscription plan for a KeyNest device. */
60889
+ subscription_plan: string;
60890
+ /** Status type for a KeyNest device. */
60891
+ status_type: string;
60892
+ /** Current or last store ID for a KeyNest device. */
60893
+ current_or_last_store_id: number;
60894
+ /** Last movement timestamp for a KeyNest device. */
60895
+ last_movement: string;
60896
+ /** Address for a KeyNest device. */
60897
+ address: string | null;
60898
+ /** Current status for a KeyNest device. */
60899
+ current_status: string | null;
60900
+ /** Current user name for a KeyNest device. */
60901
+ current_user_name: string | null;
60902
+ /** Current user email for a KeyNest device. */
60903
+ current_user_email: string | null;
60904
+ /** Current user phone number for a KeyNest device. */
60905
+ current_user_phone_number: string | null;
60906
+ /** Current user company for a KeyNest device. */
60907
+ current_user_company: string | null;
60908
+ /** Handover method for a KeyNest device. */
60909
+ handover_method: string | null;
60910
+ /** KeyNest app user for a KeyNest device. */
60911
+ keynest_app_user: string | null;
60912
+ /** Default office ID for a KeyNest device. */
60913
+ default_office_id: number;
60914
+ /** Fob ID for a KeyNest device. */
60915
+ fob_id: number;
60916
+ /** Whether the KeyNest device has a photo. */
60917
+ has_photo: boolean;
60918
+ } | undefined;
60317
60919
  }) & ({
60318
60920
  /** */
60319
60921
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -67934,6 +68536,49 @@ export interface Routes {
67934
68536
  /** Product type for a Sensi device. */
67935
68537
  product_type: string;
67936
68538
  } | undefined;
68539
+ /** Metadata for a KeyNest device. */
68540
+ keynest_metadata?: {
68541
+ /** Key ID for a KeyNest device. */
68542
+ key_id: string;
68543
+ /** Device name for a KeyNest device. */
68544
+ device_name: string;
68545
+ /** Property ID for a KeyNest device. */
68546
+ property_id: string | null;
68547
+ /** Property postcode for a KeyNest device. */
68548
+ property_postcode: string | null;
68549
+ /** Key notes for a KeyNest device. */
68550
+ key_notes: string | null;
68551
+ /** Subscription plan for a KeyNest device. */
68552
+ subscription_plan: string;
68553
+ /** Status type for a KeyNest device. */
68554
+ status_type: string;
68555
+ /** Current or last store ID for a KeyNest device. */
68556
+ current_or_last_store_id: number;
68557
+ /** Last movement timestamp for a KeyNest device. */
68558
+ last_movement: string;
68559
+ /** Address for a KeyNest device. */
68560
+ address: string | null;
68561
+ /** Current status for a KeyNest device. */
68562
+ current_status: string | null;
68563
+ /** Current user name for a KeyNest device. */
68564
+ current_user_name: string | null;
68565
+ /** Current user email for a KeyNest device. */
68566
+ current_user_email: string | null;
68567
+ /** Current user phone number for a KeyNest device. */
68568
+ current_user_phone_number: string | null;
68569
+ /** Current user company for a KeyNest device. */
68570
+ current_user_company: string | null;
68571
+ /** Handover method for a KeyNest device. */
68572
+ handover_method: string | null;
68573
+ /** KeyNest app user for a KeyNest device. */
68574
+ keynest_app_user: string | null;
68575
+ /** Default office ID for a KeyNest device. */
68576
+ default_office_id: number;
68577
+ /** Fob ID for a KeyNest device. */
68578
+ fob_id: number;
68579
+ /** Whether the KeyNest device has a photo. */
68580
+ has_photo: boolean;
68581
+ } | undefined;
67937
68582
  }) & ({
67938
68583
  /** */
67939
68584
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -69096,6 +69741,49 @@ export interface Routes {
69096
69741
  /** Product type for a Sensi device. */
69097
69742
  product_type: string;
69098
69743
  } | undefined;
69744
+ /** Metadata for a KeyNest device. */
69745
+ keynest_metadata?: {
69746
+ /** Key ID for a KeyNest device. */
69747
+ key_id: string;
69748
+ /** Device name for a KeyNest device. */
69749
+ device_name: string;
69750
+ /** Property ID for a KeyNest device. */
69751
+ property_id: string | null;
69752
+ /** Property postcode for a KeyNest device. */
69753
+ property_postcode: string | null;
69754
+ /** Key notes for a KeyNest device. */
69755
+ key_notes: string | null;
69756
+ /** Subscription plan for a KeyNest device. */
69757
+ subscription_plan: string;
69758
+ /** Status type for a KeyNest device. */
69759
+ status_type: string;
69760
+ /** Current or last store ID for a KeyNest device. */
69761
+ current_or_last_store_id: number;
69762
+ /** Last movement timestamp for a KeyNest device. */
69763
+ last_movement: string;
69764
+ /** Address for a KeyNest device. */
69765
+ address: string | null;
69766
+ /** Current status for a KeyNest device. */
69767
+ current_status: string | null;
69768
+ /** Current user name for a KeyNest device. */
69769
+ current_user_name: string | null;
69770
+ /** Current user email for a KeyNest device. */
69771
+ current_user_email: string | null;
69772
+ /** Current user phone number for a KeyNest device. */
69773
+ current_user_phone_number: string | null;
69774
+ /** Current user company for a KeyNest device. */
69775
+ current_user_company: string | null;
69776
+ /** Handover method for a KeyNest device. */
69777
+ handover_method: string | null;
69778
+ /** KeyNest app user for a KeyNest device. */
69779
+ keynest_app_user: string | null;
69780
+ /** Default office ID for a KeyNest device. */
69781
+ default_office_id: number;
69782
+ /** Fob ID for a KeyNest device. */
69783
+ fob_id: number;
69784
+ /** Whether the KeyNest device has a photo. */
69785
+ has_photo: boolean;
69786
+ } | undefined;
69099
69787
  }) & ({
69100
69788
  /** */
69101
69789
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;
@@ -70929,6 +71617,49 @@ export interface Routes {
70929
71617
  /** Product type for a Sensi device. */
70930
71618
  product_type: string;
70931
71619
  } | undefined;
71620
+ /** Metadata for a KeyNest device. */
71621
+ keynest_metadata?: {
71622
+ /** Key ID for a KeyNest device. */
71623
+ key_id: string;
71624
+ /** Device name for a KeyNest device. */
71625
+ device_name: string;
71626
+ /** Property ID for a KeyNest device. */
71627
+ property_id: string | null;
71628
+ /** Property postcode for a KeyNest device. */
71629
+ property_postcode: string | null;
71630
+ /** Key notes for a KeyNest device. */
71631
+ key_notes: string | null;
71632
+ /** Subscription plan for a KeyNest device. */
71633
+ subscription_plan: string;
71634
+ /** Status type for a KeyNest device. */
71635
+ status_type: string;
71636
+ /** Current or last store ID for a KeyNest device. */
71637
+ current_or_last_store_id: number;
71638
+ /** Last movement timestamp for a KeyNest device. */
71639
+ last_movement: string;
71640
+ /** Address for a KeyNest device. */
71641
+ address: string | null;
71642
+ /** Current status for a KeyNest device. */
71643
+ current_status: string | null;
71644
+ /** Current user name for a KeyNest device. */
71645
+ current_user_name: string | null;
71646
+ /** Current user email for a KeyNest device. */
71647
+ current_user_email: string | null;
71648
+ /** Current user phone number for a KeyNest device. */
71649
+ current_user_phone_number: string | null;
71650
+ /** Current user company for a KeyNest device. */
71651
+ current_user_company: string | null;
71652
+ /** Handover method for a KeyNest device. */
71653
+ handover_method: string | null;
71654
+ /** KeyNest app user for a KeyNest device. */
71655
+ keynest_app_user: string | null;
71656
+ /** Default office ID for a KeyNest device. */
71657
+ default_office_id: number;
71658
+ /** Fob ID for a KeyNest device. */
71659
+ fob_id: number;
71660
+ /** Whether the KeyNest device has a photo. */
71661
+ has_photo: boolean;
71662
+ } | undefined;
70932
71663
  }) & ({
70933
71664
  /** */
70934
71665
  _experimental_supported_code_from_access_codes_lengths?: (number[] | undefined) | undefined;