@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
@@ -12114,6 +12114,51 @@ export interface Routes {
12114
12114
  product_type: string
12115
12115
  }
12116
12116
  | undefined
12117
+ /** Metadata for a KeyNest device. */
12118
+ keynest_metadata?:
12119
+ | {
12120
+ /** Key ID for a KeyNest device. */
12121
+ key_id: string
12122
+ /** Device name for a KeyNest device. */
12123
+ device_name: string
12124
+ /** Property ID for a KeyNest device. */
12125
+ property_id: string | null
12126
+ /** Property postcode for a KeyNest device. */
12127
+ property_postcode: string | null
12128
+ /** Key notes for a KeyNest device. */
12129
+ key_notes: string | null
12130
+ /** Subscription plan for a KeyNest device. */
12131
+ subscription_plan: string
12132
+ /** Status type for a KeyNest device. */
12133
+ status_type: string
12134
+ /** Current or last store ID for a KeyNest device. */
12135
+ current_or_last_store_id: number
12136
+ /** Last movement timestamp for a KeyNest device. */
12137
+ last_movement: string
12138
+ /** Address for a KeyNest device. */
12139
+ address: string | null
12140
+ /** Current status for a KeyNest device. */
12141
+ current_status: string | null
12142
+ /** Current user name for a KeyNest device. */
12143
+ current_user_name: string | null
12144
+ /** Current user email for a KeyNest device. */
12145
+ current_user_email: string | null
12146
+ /** Current user phone number for a KeyNest device. */
12147
+ current_user_phone_number: string | null
12148
+ /** Current user company for a KeyNest device. */
12149
+ current_user_company: string | null
12150
+ /** Handover method for a KeyNest device. */
12151
+ handover_method: string | null
12152
+ /** KeyNest app user for a KeyNest device. */
12153
+ keynest_app_user: string | null
12154
+ /** Default office ID for a KeyNest device. */
12155
+ default_office_id: number
12156
+ /** Fob ID for a KeyNest device. */
12157
+ fob_id: number
12158
+ /** Whether the KeyNest device has a photo. */
12159
+ has_photo: boolean
12160
+ }
12161
+ | undefined
12117
12162
  }) &
12118
12163
  ({
12119
12164
  /** */
@@ -15415,6 +15460,51 @@ export interface Routes {
15415
15460
  product_type: string
15416
15461
  }
15417
15462
  | undefined
15463
+ /** Metadata for a KeyNest device. */
15464
+ keynest_metadata?:
15465
+ | {
15466
+ /** Key ID for a KeyNest device. */
15467
+ key_id: string
15468
+ /** Device name for a KeyNest device. */
15469
+ device_name: string
15470
+ /** Property ID for a KeyNest device. */
15471
+ property_id: string | null
15472
+ /** Property postcode for a KeyNest device. */
15473
+ property_postcode: string | null
15474
+ /** Key notes for a KeyNest device. */
15475
+ key_notes: string | null
15476
+ /** Subscription plan for a KeyNest device. */
15477
+ subscription_plan: string
15478
+ /** Status type for a KeyNest device. */
15479
+ status_type: string
15480
+ /** Current or last store ID for a KeyNest device. */
15481
+ current_or_last_store_id: number
15482
+ /** Last movement timestamp for a KeyNest device. */
15483
+ last_movement: string
15484
+ /** Address for a KeyNest device. */
15485
+ address: string | null
15486
+ /** Current status for a KeyNest device. */
15487
+ current_status: string | null
15488
+ /** Current user name for a KeyNest device. */
15489
+ current_user_name: string | null
15490
+ /** Current user email for a KeyNest device. */
15491
+ current_user_email: string | null
15492
+ /** Current user phone number for a KeyNest device. */
15493
+ current_user_phone_number: string | null
15494
+ /** Current user company for a KeyNest device. */
15495
+ current_user_company: string | null
15496
+ /** Handover method for a KeyNest device. */
15497
+ handover_method: string | null
15498
+ /** KeyNest app user for a KeyNest device. */
15499
+ keynest_app_user: string | null
15500
+ /** Default office ID for a KeyNest device. */
15501
+ default_office_id: number
15502
+ /** Fob ID for a KeyNest device. */
15503
+ fob_id: number
15504
+ /** Whether the KeyNest device has a photo. */
15505
+ has_photo: boolean
15506
+ }
15507
+ | undefined
15418
15508
  }) &
