@seamapi/types 1.500.0 → 1.502.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 (44) hide show
  1. package/dist/connect.cjs +46 -151
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +226 -1371
  4. package/dist/index.cjs +46 -151
  5. package/dist/index.cjs.map +1 -1
  6. package/dist/index.d.cts +1 -1
  7. package/lib/seam/connect/model-types.d.ts +1 -1
  8. package/lib/seam/connect/models/acs/acs-credential.d.ts +8 -8
  9. package/lib/seam/connect/models/acs/metadata/assa-abloy-vostio.d.ts +2 -2
  10. package/lib/seam/connect/models/action-attempts/action-attempt.d.ts +28 -28
  11. package/lib/seam/connect/models/action-attempts/encode-credential.d.ts +12 -12
  12. package/lib/seam/connect/models/action-attempts/scan-credential.d.ts +16 -16
  13. package/lib/seam/connect/models/batch.d.ts +249 -1208
  14. package/lib/seam/connect/models/batch.js +3 -0
  15. package/lib/seam/connect/models/batch.js.map +1 -1
  16. package/lib/seam/connect/models/{customization_profiles/customization_profile.js → customization-profiles/customization-profile.js} +1 -1
  17. package/lib/seam/connect/models/{customization_profiles/customization_profile.js.map → customization-profiles/customization-profile.js.map} +1 -1
  18. package/lib/seam/connect/models/customization-profiles/index.d.ts +1 -0
  19. package/lib/seam/connect/models/customization-profiles/index.js +2 -0
  20. package/lib/seam/connect/models/customization-profiles/index.js.map +1 -0
  21. package/lib/seam/connect/models/devices/device-metadata.d.ts +5 -100
  22. package/lib/seam/connect/models/devices/device-metadata.js +1 -62
  23. package/lib/seam/connect/models/devices/device-metadata.js.map +1 -1
  24. package/lib/seam/connect/models/devices/device.d.ts +7 -140
  25. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -100
  26. package/lib/seam/connect/models/index.d.ts +1 -1
  27. package/lib/seam/connect/models/index.js +1 -1
  28. package/lib/seam/connect/models/index.js.map +1 -1
  29. package/lib/seam/connect/models/instant-keys/instant-key.d.ts +4 -4
  30. package/lib/seam/connect/models/phones/phone-session.d.ts +14 -14
  31. package/lib/seam/connect/openapi.d.ts +24 -91
  32. package/lib/seam/connect/openapi.js +24 -112
  33. package/lib/seam/connect/openapi.js.map +1 -1
  34. package/lib/seam/connect/route-types.d.ts +35 -663
  35. package/package.json +1 -1
  36. package/src/lib/seam/connect/model-types.ts +1 -0
  37. package/src/lib/seam/connect/models/batch.ts +3 -0
  38. package/src/lib/seam/connect/models/customization-profiles/index.ts +1 -0
  39. package/src/lib/seam/connect/models/devices/device-metadata.ts +1 -62
  40. package/src/lib/seam/connect/models/index.ts +1 -1
  41. package/src/lib/seam/connect/openapi.ts +24 -124
  42. package/src/lib/seam/connect/route-types.ts +39 -663
  43. package/lib/seam/connect/models/{customization_profiles/customization_profile.d.ts → customization-profiles/customization-profile.d.ts} +2 -2
  44. /package/src/lib/seam/connect/models/{customization_profiles/customization_profile.ts → customization-profiles/customization-profile.ts} +0 -0
@@ -12059,46 +12059,8 @@ export type Routes = {
12059
12059
  /** Metadata for a KeyNest device. */
12060
12060
  keynest_metadata?:
12061
12061
  | {
12062
- /** Key ID for a KeyNest device. */
12063
- key_id: string
12064
12062
  /** Device name for a KeyNest device. */
12065
- device_name: string
12066
- /** Property ID for a KeyNest device. */
12067
- property_id: string | null
12068
- /** Property postcode for a KeyNest device. */
12069
- property_postcode: string | null
12070
- /** Key notes for a KeyNest device. */
12071
- key_notes: string | null
12072
- /** Subscription plan for a KeyNest device. */
12073
- subscription_plan: string
12074
- /** Status type for a KeyNest device. */
12075
- status_type: string
12076
- /** Current or last store ID for a KeyNest device. */
12077
- current_or_last_store_id: number
12078
- /** Last movement timestamp for a KeyNest device. */
12079
- last_movement: string
12080
- /** Address for a KeyNest device. */
12081
- address: string | null
12082
- /** Current status for a KeyNest device. */
12083
- current_status: string | null
12084
- /** Current user name for a KeyNest device. */
12085
- current_user_name: string | null
12086
- /** Current user email for a KeyNest device. */
12087
- current_user_email: string | null
12088
- /** Current user phone number for a KeyNest device. */
12089
- current_user_phone_number: string | null
12090
- /** Current user company for a KeyNest device. */
12091
- current_user_company: string | null
12092
- /** Handover method for a KeyNest device. */
12093
- handover_method: string | null
12094
- /** KeyNest app user for a KeyNest device. */
12095
- keynest_app_user: string | null
12096
- /** Default office ID for a KeyNest device. */
12097
- default_office_id: number
12098
- /** Fob ID for a KeyNest device. */
12099
- fob_id: number
12100
- /** Whether the KeyNest device has a photo. */
12101
- has_photo: boolean
12063
+ device_name?: string | undefined
12102
12064
  }
12103
12065
  | undefined
12104
12066
  }) &
@@ -15838,46 +15800,8 @@ export type Routes = {
15838
15800
  /** Metadata for a KeyNest device. */
15839
15801
  keynest_metadata?:
15840
15802
  | {
15841
- /** Key ID for a KeyNest device. */
15842
- key_id: string
15843
15803
  /** Device name for a KeyNest device. */
15844
- device_name: string
15845
- /** Property ID for a KeyNest device. */
15846
- property_id: string | null
15847
- /** Property postcode for a KeyNest device. */
15848
- property_postcode: string | null
15849
- /** Key notes for a KeyNest device. */
15850
- key_notes: string | null
15851
- /** Subscription plan for a KeyNest device. */
15852
- subscription_plan: string
15853
- /** Status type for a KeyNest device. */
15854
- status_type: string
15855
- /** Current or last store ID for a KeyNest device. */
15856
- current_or_last_store_id: number
15857
- /** Last movement timestamp for a KeyNest device. */
15858
- last_movement: string
15859
- /** Address for a KeyNest device. */
15860
- address: string | null
15861
- /** Current status for a KeyNest device. */
15862
- current_status: string | null
15863
- /** Current user name for a KeyNest device. */
15864
- current_user_name: string | null
15865
- /** Current user email for a KeyNest device. */
15866
- current_user_email: string | null
15867
- /** Current user phone number for a KeyNest device. */
15868
- current_user_phone_number: string | null
15869
- /** Current user company for a KeyNest device. */
15870
- current_user_company: string | null
15871
- /** Handover method for a KeyNest device. */
15872
- handover_method: string | null
15873
- /** KeyNest app user for a KeyNest device. */
15874
- keynest_app_user: string | null
15875
- /** Default office ID for a KeyNest device. */
15876
- default_office_id: number
15877
- /** Fob ID for a KeyNest device. */
15878
- fob_id: number
15879
- /** Whether the KeyNest device has a photo. */
15880
- has_photo: boolean
15804
+ device_name?: string | undefined
15881
15805
  }
15882
15806
  | undefined
15883
15807
  }) &
@@ -23382,6 +23306,17 @@ export type Routes = {
23382
23306
  noise_threshold_decibels: number
23383
23307
  }[]
23384
23308
  | undefined
23309
+ customization_profiles?:
23310
+ | {
23311
+ workspace_id: string
23312
+ name: string | null
23313
+ customization_profile_id: string
23314
+ created_at: string
23315
+ logo_url?: string | undefined
23316
+ primary_color?: string | undefined
23317
+ secondary_color?: string | undefined
23318
+ }[]
23319
+ | undefined
23385
23320
  }
23386
23321
  }
23387
23322
  }
@@ -37159,46 +37094,8 @@ export type Routes = {
37159
37094
  /** Metadata for a KeyNest device. */
37160
37095
  keynest_metadata?:
37161
37096
  | {
37162
- /** Key ID for a KeyNest device. */
37163
- key_id: string
37164
37097
  /** Device name for a KeyNest device. */
37165
- device_name: string
37166
- /** Property ID for a KeyNest device. */
37167
- property_id: string | null
37168
- /** Property postcode for a KeyNest device. */
37169
- property_postcode: string | null
37170
- /** Key notes for a KeyNest device. */
37171
- key_notes: string | null
37172
- /** Subscription plan for a KeyNest device. */
37173
- subscription_plan: string
37174
- /** Status type for a KeyNest device. */
37175
- status_type: string
37176
- /** Current or last store ID for a KeyNest device. */
37177
- current_or_last_store_id: number
37178
- /** Last movement timestamp for a KeyNest device. */
37179
- last_movement: string
37180
- /** Address for a KeyNest device. */
37181
- address: string | null
37182
- /** Current status for a KeyNest device. */
37183
- current_status: string | null
37184
- /** Current user name for a KeyNest device. */
37185
- current_user_name: string | null
37186
- /** Current user email for a KeyNest device. */
37187
- current_user_email: string | null
37188
- /** Current user phone number for a KeyNest device. */
37189
- current_user_phone_number: string | null
37190
- /** Current user company for a KeyNest device. */
37191
- current_user_company: string | null
37192
- /** Handover method for a KeyNest device. */
37193
- handover_method: string | null
37194
- /** KeyNest app user for a KeyNest device. */
37195
- keynest_app_user: string | null
37196
- /** Default office ID for a KeyNest device. */
37197
- default_office_id: number
37198
- /** Fob ID for a KeyNest device. */
37199
- fob_id: number
37200
- /** Whether the KeyNest device has a photo. */
37201
- has_photo: boolean
37098
+ device_name?: string | undefined
37202
37099
  }
37203
37100
  | undefined
37204
37101
  }) &