15419
15509
  ({
15420
15510
  /** */
@@ -27930,6 +28020,7 @@ export interface Routes {
27930
28020
  | 'salto_space'
27931
28021
  | 'sensi'
27932
28022
  | 'kwikset2'
28023
+ | 'keynest'
27933
28024
  | 'yale_access'
27934
28025
  | 'hid_cm'
27935
28026
  | 'google_nest'
@@ -29991,6 +30082,51 @@ export interface Routes {
29991
30082
  product_type: string
29992
30083
  }
29993
30084
  | undefined
30085
+ /** Metadata for a KeyNest device. */
30086
+ keynest_metadata?:
30087
+ | {
30088
+ /** Key ID for a KeyNest device. */
30089
+ key_id: string
30090
+ /** Device name for a KeyNest device. */
30091
+ device_name: string
30092
+ /** Property ID for a KeyNest device. */
30093
+ property_id: string | null
30094
+ /** Property postcode for a KeyNest device. */
30095
+ property_postcode: string | null
30096
+ /** Key notes for a KeyNest device. */
30097
+ key_notes: string | null
30098
+ /** Subscription plan for a KeyNest device. */
30099
+ subscription_plan: string
30100
+ /** Status type for a KeyNest device. */
30101
+ status_type: string
30102
+ /** Current or last store ID for a KeyNest device. */
30103
+ current_or_last_store_id: number
30104
+ /** Last movement timestamp for a KeyNest device. */
30105
+ last_movement: string
30106
+ /** Address for a KeyNest device. */
30107
+ address: string | null
30108
+ /** Current status for a KeyNest device. */
30109
+ current_status: string | null
30110
+ /** Current user name for a KeyNest device. */
30111
+ current_user_name: string | null
30112
+ /** Current user email for a KeyNest device. */
30113
+ current_user_email: string | null
30114
+ /** Current user phone number for a KeyNest device. */
30115
+ current_user_phone_number: string | null
30116
+ /** Current user company for a KeyNest device. */
30117
+ current_user_company: string | null
30118
+ /** Handover method for a KeyNest device. */
30119
+ handover_method: string | null
30120
+ /** KeyNest app user for a KeyNest device. */
30121
+ keynest_app_user: string | null
30122
+ /** Default office ID for a KeyNest device. */
30123
+ default_office_id: number
30124
+ /** Fob ID for a KeyNest device. */
30125
+ fob_id: number
30126
+ /** Whether the KeyNest device has a photo. */
30127
+ has_photo: boolean
30128
+ }
30129
+ | undefined
29994
30130
  }) &
29995
30131
  ({
29996
30132
  /** */
@@ -30915,6 +31051,7 @@ export interface Routes {
30915
31051
  | 'tado'
30916
31052
  | 'sensi'
30917
31053
  | 'smartthings'
31054
+ | 'keynest'
30918
31055
  )
30919
31056
  | undefined
30920
31057
  /** Array of device IDs for which you want to list devices. */
@@ -31648,6 +31785,51 @@ export interface Routes {
31648
31785
  product_type: string
31649
31786
  }
31650
31787
  | undefined
31788
+ /** Metadata for a KeyNest device. */
31789
+ keynest_metadata?:
31790
+ | {
31791
+ /** Key ID for a KeyNest device. */
31792
+ key_id: string
31793
+ /** Device name for a KeyNest device. */
31794
+ device_name: string
31795
+ /** Property ID for a KeyNest device. */
31796
+ property_id: string | null
31797
+ /** Property postcode for a KeyNest device. */
31798
+ property_postcode: string | null
31799
+ /** Key notes for a KeyNest device. */
31800
+ key_notes: string | null
31801
+ /** Subscription plan for a KeyNest device. */
31802
+ subscription_plan: string
31803
+ /** Status type for a KeyNest device. */
31804
+ status_type: string
31805
+ /** Current or last store ID for a KeyNest device. */
31806
+ current_or_last_store_id: number
31807
+ /** Last movement timestamp for a KeyNest device. */
31808
+ last_movement: string
31809
+ /** Address for a KeyNest device. */
31810
+ address: string | null
31811
+ /** Current status for a KeyNest device. */
31812
+ current_status: string | null
31813
+ /** Current user name for a KeyNest device. */
31814
+ current_user_name: string | null
31815
+ /** Current user email for a KeyNest device. */
31816
+ current_user_email: string | null
31817
+ /** Current user phone number for a KeyNest device. */
31818
+ current_user_phone_number: string | null
31819
+ /** Current user company for a KeyNest device. */
31820
+ current_user_company: string | null
31821
+ /** Handover method for a KeyNest device. */
31822
+ handover_method: string | null
31823
+ /** KeyNest app user for a KeyNest device. */
31824
+ keynest_app_user: string | null
31825
+ /** Default office ID for a KeyNest device. */
31826
+ default_office_id: number
31827
+ /** Fob ID for a KeyNest device. */
31828
+ fob_id: number
31829
+ /** Whether the KeyNest device has a photo. */
31830
+ has_photo: boolean
31831
+ }
31832
+ | undefined
31651
31833
  }) &
31652
31834
  ({
31653
31835
  /** */
@@ -32505,6 +32687,7 @@ export interface Routes {
32505
32687
  | 'salto_space'
32506
32688
  | 'sensi'
32507
32689
  | 'kwikset2'
32690
+ | 'keynest'
32508
32691
  display_name: string
32509
32692
  image_url: string
32510
32693
  provider_categories: Array<
@@ -33224,6 +33407,7 @@ export interface Routes {
33224
33407
  | 'tado'
33225
33408
  | 'sensi'
33226
33409
  | 'smartthings'
33410
+ | 'keynest'
33227
33411
  )
33228
33412
  | undefined
33229
33413
  /** Array of device IDs for which you want to list devices. */
@@ -38606,6 +38790,51 @@ export interface Routes {
38606
38790
  product_type: string
38607
38791
  }
38608
38792
  | undefined
38793
+ /** Metadata for a KeyNest device. */
38794
+ keynest_metadata?:
38795
+ | {
38796
+ /** Key ID for a KeyNest device. */
38797
+ key_id: string
38798
+ /** Device name for a KeyNest device. */
38799
+ device_name: string
38800
+ /** Property ID for a KeyNest device. */
38801
+ property_id: string | null
38802
+ /** Property postcode for a KeyNest device. */
38803
+ property_postcode: string | null
38804
+ /** Key notes for a KeyNest device. */
38805
+ key_notes: string | null
38806
+ /** Subscription plan for a KeyNest device. */
38807
+ subscription_plan: string
38808
+ /** Status type for a KeyNest device. */
38809
+ status_type: string
38810
+ /** Current or last store ID for a KeyNest device. */
38811
+ current_or_last_store_id: number
38812
+ /** Last movement timestamp for a KeyNest device. */
38813
+ last_movement: string
38814
+ /** Address for a KeyNest device. */
38815
+ address: string | null
38816
+ /** Current status for a KeyNest device. */
38817
+ current_status: string | null
38818
+ /** Current user name for a KeyNest device. */
38819
+ current_user_name: string | null
38820
+ /** Current user email for a KeyNest device. */
38821
+ current_user_email: string | null
38822
+ /** Current user phone number for a KeyNest device. */
38823
+ current_user_phone_number: string | null
38824
+ /** Current user company for a KeyNest device. */
38825
+ current_user_company: string | null
38826
+ /** Handover method for a KeyNest device. */
38827
+ handover_method: string | null
38828
+ /** KeyNest app user for a KeyNest device. */
38829
+ keynest_app_user: string | null
38830
+ /** Default office ID for a KeyNest device. */
38831
+ default_office_id: number
38832
+ /** Fob ID for a KeyNest device. */
38833
+ fob_id: number
38834
+ /** Whether the KeyNest device has a photo. */
38835
+ has_photo: boolean
38836
+ }
38837
+ | undefined
38609
38838
  }) &
38610
38839
  ({
38611
38840
  /** */
@@ -40059,6 +40288,51 @@ export interface Routes {
40059
40288
  product_type: string
40060
40289
  }
40061
40290
  | undefined
40291
+ /** Metadata for a KeyNest device. */
40292
+ keynest_metadata?:
40293
+ | {
40294
+ /** Key ID for a KeyNest device. */
40295
+ key_id: string
40296
+ /** Device name for a KeyNest device. */
40297
+ device_name: string
40298
+ /** Property ID for a KeyNest device. */
40299
+ property_id: string | null
40300
+ /** Property postcode for a KeyNest device. */
40301
+ property_postcode: string | null
40302
+ /** Key notes for a KeyNest device. */
40303
+ key_notes: string | null
40304
+ /** Subscription plan for a KeyNest device. */
40305
+ subscription_plan: string
40306
+ /** Status type for a KeyNest device. */
40307
+ status_type: string
40308
+ /** Current or last store ID for a KeyNest device. */
40309
+ current_or_last_store_id: number
40310
+ /** Last movement timestamp for a KeyNest device. */
40311
+ last_movement: string
40312
+ /** Address for a KeyNest device. */
40313
+ address: string | null
40314
+ /** Current status for a KeyNest device. */
40315
+ current_status: string | null
40316
+ /** Current user name for a KeyNest device. */
40317
+ current_user_name: string | null
40318
+ /** Current user email for a KeyNest device. */
40319
+ current_user_email: string | null
40320
+ /** Current user phone number for a KeyNest device. */
40321
+ current_user_phone_number: string | null
40322
+ /** Current user company for a KeyNest device. */
40323
+ current_user_company: string | null
40324
+ /** Handover method for a KeyNest device. */
40325
+ handover_method: string | null
40326
+ /** KeyNest app user for a KeyNest device. */
40327
+ keynest_app_user: string | null
40328
+ /** Default office ID for a KeyNest device. */
40329
+ default_office_id: number
40330
+ /** Fob ID for a KeyNest device. */
40331
+ fob_id: number
40332
+ /** Whether the KeyNest device has a photo. */
40333
+ has_photo: boolean
40334
+ }
40335
+ | undefined
40062
40336
  }) &
40063
40337
  ({
40064
40338
  /** */
@@ -41681,6 +41955,51 @@ export interface Routes {
41681
41955
  product_type: string
41682
41956
  }
41683
41957
  | undefined
41958
+ /** Metadata for a KeyNest device. */
41959
+ keynest_metadata?:
41960
+ | {
41961
+ /** Key ID for a KeyNest device. */
41962
+ key_id: string
41963
+ /** Device name for a KeyNest device. */
41964
+ device_name: string
41965
+ /** Property ID for a KeyNest device. */
41966
+ property_id: string | null
41967
+ /** Property postcode for a KeyNest device. */
41968
+ property_postcode: string | null
41969
+ /** Key notes for a KeyNest device. */
41970
+ key_notes: string | null
41971
+ /** Subscription plan for a KeyNest device. */
41972
+ subscription_plan: string
41973
+ /** Status type for a KeyNest device. */
41974
+ status_type: string
41975
+ /** Current or last store ID for a KeyNest device. */
41976
+ current_or_last_store_id: number
41977
+ /** Last movement timestamp for a KeyNest device. */
41978
+ last_movement: string
41979
+ /** Address for a KeyNest device. */
41980
+ address: string | null
41981
+ /** Current status for a KeyNest device. */
41982
+ current_status: string | null
41983
+ /** Current user name for a KeyNest device. */
41984
+ current_user_name: string | null
41985
+ /** Current user email for a KeyNest device. */
41986
+ current_user_email: string | null
41987
+ /** Current user phone number for a KeyNest device. */
41988
+ current_user_phone_number: string | null
41989
+ /** Current user company for a KeyNest device. */
41990
+ current_user_company: string | null
41991
+ /** Handover method for a KeyNest device. */
41992
+ handover_method: string | null
41993
+ /** KeyNest app user for a KeyNest device. */
41994
+ keynest_app_user: string | null
41995
+ /** Default office ID for a KeyNest device. */
41996
+ default_office_id: number
41997
+ /** Fob ID for a KeyNest device. */
41998
+ fob_id: number
41999
+ /** Whether the KeyNest device has a photo. */
42000
+ has_photo: boolean
42001
+ }
42002
+ | undefined
41684
42003
  }) &
41685
42004
  ({
41686
42005
  /** */
@@ -43133,6 +43452,51 @@ export interface Routes {
43133
43452
  product_type: string
43134
43453
  }
43135
43454
  | undefined
43455
+ /** Metadata for a KeyNest device. */
43456
+ keynest_metadata?:
43457
+ | {
43458
+ /** Key ID for a KeyNest device. */
43459
+ key_id: string
43460
+ /** Device name for a KeyNest device. */
43461
+ device_name: string
43462
+ /** Property ID for a KeyNest device. */
43463
+ property_id: string | null
43464
+ /** Property postcode for a KeyNest device. */
43465
+ property_postcode: string | null
43466
+ /** Key notes for a KeyNest device. */
43467
+ key_notes: string | null
43468
+ /** Subscription plan for a KeyNest device. */
43469
+ subscription_plan: string
43470
+ /** Status type for a KeyNest device. */
43471
+ status_type: string
43472
+ /** Current or last store ID for a KeyNest device. */
43473
+ current_or_last_store_id: number
43474
+ /** Last movement timestamp for a KeyNest device. */
43475
+ last_movement: string
43476
+ /** Address for a KeyNest device. */
43477
+ address: string | null
43478
+ /** Current status for a KeyNest device. */
43479
+ current_status: string | null
43480
+ /** Current user name for a KeyNest device. */
43481
+ current_user_name: string | null
43482
+ /** Current user email for a KeyNest device. */
43483
+ current_user_email: string | null
43484
+ /** Current user phone number for a KeyNest device. */
43485
+ current_user_phone_number: string | null
43486
+ /** Current user company for a KeyNest device. */
43487
+ current_user_company: string | null
43488
+ /** Handover method for a KeyNest device. */
43489
+ handover_method: string | null
43490
+ /** KeyNest app user for a KeyNest device. */
43491
+ keynest_app_user: string | null
43492
+ /** Default office ID for a KeyNest device. */
43493
+ default_office_id: number
43494
+ /** Fob ID for a KeyNest device. */
43495
+ fob_id: number
43496
+ /** Whether the KeyNest device has a photo. */
43497
+ has_photo: boolean
43498
+ }
43499
+ | undefined
43136
43500
  }) &
43137
43501
  ({
43138
43502
  /** */
@@ -50428,6 +50792,51 @@ export interface Routes {
50428
50792
  product_type: string
50429
50793
  }
50430
50794
  | undefined
50795
+ /** Metadata for a KeyNest device. */
50796
+ keynest_metadata?:
50797
+ | {
50798
+ /** Key ID for a KeyNest device. */
50799
+ key_id: string
50800
+ /** Device name for a KeyNest device. */
50801
+ device_name: string
50802
+ /** Property ID for a KeyNest device. */
50803
+ property_id: string | null
50804
+ /** Property postcode for a KeyNest device. */
50805
+ property_postcode: string | null
50806
+ /** Key notes for a KeyNest device. */
50807
+ key_notes: string | null
50808
+ /** Subscription plan for a KeyNest device. */
50809
+ subscription_plan: string
50810
+ /** Status type for a KeyNest device. */
50811
+ status_type: string
50812
+ /** Current or last store ID for a KeyNest device. */
50813
+ current_or_last_store_id: number
50814
+ /** Last movement timestamp for a KeyNest device. */
50815
+ last_movement: string
50816
+ /** Address for a KeyNest device. */
50817
+ address: string | null
50818
+ /** Current status for a KeyNest device. */
50819
+ current_status: string | null
50820
+ /** Current user name for a KeyNest device. */
50821
+ current_user_name: string | null
50822
+ /** Current user email for a KeyNest device. */
50823
+ current_user_email: string | null
50824
+ /** Current user phone number for a KeyNest device. */
50825
+ current_user_phone_number: string | null
50826
+ /** Current user company for a KeyNest device. */
50827
+ current_user_company: string | null
50828
+ /** Handover method for a KeyNest device. */
50829
+ handover_method: string | null
50830
+ /** KeyNest app user for a KeyNest device. */
50831
+ keynest_app_user: string | null
50832
+ /** Default office ID for a KeyNest device. */
50833
+ default_office_id: number
50834
+ /** Fob ID for a KeyNest device. */
50835
+ fob_id: number
50836
+ /** Whether the KeyNest device has a photo. */
50837
+ has_photo: boolean
50838
+ }
50839
+ | undefined
50431
50840
  }) &
50432
50841
  ({
50433
50842
  /** */
@@ -51880,6 +52289,51 @@ export interface Routes {
51880
52289
  product_type: string
51881
52290
  }
51882
52291
  | undefined
52292
+ /** Metadata for a KeyNest device. */
52293
+ keynest_metadata?:
52294
+ | {
52295
+ /** Key ID for a KeyNest device. */
52296
+ key_id: string
52297
+ /** Device name for a KeyNest device. */
52298
+ device_name: string
52299
+ /** Property ID for a KeyNest device. */
52300
+ property_id: string | null
52301
+ /** Property postcode for a KeyNest device. */
52302
+ property_postcode: string | null
52303
+ /** Key notes for a KeyNest device. */
52304
+ key_notes: string | null
52305
+ /** Subscription plan for a KeyNest device. */
52306
+ subscription_plan: string
52307
+ /** Status type for a KeyNest device. */
52308
+ status_type: string
52309
+ /** Current or last store ID for a KeyNest device. */
52310
+ current_or_last_store_id: number
52311
+ /** Last movement timestamp for a KeyNest device. */
52312
+ last_movement: string
52313
+ /** Address for a KeyNest device. */
52314
+ address: string | null
52315
+ /** Current status for a KeyNest device. */
52316
+ current_status: string | null
52317
+ /** Current user name for a KeyNest device. */
52318
+ current_user_name: string | null
52319
+ /** Current user email for a KeyNest device. */
52320
+ current_user_email: string | null
52321
+ /** Current user phone number for a KeyNest device. */
52322
+ current_user_phone_number: string | null
52323
+ /** Current user company for a KeyNest device. */
52324
+ current_user_company: string | null
52325
+ /** Handover method for a KeyNest device. */
52326
+ handover_method: string | null
52327
+ /** KeyNest app user for a KeyNest device. */
52328
+ keynest_app_user: string | null
52329
+ /** Default office ID for a KeyNest device. */
52330
+ default_office_id: number
52331
+ /** Fob ID for a KeyNest device. */
52332
+ fob_id: number
52333
+ /** Whether the KeyNest device has a photo. */
52334
+ has_photo: boolean
52335
+ }
52336
+ | undefined
51883
52337
  }) &
51884
52338
  ({
51885
52339
  /** */
@@ -59381,6 +59835,51 @@ export interface Routes {
59381
59835
  product_type: string
59382
59836
  }
59383
59837
  | undefined
59838
+ /** Metadata for a KeyNest device. */
59839
+ keynest_metadata?:
59840
+ | {
59841
+ /** Key ID for a KeyNest device. */
59842
+ key_id: string
59843
+ /** Device name for a KeyNest device. */
59844
+ device_name: string
59845
+ /** Property ID for a KeyNest device. */
59846
+ property_id: string | null
59847
+ /** Property postcode for a KeyNest device. */
59848
+ property_postcode: string | null
59849
+ /** Key notes for a KeyNest device. */
59850
+ key_notes: string | null
59851
+ /** Subscription plan for a KeyNest device. */
59852
+ subscription_plan: string
59853
+ /** Status type for a KeyNest device. */
59854
+ status_type: string
59855
+ /** Current or last store ID for a KeyNest device. */
59856
+ current_or_last_store_id: number
59857
+ /** Last movement timestamp for a KeyNest device. */
59858
+ last_movement: string
59859
+ /** Address for a KeyNest device. */
59860
+ address: string | null
59861
+ /** Current status for a KeyNest device. */
59862
+ current_status: string | null
59863
+ /** Current user name for a KeyNest device. */
59864
+ current_user_name: string | null
59865
+ /** Current user email for a KeyNest device. */
59866
+ current_user_email: string | null
59867
+ /** Current user phone number for a KeyNest device. */
59868
+ current_user_phone_number: string | null
59869
+ /** Current user company for a KeyNest device. */
59870
+ current_user_company: string | null
59871
+ /** Handover method for a KeyNest device. */
59872
+ handover_method: string | null
59873
+ /** KeyNest app user for a KeyNest device. */
59874
+ keynest_app_user: string | null
59875
+ /** Default office ID for a KeyNest device. */
59876
+ default_office_id: number
59877
+ /** Fob ID for a KeyNest device. */
59878
+ fob_id: number
59879
+ /** Whether the KeyNest device has a photo. */
59880
+ has_photo: boolean
59881
+ }
59882
+ | undefined
59384
59883
  }) &
59385
59884
  ({
59386
59885
  /** */
@@ -65560,6 +66059,51 @@ export interface Routes {
65560
66059
  product_type: string
65561
66060
  }
65562
66061
  | undefined
66062
+ /** Metadata for a KeyNest device. */
66063
+ keynest_metadata?:
66064
+ | {
66065
+ /** Key ID for a KeyNest device. */
66066
+ key_id: string
66067
+ /** Device name for a KeyNest device. */
66068
+ device_name: string
66069
+ /** Property ID for a KeyNest device. */
66070
+ property_id: string | null
66071
+ /** Property postcode for a KeyNest device. */
66072
+ property_postcode: string | null
66073
+ /** Key notes for a KeyNest device. */
66074
+ key_notes: string | null
66075
+ /** Subscription plan for a KeyNest device. */
66076
+ subscription_plan: string
66077
+ /** Status type for a KeyNest device. */
66078
+ status_type: string
66079
+ /** Current or last store ID for a KeyNest device. */
66080
+ current_or_last_store_id: number
66081
+ /** Last movement timestamp for a KeyNest device. */
66082
+ last_movement: string
66083
+ /** Address for a KeyNest device. */
66084
+ address: string | null
66085
+ /** Current status for a KeyNest device. */
66086
+ current_status: string | null
66087
+ /** Current user name for a KeyNest device. */
66088
+ current_user_name: string | null
66089
+ /** Current user email for a KeyNest device. */
66090
+ current_user_email: string | null
66091
+ /** Current user phone number for a KeyNest device. */
66092
+ current_user_phone_number: string | null
66093
+ /** Current user company for a KeyNest device. */
66094
+ current_user_company: string | null
66095
+ /** Handover method for a KeyNest device. */
66096
+ handover_method: string | null
66097
+ /** KeyNest app user for a KeyNest device. */
66098
+ keynest_app_user: string | null
66099
+ /** Default office ID for a KeyNest device. */
66100
+ default_office_id: number
66101
+ /** Fob ID for a KeyNest device. */
66102
+ fob_id: number
66103
+ /** Whether the KeyNest device has a photo. */
66104
+ has_photo: boolean
66105
+ }
66106
+ | undefined
65563
66107
  }) &
65564
66108
  ({
65565
66109
  /** */
@@ -70012,6 +70556,51 @@ export interface Routes {
70012
70556
  product_type: string
70013
70557
  }
70014
70558
  | undefined
70559
+ /** Metadata for a KeyNest device. */
70560
+ keynest_metadata?:
70561
+ | {
70562
+ /** Key ID for a KeyNest device. */
70563
+ key_id: string
70564
+ /** Device name for a KeyNest device. */
70565
+ device_name: string
70566
+ /** Property ID for a KeyNest device. */
70567
+ property_id: string | null
70568
+ /** Property postcode for a KeyNest device. */
70569
+ property_postcode: string | null
70570
+ /** Key notes for a KeyNest device. */
70571
+ key_notes: string | null
70572
+ /** Subscription plan for a KeyNest device. */
70573
+ subscription_plan: string
70574
+ /** Status type for a KeyNest device. */
70575
+ status_type: string
70576
+ /** Current or last store ID for a KeyNest device. */
70577
+ current_or_last_store_id: number
70578
+ /** Last movement timestamp for a KeyNest device. */
70579
+ last_movement: string
70580
+ /** Address for a KeyNest device. */
70581
+ address: string | null
70582
+ /** Current status for a KeyNest device. */
70583
+ current_status: string | null
70584
+ /** Current user name for a KeyNest device. */
70585
+ current_user_name: string | null
70586
+ /** Current user email for a KeyNest device. */
70587
+ current_user_email: string | null
70588
+ /** Current user phone number for a KeyNest device. */
70589
+ current_user_phone_number: string | null
70590
+ /** Current user company for a KeyNest device. */
70591
+ current_user_company: string | null
70592
+ /** Handover method for a KeyNest device. */
70593
+ handover_method: string | null
70594
+ /** KeyNest app user for a KeyNest device. */
70595
+ keynest_app_user: string | null
70596
+ /** Default office ID for a KeyNest device. */
70597
+ default_office_id: number
70598
+ /** Fob ID for a KeyNest device. */
70599
+ fob_id: number
70600
+ /** Whether the KeyNest device has a photo. */
70601
+ has_photo: boolean
70602
+ }
70603
+ | undefined
70015
70604
  }) &
70016
70605
  ({
70017
70606
  /** */
@@ -71464,6 +72053,51 @@ export interface Routes {
71464
72053
  product_type: string
71465
72054
  }
71466
72055
  | undefined
72056
+ /** Metadata for a KeyNest device. */
72057
+ keynest_metadata?:
72058
+ | {
72059
+ /** Key ID for a KeyNest device. */
72060
+ key_id: string
72061
+ /** Device name for a KeyNest device. */
72062
+ device_name: string
72063
+ /** Property ID for a KeyNest device. */
72064
+ property_id: string | null
72065
+ /** Property postcode for a KeyNest device. */
72066
+ property_postcode: string | null
72067
+ /** Key notes for a KeyNest device. */
72068
+ key_notes: string | null
72069
+ /** Subscription plan for a KeyNest device. */
72070
+ subscription_plan: string
72071
+ /** Status type for a KeyNest device. */
72072
+ status_type: string
72073
+ /** Current or last store ID for a KeyNest device. */
72074
+ current_or_last_store_id: number
72075
+ /** Last movement timestamp for a KeyNest device. */
72076
+ last_movement: string
72077
+ /** Address for a KeyNest device. */
72078
+ address: string | null
72079
+ /** Current status for a KeyNest device. */
72080
+ current_status: string | null
72081
+ /** Current user name for a KeyNest device. */
72082
+ current_user_name: string | null
72083
+ /** Current user email for a KeyNest device. */
72084
+ current_user_email: string | null
72085
+ /** Current user phone number for a KeyNest device. */
72086
+ current_user_phone_number: string | null
72087
+ /** Current user company for a KeyNest device. */
72088
+ current_user_company: string | null
72089
+ /** Handover method for a KeyNest device. */
72090
+ handover_method: string | null
72091
+ /** KeyNest app user for a KeyNest device. */
72092
+ keynest_app_user: string | null
72093
+ /** Default office ID for a KeyNest device. */
72094
+ default_office_id: number
72095
+ /** Fob ID for a KeyNest device. */
72096
+ fob_id: number
72097
+ /** Whether the KeyNest device has a photo. */
72098
+ has_photo: boolean
72099
+ }
72100
+ | undefined
71467
72101
  }) &
71468
72102
  ({
71469
72103
  /** */
@@ -80167,6 +80801,51 @@ export interface Routes {
80167
80801
  product_type: string
80168
80802
  }
80169
80803
  | undefined
80804
+ /** Metadata for a KeyNest device. */
80805
+ keynest_metadata?:
80806
+ | {
80807
+ /** Key ID for a KeyNest device. */
80808
+ key_id: string
80809
+ /** Device name for a KeyNest device. */
80810
+ device_name: string
80811
+ /** Property ID for a KeyNest device. */
80812
+ property_id: string | null
80813
+ /** Property postcode for a KeyNest device. */
80814
+ property_postcode: string | null
80815
+ /** Key notes for a KeyNest device. */
80816
+ key_notes: string | null
80817
+ /** Subscription plan for a KeyNest device. */
80818
+ subscription_plan: string
80819
+ /** Status type for a KeyNest device. */
80820
+ status_type: string
80821
+ /** Current or last store ID for a KeyNest device. */
80822
+ current_or_last_store_id: number
80823
+ /** Last movement timestamp for a KeyNest device. */
80824
+ last_movement: string
80825
+ /** Address for a KeyNest device. */
80826
+ address: string | null
80827
+ /** Current status for a KeyNest device. */
80828
+ current_status: string | null
80829
+ /** Current user name for a KeyNest device. */
80830
+ current_user_name: string | null
80831
+ /** Current user email for a KeyNest device. */
80832
+ current_user_email: string | null
80833
+ /** Current user phone number for a KeyNest device. */
80834
+ current_user_phone_number: string | null
80835
+ /** Current user company for a KeyNest device. */
80836
+ current_user_company: string | null
80837
+ /** Handover method for a KeyNest device. */
80838
+ handover_method: string | null
80839
+ /** KeyNest app user for a KeyNest device. */
80840
+ keynest_app_user: string | null
80841
+ /** Default office ID for a KeyNest device. */
80842
+ default_office_id: number
80843
+ /** Fob ID for a KeyNest device. */
80844
+ fob_id: number
80845
+ /** Whether the KeyNest device has a photo. */
80846
+ has_photo: boolean
80847
+ }
80848
+ | undefined
80170
80849
  }) &
80171
80850
  ({
80172
80851
  /** */
@@ -81621,6 +82300,51 @@ export interface Routes {
81621
82300
  product_type: string
81622
82301
  }
81623
82302
  | undefined
82303
+ /** Metadata for a KeyNest device. */
82304
+ keynest_metadata?:
82305
+ | {
82306
+ /** Key ID for a KeyNest device. */
82307
+ key_id: string
82308
+ /** Device name for a KeyNest device. */
82309
+ device_name: string
82310
+ /** Property ID for a KeyNest device. */
82311
+ property_id: string | null
82312
+ /** Property postcode for a KeyNest device. */
82313
+ property_postcode: string | null
82314
+ /** Key notes for a KeyNest device. */
82315
+ key_notes: string | null
82316
+ /** Subscription plan for a KeyNest device. */
82317
+ subscription_plan: string
82318
+ /** Status type for a KeyNest device. */
82319
+ status_type: string
82320
+ /** Current or last store ID for a KeyNest device. */
82321
+ current_or_last_store_id: number
82322
+ /** Last movement timestamp for a KeyNest device. */
82323
+ last_movement: string
82324
+ /** Address for a KeyNest device. */
82325
+ address: string | null
82326
+ /** Current status for a KeyNest device. */
82327
+ current_status: string | null
82328
+ /** Current user name for a KeyNest device. */
82329
+ current_user_name: string | null
82330
+ /** Current user email for a KeyNest device. */
82331
+ current_user_email: string | null
82332
+ /** Current user phone number for a KeyNest device. */
82333
+ current_user_phone_number: string | null
82334
+ /** Current user company for a KeyNest device. */
82335
+ current_user_company: string | null
82336
+ /** Handover method for a KeyNest device. */
82337
+ handover_method: string | null
82338
+ /** KeyNest app user for a KeyNest device. */
82339
+ keynest_app_user: string | null
82340
+ /** Default office ID for a KeyNest device. */
82341
+ default_office_id: number
82342
+ /** Fob ID for a KeyNest device. */
82343
+ fob_id: number
82344
+ /** Whether the KeyNest device has a photo. */
82345
+ has_photo: boolean
82346
+ }
82347
+ | undefined
81624
82348
  }) &
81625
82349
  ({
81626
82350
  /** */
@@ -83836,6 +84560,51 @@ export interface Routes {
83836
84560
  product_type: string
83837
84561
  }
83838
84562
  | undefined
84563
+ /** Metadata for a KeyNest device. */
84564
+ keynest_metadata?:
84565
+ | {
84566
+ /** Key ID for a KeyNest device. */
84567
+ key_id: string
84568
+ /** Device name for a KeyNest device. */
84569
+ device_name: string
84570
+ /** Property ID for a KeyNest device. */
84571
+ property_id: string | null
84572
+ /** Property postcode for a KeyNest device. */
84573
+ property_postcode: string | null
84574
+ /** Key notes for a KeyNest device. */
84575
+ key_notes: string | null
84576
+ /** Subscription plan for a KeyNest device. */
84577
+ subscription_plan: string
84578
+ /** Status type for a KeyNest device. */
84579
+ status_type: string
84580
+ /** Current or last store ID for a KeyNest device. */
84581
+ current_or_last_store_id: number
84582
+ /** Last movement timestamp for a KeyNest device. */
84583
+ last_movement: string
84584
+ /** Address for a KeyNest device. */
84585
+ address: string | null
84586
+ /** Current status for a KeyNest device. */
84587
+ current_status: string | null
84588
+ /** Current user name for a KeyNest device. */
84589
+ current_user_name: string | null
84590
+ /** Current user email for a KeyNest device. */
84591
+ current_user_email: string | null
84592
+ /** Current user phone number for a KeyNest device. */
84593
+ current_user_phone_number: string | null
84594
+ /** Current user company for a KeyNest device. */
84595
+ current_user_company: string | null
84596
+ /** Handover method for a KeyNest device. */
84597
+ handover_method: string | null
84598
+ /** KeyNest app user for a KeyNest device. */
84599
+ keynest_app_user: string | null
84600
+ /** Default office ID for a KeyNest device. */
84601
+ default_office_id: number
84602
+ /** Fob ID for a KeyNest device. */
84603
+ fob_id: number
84604
+ /** Whether the KeyNest device has a photo. */
84605
+ has_photo: boolean
84606
+ }
84607
+ | undefined
83839
84608
  }) &
83840
84609
  ({
83841
84610
  /** */