@@ -38883,46 +38780,8 @@ export type Routes = {
38883
38780
  /** Metadata for a KeyNest device. */
38884
38781
  keynest_metadata?:
38885
38782
  | {
38886
- /** Key ID for a KeyNest device. */
38887
- key_id: string
38888
38783
  /** Device name for a KeyNest device. */
38889
- device_name: string
38890
- /** Property ID for a KeyNest device. */
38891
- property_id: string | null
38892
- /** Property postcode for a KeyNest device. */
38893
- property_postcode: string | null
38894
- /** Key notes for a KeyNest device. */
38895
- key_notes: string | null
38896
- /** Subscription plan for a KeyNest device. */
38897
- subscription_plan: string
38898
- /** Status type for a KeyNest device. */
38899
- status_type: string
38900
- /** Current or last store ID for a KeyNest device. */
38901
- current_or_last_store_id: number
38902
- /** Last movement timestamp for a KeyNest device. */
38903
- last_movement: string
38904
- /** Address for a KeyNest device. */
38905
- address: string | null
38906
- /** Current status for a KeyNest device. */
38907
- current_status: string | null
38908
- /** Current user name for a KeyNest device. */
38909
- current_user_name: string | null
38910
- /** Current user email for a KeyNest device. */
38911
- current_user_email: string | null
38912
- /** Current user phone number for a KeyNest device. */
38913
- current_user_phone_number: string | null
38914
- /** Current user company for a KeyNest device. */
38915
- current_user_company: string | null
38916
- /** Handover method for a KeyNest device. */
38917
- handover_method: string | null
38918
- /** KeyNest app user for a KeyNest device. */
38919
- keynest_app_user: string | null
38920
- /** Default office ID for a KeyNest device. */
38921
- default_office_id: number
38922
- /** Fob ID for a KeyNest device. */
38923
- fob_id: number
38924
- /** Whether the KeyNest device has a photo. */
38925
- has_photo: boolean
38784
+ device_name?: string | undefined
38926
38785
  }
38927
38786
  | undefined
38928
38787
  }) &
@@ -46458,46 +46317,8 @@ export type Routes = {
46458
46317
  /** Metadata for a KeyNest device. */
46459
46318
  keynest_metadata?:
46460
46319
  | {
46461
- /** Key ID for a KeyNest device. */
46462
- key_id: string
46463
46320
  /** Device name for a KeyNest device. */
46464
- device_name: string
46465
- /** Property ID for a KeyNest device. */
46466
- property_id: string | null
46467
- /** Property postcode for a KeyNest device. */
46468
- property_postcode: string | null
46469
- /** Key notes for a KeyNest device. */
46470
- key_notes: string | null
46471
- /** Subscription plan for a KeyNest device. */
46472
- subscription_plan: string
46473
- /** Status type for a KeyNest device. */
46474
- status_type: string
46475
- /** Current or last store ID for a KeyNest device. */
46476
- current_or_last_store_id: number
46477
- /** Last movement timestamp for a KeyNest device. */
46478
- last_movement: string
46479
- /** Address for a KeyNest device. */
46480
- address: string | null
46481
- /** Current status for a KeyNest device. */
46482
- current_status: string | null
46483
- /** Current user name for a KeyNest device. */
46484
- current_user_name: string | null
46485
- /** Current user email for a KeyNest device. */
46486
- current_user_email: string | null
46487
- /** Current user phone number for a KeyNest device. */
46488
- current_user_phone_number: string | null
46489
- /** Current user company for a KeyNest device. */
46490
- current_user_company: string | null
46491
- /** Handover method for a KeyNest device. */
46492
- handover_method: string | null
46493
- /** KeyNest app user for a KeyNest device. */
46494
- keynest_app_user: string | null
46495
- /** Default office ID for a KeyNest device. */
46496
- default_office_id: number
46497
- /** Fob ID for a KeyNest device. */
46498
- fob_id: number
46499
- /** Whether the KeyNest device has a photo. */
46500
- has_photo: boolean
46321
+ device_name?: string | undefined
46501
46322
  }
46502
46323
  | undefined
46503
46324
  }) &
@@ -47967,46 +47788,8 @@ export type Routes = {
47967
47788
  /** Metadata for a KeyNest device. */
47968
47789
  keynest_metadata?:
47969
47790
  | {
47970
- /** Key ID for a KeyNest device. */
47971
- key_id: string
47972
47791
  /** Device name for a KeyNest device. */
47973
- device_name: string
47974
- /** Property ID for a KeyNest device. */
47975
- property_id: string | null
47976
- /** Property postcode for a KeyNest device. */
47977
- property_postcode: string | null
47978
- /** Key notes for a KeyNest device. */
47979
- key_notes: string | null
47980
- /** Subscription plan for a KeyNest device. */
47981
- subscription_plan: string
47982
- /** Status type for a KeyNest device. */
47983
- status_type: string
47984
- /** Current or last store ID for a KeyNest device. */
47985
- current_or_last_store_id: number
47986
- /** Last movement timestamp for a KeyNest device. */
47987
- last_movement: string
47988
- /** Address for a KeyNest device. */
47989
- address: string | null
47990
- /** Current status for a KeyNest device. */
47991
- current_status: string | null
47992
- /** Current user name for a KeyNest device. */
47993
- current_user_name: string | null
47994
- /** Current user email for a KeyNest device. */
47995
- current_user_email: string | null
47996
- /** Current user phone number for a KeyNest device. */
47997
- current_user_phone_number: string | null
47998
- /** Current user company for a KeyNest device. */
47999
- current_user_company: string | null
48000
- /** Handover method for a KeyNest device. */
48001
- handover_method: string | null
48002
- /** KeyNest app user for a KeyNest device. */
48003
- keynest_app_user: string | null
48004
- /** Default office ID for a KeyNest device. */
48005
- default_office_id: number
48006
- /** Fob ID for a KeyNest device. */
48007
- fob_id: number
48008
- /** Whether the KeyNest device has a photo. */
48009
- has_photo: boolean
47792
+ device_name?: string | undefined
48010
47793
  }
48011
47794
  | undefined
48012
47795
  }) &
@@ -49655,46 +49438,8 @@ export type Routes = {
49655
49438
  /** Metadata for a KeyNest device. */
49656
49439
  keynest_metadata?:
49657
49440
  | {
49658
- /** Key ID for a KeyNest device. */
49659
- key_id: string
49660
49441
  /** Device name for a KeyNest device. */
49661
- device_name: string
49662
- /** Property ID for a KeyNest device. */
49663
- property_id: string | null
49664
- /** Property postcode for a KeyNest device. */
49665
- property_postcode: string | null
49666
- /** Key notes for a KeyNest device. */
49667
- key_notes: string | null
49668
- /** Subscription plan for a KeyNest device. */
49669
- subscription_plan: string
49670
- /** Status type for a KeyNest device. */
49671
- status_type: string
49672
- /** Current or last store ID for a KeyNest device. */
49673
- current_or_last_store_id: number
49674
- /** Last movement timestamp for a KeyNest device. */
49675
- last_movement: string
49676
- /** Address for a KeyNest device. */
49677
- address: string | null
49678
- /** Current status for a KeyNest device. */
49679
- current_status: string | null
49680
- /** Current user name for a KeyNest device. */
49681
- current_user_name: string | null
49682
- /** Current user email for a KeyNest device. */
49683
- current_user_email: string | null
49684
- /** Current user phone number for a KeyNest device. */
49685
- current_user_phone_number: string | null
49686
- /** Current user company for a KeyNest device. */
49687
- current_user_company: string | null
49688
- /** Handover method for a KeyNest device. */
49689
- handover_method: string | null
49690
- /** KeyNest app user for a KeyNest device. */
49691
- keynest_app_user: string | null
49692
- /** Default office ID for a KeyNest device. */
49693
- default_office_id: number
49694
- /** Fob ID for a KeyNest device. */
49695
- fob_id: number
49696
- /** Whether the KeyNest device has a photo. */
49697
- has_photo: boolean
49442
+ device_name?: string | undefined
49698
49443
  }
49699
49444
  | undefined
49700
49445
  }) &
@@ -51163,46 +50908,8 @@ export type Routes = {
51163
50908
  /** Metadata for a KeyNest device. */
51164
50909
  keynest_metadata?:
51165
50910
  | {
51166
- /** Key ID for a KeyNest device. */
51167
- key_id: string
51168
50911
  /** Device name for a KeyNest device. */
51169
- device_name: string
51170
- /** Property ID for a KeyNest device. */
51171
- property_id: string | null
51172
- /** Property postcode for a KeyNest device. */
51173
- property_postcode: string | null
51174
- /** Key notes for a KeyNest device. */
51175
- key_notes: string | null
51176
- /** Subscription plan for a KeyNest device. */
51177
- subscription_plan: string
51178
- /** Status type for a KeyNest device. */
51179
- status_type: string
51180
- /** Current or last store ID for a KeyNest device. */
51181
- current_or_last_store_id: number
51182
- /** Last movement timestamp for a KeyNest device. */
51183
- last_movement: string
51184
- /** Address for a KeyNest device. */
51185
- address: string | null
51186
- /** Current status for a KeyNest device. */
51187
- current_status: string | null
51188
- /** Current user name for a KeyNest device. */
51189
- current_user_name: string | null
51190
- /** Current user email for a KeyNest device. */
51191
- current_user_email: string | null
51192
- /** Current user phone number for a KeyNest device. */
51193
- current_user_phone_number: string | null
51194
- /** Current user company for a KeyNest device. */
51195
- current_user_company: string | null
51196
- /** Handover method for a KeyNest device. */
51197
- handover_method: string | null
51198
- /** KeyNest app user for a KeyNest device. */
51199
- keynest_app_user: string | null
51200
- /** Default office ID for a KeyNest device. */
51201
- default_office_id: number
51202
- /** Fob ID for a KeyNest device. */
51203
- fob_id: number
51204
- /** Whether the KeyNest device has a photo. */
51205
- has_photo: boolean
50912
+ device_name?: string | undefined
51206
50913
  }
51207
50914
  | undefined
51208
50915
  }) &
@@ -58522,46 +58229,8 @@ export type Routes = {
58522
58229
  /** Metadata for a KeyNest device. */
58523
58230
  keynest_metadata?:
58524
58231
  | {
58525
- /** Key ID for a KeyNest device. */
58526
- key_id: string
58527
58232
  /** Device name for a KeyNest device. */
58528
- device_name: string
58529
- /** Property ID for a KeyNest device. */
58530
- property_id: string | null
58531
- /** Property postcode for a KeyNest device. */
58532
- property_postcode: string | null
58533
- /** Key notes for a KeyNest device. */
58534
- key_notes: string | null
58535
- /** Subscription plan for a KeyNest device. */
58536
- subscription_plan: string
58537
- /** Status type for a KeyNest device. */
58538
- status_type: string
58539
- /** Current or last store ID for a KeyNest device. */
58540
- current_or_last_store_id: number
58541
- /** Last movement timestamp for a KeyNest device. */
58542
- last_movement: string
58543
- /** Address for a KeyNest device. */
58544
- address: string | null
58545
- /** Current status for a KeyNest device. */
58546
- current_status: string | null
58547
- /** Current user name for a KeyNest device. */
58548
- current_user_name: string | null
58549
- /** Current user email for a KeyNest device. */
58550
- current_user_email: string | null
58551
- /** Current user phone number for a KeyNest device. */
58552
- current_user_phone_number: string | null
58553
- /** Current user company for a KeyNest device. */
58554
- current_user_company: string | null
58555
- /** Handover method for a KeyNest device. */
58556
- handover_method: string | null
58557
- /** KeyNest app user for a KeyNest device. */
58558
- keynest_app_user: string | null
58559
- /** Default office ID for a KeyNest device. */
58560
- default_office_id: number
58561
- /** Fob ID for a KeyNest device. */
58562
- fob_id: number
58563
- /** Whether the KeyNest device has a photo. */
58564
- has_photo: boolean
58233
+ device_name?: string | undefined
58565
58234
  }
58566
58235
  | undefined
58567
58236
  }) &
@@ -60030,46 +59699,8 @@ export type Routes = {
60030
59699
  /** Metadata for a KeyNest device. */
60031
59700
  keynest_metadata?:
60032
59701
  | {
60033
- /** Key ID for a KeyNest device. */
60034
- key_id: string
60035
59702
  /** Device name for a KeyNest device. */
60036
- device_name: string
60037
- /** Property ID for a KeyNest device. */
60038
- property_id: string | null
60039
- /** Property postcode for a KeyNest device. */
60040
- property_postcode: string | null
60041
- /** Key notes for a KeyNest device. */
60042
- key_notes: string | null
60043
- /** Subscription plan for a KeyNest device. */
60044
- subscription_plan: string
60045
- /** Status type for a KeyNest device. */
60046
- status_type: string
60047
- /** Current or last store ID for a KeyNest device. */
60048
- current_or_last_store_id: number
60049
- /** Last movement timestamp for a KeyNest device. */
60050
- last_movement: string
60051
- /** Address for a KeyNest device. */
60052
- address: string | null
60053
- /** Current status for a KeyNest device. */
60054
- current_status: string | null
60055
- /** Current user name for a KeyNest device. */
60056
- current_user_name: string | null
60057
- /** Current user email for a KeyNest device. */
60058
- current_user_email: string | null
60059
- /** Current user phone number for a KeyNest device. */
60060
- current_user_phone_number: string | null
60061
- /** Current user company for a KeyNest device. */
60062
- current_user_company: string | null
60063
- /** Handover method for a KeyNest device. */
60064
- handover_method: string | null
60065
- /** KeyNest app user for a KeyNest device. */
60066
- keynest_app_user: string | null
60067
- /** Default office ID for a KeyNest device. */
60068
- default_office_id: number
60069
- /** Fob ID for a KeyNest device. */
60070
- fob_id: number
60071
- /** Whether the KeyNest device has a photo. */
60072
- has_photo: boolean
59703
+ device_name?: string | undefined
60073
59704
  }
60074
59705
  | undefined
60075
59706
  }) &
@@ -69983,46 +69614,8 @@ export type Routes = {
69983
69614
  /** Metadata for a KeyNest device. */
69984
69615
  keynest_metadata?:
69985
69616
  | {
69986
- /** Key ID for a KeyNest device. */
69987
- key_id: string
69988
69617
  /** Device name for a KeyNest device. */
69989
- device_name: string
69990
- /** Property ID for a KeyNest device. */
69991
- property_id: string | null
69992
- /** Property postcode for a KeyNest device. */
69993
- property_postcode: string | null
69994
- /** Key notes for a KeyNest device. */
69995
- key_notes: string | null
69996
- /** Subscription plan for a KeyNest device. */
69997
- subscription_plan: string
69998
- /** Status type for a KeyNest device. */
69999
- status_type: string
70000
- /** Current or last store ID for a KeyNest device. */
70001
- current_or_last_store_id: number
70002
- /** Last movement timestamp for a KeyNest device. */
70003
- last_movement: string
70004
- /** Address for a KeyNest device. */
70005
- address: string | null
70006
- /** Current status for a KeyNest device. */
70007
- current_status: string | null
70008
- /** Current user name for a KeyNest device. */
70009
- current_user_name: string | null
70010
- /** Current user email for a KeyNest device. */
70011
- current_user_email: string | null
70012
- /** Current user phone number for a KeyNest device. */
70013
- current_user_phone_number: string | null
70014
- /** Current user company for a KeyNest device. */
70015
- current_user_company: string | null
70016
- /** Handover method for a KeyNest device. */
70017
- handover_method: string | null
70018
- /** KeyNest app user for a KeyNest device. */
70019
- keynest_app_user: string | null
70020
- /** Default office ID for a KeyNest device. */
70021
- default_office_id: number
70022
- /** Fob ID for a KeyNest device. */
70023
- fob_id: number
70024
- /** Whether the KeyNest device has a photo. */
70025
- has_photo: boolean
69618
+ device_name?: string | undefined
70026
69619
  }
70027
69620
  | undefined
70028
69621
  }) &
@@ -76537,46 +76130,8 @@ export type Routes = {
76537
76130
  /** Metadata for a KeyNest device. */
76538
76131
  keynest_metadata?:
76539
76132
  | {
76540
- /** Key ID for a KeyNest device. */
76541
- key_id: string
76542
76133
  /** Device name for a KeyNest device. */
76543
- device_name: string
76544
- /** Property ID for a KeyNest device. */
76545
- property_id: string | null
76546
- /** Property postcode for a KeyNest device. */
76547
- property_postcode: string | null
76548
- /** Key notes for a KeyNest device. */
76549
- key_notes: string | null
76550
- /** Subscription plan for a KeyNest device. */
76551
- subscription_plan: string
76552
- /** Status type for a KeyNest device. */
76553
- status_type: string
76554
- /** Current or last store ID for a KeyNest device. */
76555
- current_or_last_store_id: number
76556
- /** Last movement timestamp for a KeyNest device. */
76557
- last_movement: string
76558
- /** Address for a KeyNest device. */
76559
- address: string | null
76560
- /** Current status for a KeyNest device. */
76561
- current_status: string | null
76562
- /** Current user name for a KeyNest device. */
76563
- current_user_name: string | null
76564
- /** Current user email for a KeyNest device. */
76565
- current_user_email: string | null
76566
- /** Current user phone number for a KeyNest device. */
76567
- current_user_phone_number: string | null
76568
- /** Current user company for a KeyNest device. */
76569
- current_user_company: string | null
76570
- /** Handover method for a KeyNest device. */
76571
- handover_method: string | null
76572
- /** KeyNest app user for a KeyNest device. */
76573
- keynest_app_user: string | null
76574
- /** Default office ID for a KeyNest device. */
76575
- default_office_id: number
76576
- /** Fob ID for a KeyNest device. */
76577
- fob_id: number
76578
- /** Whether the KeyNest device has a photo. */
76579
- has_photo: boolean
76134
+ device_name?: string | undefined
76580
76135
  }
76581
76136
  | undefined
76582
76137
  }) &
@@ -81055,46 +80610,8 @@ export type Routes = {
81055
80610
  /** Metadata for a KeyNest device. */
81056
80611
  keynest_metadata?:
81057
80612
  | {
81058
- /** Key ID for a KeyNest device. */
81059
- key_id: string
81060
80613
  /** Device name for a KeyNest device. */
81061
- device_name: string
81062
- /** Property ID for a KeyNest device. */
81063
- property_id: string | null
81064
- /** Property postcode for a KeyNest device. */
81065
- property_postcode: string | null
81066
- /** Key notes for a KeyNest device. */
81067
- key_notes: string | null
81068
- /** Subscription plan for a KeyNest device. */
81069
- subscription_plan: string
81070
- /** Status type for a KeyNest device. */
81071
- status_type: string
81072
- /** Current or last store ID for a KeyNest device. */
81073
- current_or_last_store_id: number
81074
- /** Last movement timestamp for a KeyNest device. */
81075
- last_movement: string
81076
- /** Address for a KeyNest device. */
81077
- address: string | null
81078
- /** Current status for a KeyNest device. */
81079
- current_status: string | null
81080
- /** Current user name for a KeyNest device. */
81081
- current_user_name: string | null
81082
- /** Current user email for a KeyNest device. */
81083
- current_user_email: string | null
81084
- /** Current user phone number for a KeyNest device. */
81085
- current_user_phone_number: string | null
81086
- /** Current user company for a KeyNest device. */
81087
- current_user_company: string | null
81088
- /** Handover method for a KeyNest device. */
81089
- handover_method: string | null
81090
- /** KeyNest app user for a KeyNest device. */
81091
- keynest_app_user: string | null
81092
- /** Default office ID for a KeyNest device. */
81093
- default_office_id: number
81094
- /** Fob ID for a KeyNest device. */
81095
- fob_id: number
81096
- /** Whether the KeyNest device has a photo. */
81097
- has_photo: boolean
80614
+ device_name?: string | undefined
81098
80615
  }
81099
80616
  | undefined
81100
80617
  }) &
@@ -82563,46 +82080,8 @@ export type Routes = {
82563
82080
  /** Metadata for a KeyNest device. */
82564
82081
  keynest_metadata?:
82565
82082
  | {
82566
- /** Key ID for a KeyNest device. */
82567
- key_id: string
82568
82083
  /** Device name for a KeyNest device. */
82569
- device_name: string
82570
- /** Property ID for a KeyNest device. */
82571
- property_id: string | null
82572
- /** Property postcode for a KeyNest device. */
82573
- property_postcode: string | null
82574
- /** Key notes for a KeyNest device. */
82575
- key_notes: string | null
82576
- /** Subscription plan for a KeyNest device. */
82577
- subscription_plan: string
82578
- /** Status type for a KeyNest device. */
82579
- status_type: string
82580
- /** Current or last store ID for a KeyNest device. */
82581
- current_or_last_store_id: number
82582
- /** Last movement timestamp for a KeyNest device. */
82583
- last_movement: string
82584
- /** Address for a KeyNest device. */
82585
- address: string | null
82586
- /** Current status for a KeyNest device. */
82587
- current_status: string | null
82588
- /** Current user name for a KeyNest device. */
82589
- current_user_name: string | null
82590
- /** Current user email for a KeyNest device. */
82591
- current_user_email: string | null
82592
- /** Current user phone number for a KeyNest device. */
82593
- current_user_phone_number: string | null
82594
- /** Current user company for a KeyNest device. */
82595
- current_user_company: string | null
82596
- /** Handover method for a KeyNest device. */
82597
- handover_method: string | null
82598
- /** KeyNest app user for a KeyNest device. */
82599
- keynest_app_user: string | null
82600
- /** Default office ID for a KeyNest device. */
82601
- default_office_id: number
82602
- /** Fob ID for a KeyNest device. */
82603
- fob_id: number
82604
- /** Whether the KeyNest device has a photo. */
82605
- has_photo: boolean
82084
+ device_name?: string | undefined
82606
82085
  }
82607
82086
  | undefined
82608
82087
  }) &
@@ -90788,46 +90267,8 @@ export type Routes = {
90788
90267
  /** Metadata for a KeyNest device. */
90789
90268
  keynest_metadata?:
90790
90269
  | {
90791
- /** Key ID for a KeyNest device. */
90792
- key_id: string
90793
90270
  /** Device name for a KeyNest device. */
90794
- device_name: string
90795
- /** Property ID for a KeyNest device. */
90796
- property_id: string | null
90797
- /** Property postcode for a KeyNest device. */
90798
- property_postcode: string | null
90799
- /** Key notes for a KeyNest device. */
90800
- key_notes: string | null
90801
- /** Subscription plan for a KeyNest device. */
90802
- subscription_plan: string
90803
- /** Status type for a KeyNest device. */
90804
- status_type: string
90805
- /** Current or last store ID for a KeyNest device. */
90806
- current_or_last_store_id: number
90807
- /** Last movement timestamp for a KeyNest device. */
90808
- last_movement: string
90809
- /** Address for a KeyNest device. */
90810
- address: string | null
90811
- /** Current status for a KeyNest device. */
90812
- current_status: string | null
90813
- /** Current user name for a KeyNest device. */
90814
- current_user_name: string | null
90815
- /** Current user email for a KeyNest device. */
90816
- current_user_email: string | null
90817
- /** Current user phone number for a KeyNest device. */
90818
- current_user_phone_number: string | null
90819
- /** Current user company for a KeyNest device. */
90820
- current_user_company: string | null
90821
- /** Handover method for a KeyNest device. */
90822
- handover_method: string | null
90823
- /** KeyNest app user for a KeyNest device. */
90824
- keynest_app_user: string | null
90825
- /** Default office ID for a KeyNest device. */
90826
- default_office_id: number
90827
- /** Fob ID for a KeyNest device. */
90828
- fob_id: number
90829
- /** Whether the KeyNest device has a photo. */
90830
- has_photo: boolean
90271
+ device_name?: string | undefined
90831
90272
  }
90832
90273
  | undefined
90833
90274
  }) &
@@ -92298,46 +91739,8 @@ export type Routes = {
92298
91739
  /** Metadata for a KeyNest device. */
92299
91740
  keynest_metadata?:
92300
91741
  | {
92301
- /** Key ID for a KeyNest device. */
92302
- key_id: string
92303
91742
  /** Device name for a KeyNest device. */
92304
- device_name: string
92305
- /** Property ID for a KeyNest device. */
92306
- property_id: string | null
92307
- /** Property postcode for a KeyNest device. */
92308
- property_postcode: string | null
92309
- /** Key notes for a KeyNest device. */
92310
- key_notes: string | null
92311
- /** Subscription plan for a KeyNest device. */
92312
- subscription_plan: string
92313
- /** Status type for a KeyNest device. */
92314
- status_type: string
92315
- /** Current or last store ID for a KeyNest device. */
92316
- current_or_last_store_id: number
92317
- /** Last movement timestamp for a KeyNest device. */
92318
- last_movement: string
92319
- /** Address for a KeyNest device. */
92320
- address: string | null
92321
- /** Current status for a KeyNest device. */
92322
- current_status: string | null
92323
- /** Current user name for a KeyNest device. */
92324
- current_user_name: string | null
92325
- /** Current user email for a KeyNest device. */
92326
- current_user_email: string | null
92327
- /** Current user phone number for a KeyNest device. */
92328
- current_user_phone_number: string | null
92329
- /** Current user company for a KeyNest device. */
92330
- current_user_company: string | null
92331
- /** Handover method for a KeyNest device. */
92332
- handover_method: string | null
92333
- /** KeyNest app user for a KeyNest device. */
92334
- keynest_app_user: string | null
92335
- /** Default office ID for a KeyNest device. */
92336
- default_office_id: number
92337
- /** Fob ID for a KeyNest device. */
92338
- fob_id: number
92339
- /** Whether the KeyNest device has a photo. */
92340
- has_photo: boolean
91743
+ device_name?: string | undefined
92341
91744
  }
92342
91745
  | undefined
92343
91746
  }) &
@@ -94659,46 +94062,8 @@ export type Routes = {
94659
94062
  /** Metadata for a KeyNest device. */
94660
94063
  keynest_metadata?:
94661
94064
  | {
94662
- /** Key ID for a KeyNest device. */
94663
- key_id: string
94664
94065
  /** Device name for a KeyNest device. */
94665
- device_name: string
94666
- /** Property ID for a KeyNest device. */
94667
- property_id: string | null
94668
- /** Property postcode for a KeyNest device. */
94669
- property_postcode: string | null
94670
- /** Key notes for a KeyNest device. */
94671
- key_notes: string | null
94672
- /** Subscription plan for a KeyNest device. */
94673
- subscription_plan: string
94674
- /** Status type for a KeyNest device. */
94675
- status_type: string
94676
- /** Current or last store ID for a KeyNest device. */
94677
- current_or_last_store_id: number
94678
- /** Last movement timestamp for a KeyNest device. */
94679
- last_movement: string
94680
- /** Address for a KeyNest device. */
94681
- address: string | null
94682
- /** Current status for a KeyNest device. */
94683
- current_status: string | null
94684
- /** Current user name for a KeyNest device. */
94685
- current_user_name: string | null
94686
- /** Current user email for a KeyNest device. */
94687
- current_user_email: string | null
94688
- /** Current user phone number for a KeyNest device. */
94689
- current_user_phone_number: string | null
94690
- /** Current user company for a KeyNest device. */
94691
- current_user_company: string | null
94692
- /** Handover method for a KeyNest device. */
94693
- handover_method: string | null
94694
- /** KeyNest app user for a KeyNest device. */
94695
- keynest_app_user: string | null
94696
- /** Default office ID for a KeyNest device. */
94697
- default_office_id: number
94698
- /** Fob ID for a KeyNest device. */
94699
- fob_id: number
94700
- /** Whether the KeyNest device has a photo. */
94701
- has_photo: boolean
94066
+ device_name?: string | undefined
94702
94067
  }
94703
94068
  | undefined
94704
94069
  }) &
@@ -102203,6 +101568,17 @@ export type Routes = {
102203
101568
  noise_threshold_decibels: number
102204
101569
  }[]
102205
101570
  | undefined
101571
+ customization_profiles?:
101572
+ | {
101573
+ workspace_id: string
101574
+ name: string | null
101575
+ customization_profile_id: string
101576
+ created_at: string
101577
+ logo_url?: string | undefined
101578
+ primary_color?: string | undefined
101579
+ secondary_color?: string | undefined
101580
+ }[]
101581
+ | undefined
102206
101582
  }
102207
101583
  }
102208
101584
  }