@seamapi/types 1.323.0 → 1.324.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 (52) hide show
  1. package/dist/connect.cjs +631 -719
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +500 -643
  4. package/lib/seam/connect/models/events/access-codes.js +32 -41
  5. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  6. package/lib/seam/connect/models/events/acs/common.js +9 -12
  7. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  8. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  9. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  10. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  11. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  12. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  13. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  14. package/lib/seam/connect/models/events/acs/users.js +5 -3
  15. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  16. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  17. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  18. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  19. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  20. package/lib/seam/connect/models/events/common.js +5 -2
  21. package/lib/seam/connect/models/events/common.js.map +1 -1
  22. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  23. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  24. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  25. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  26. package/lib/seam/connect/models/events/devices.js +43 -47
  27. package/lib/seam/connect/models/events/devices.js.map +1 -1
  28. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  29. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  30. package/lib/seam/connect/models/events/phones.js +4 -6
  31. package/lib/seam/connect/models/events/phones.js.map +1 -1
  32. package/lib/seam/connect/openapi.d.ts +0 -143
  33. package/lib/seam/connect/openapi.js +316 -440
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +500 -500
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  38. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  39. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  40. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  41. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  42. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  43. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  44. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  45. package/src/lib/seam/connect/models/events/common.ts +5 -2
  46. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  47. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  48. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  49. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  50. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  51. package/src/lib/seam/connect/openapi.ts +454 -440
  52. package/src/lib/seam/connect/route-types.ts +500 -500
@@ -14820,15 +14820,15 @@ export interface Routes {
14820
14820
  event_id: string
14821
14821
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14822
14822
  workspace_id: string
14823
- /** Time at which the event was created. */
14823
+ /** Date and time at which the event was created. */
14824
14824
  created_at: string
14825
- /** Time when the event occurred. */
14825
+ /** Date and time at which the event occurred. */
14826
14826
  occurred_at: string
14827
- /** The ID of the access code. */
14827
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14828
14828
  access_code_id: string
14829
- /** The ID of the device. */
14829
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14830
14830
  device_id: string
14831
- /** The ID of the connected account. */
14831
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14832
14832
  connected_account_id: string
14833
14833
  event_type: 'access_code.created'
14834
14834
  }
@@ -14837,15 +14837,15 @@ export interface Routes {
14837
14837
  event_id: string
14838
14838
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14839
14839
  workspace_id: string
14840
- /** Time at which the event was created. */
14840
+ /** Date and time at which the event was created. */
14841
14841
  created_at: string
14842
- /** Time when the event occurred. */
14842
+ /** Date and time at which the event occurred. */
14843
14843
  occurred_at: string
14844
- /** The ID of the access code. */
14844
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14845
14845
  access_code_id: string
14846
- /** The ID of the device. */
14846
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14847
14847
  device_id: string
14848
- /** The ID of the connected account. */
14848
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14849
14849
  connected_account_id: string
14850
14850
  event_type: 'access_code.changed'
14851
14851
  }
@@ -14854,18 +14854,18 @@ export interface Routes {
14854
14854
  event_id: string
14855
14855
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14856
14856
  workspace_id: string
14857
- /** Time at which the event was created. */
14857
+ /** Date and time at which the event was created. */
14858
14858
  created_at: string
14859
- /** Time when the event occurred. */
14859
+ /** Date and time at which the event occurred. */
14860
14860
  occurred_at: string
14861
- /** The ID of the access code. */
14861
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14862
14862
  access_code_id: string
14863
- /** The ID of the device. */
14863
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14864
14864
  device_id: string
14865
- /** The ID of the connected account. */
14865
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14866
14866
  connected_account_id: string
14867
14867
  event_type: 'access_code.scheduled_on_device'
14868
- /** The code of the access code. */
14868
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14869
14869
  code: string
14870
14870
  }
14871
14871
  | {
@@ -14873,18 +14873,18 @@ export interface Routes {
14873
14873
  event_id: string
14874
14874
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14875
14875
  workspace_id: string
14876
- /** Time at which the event was created. */
14876
+ /** Date and time at which the event was created. */
14877
14877
  created_at: string
14878
- /** Time when the event occurred. */
14878
+ /** Date and time at which the event occurred. */
14879
14879
  occurred_at: string
14880
- /** The ID of the access code. */
14880
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14881
14881
  access_code_id: string
14882
- /** The ID of the device. */
14882
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14883
14883
  device_id: string
14884
- /** The ID of the connected account. */
14884
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14885
14885
  connected_account_id: string
14886
14886
  event_type: 'access_code.set_on_device'
14887
- /** The code of the access code. */
14887
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14888
14888
  code: string
14889
14889
  }
14890
14890
  | {
@@ -14892,15 +14892,15 @@ export interface Routes {
14892
14892
  event_id: string
14893
14893
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14894
14894
  workspace_id: string
14895
- /** Time at which the event was created. */
14895
+ /** Date and time at which the event was created. */
14896
14896
  created_at: string
14897
- /** Time when the event occurred. */
14897
+ /** Date and time at which the event occurred. */
14898
14898
  occurred_at: string
14899
- /** The ID of the access code. */
14899
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14900
14900
  access_code_id: string
14901
- /** The ID of the device. */
14901
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14902
14902
  device_id: string
14903
- /** The ID of the connected account. */
14903
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14904
14904
  connected_account_id: string
14905
14905
  event_type: 'access_code.removed_from_device'
14906
14906
  }
@@ -14909,15 +14909,15 @@ export interface Routes {
14909
14909
  event_id: string
14910
14910
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14911
14911
  workspace_id: string
14912
- /** Time at which the event was created. */
14912
+ /** Date and time at which the event was created. */
14913
14913
  created_at: string
14914
- /** Time when the event occurred. */
14914
+ /** Date and time at which the event occurred. */
14915
14915
  occurred_at: string
14916
- /** The ID of the access code. */
14916
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14917
14917
  access_code_id: string
14918
- /** The ID of the device. */
14918
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14919
14919
  device_id: string
14920
- /** The ID of the connected account. */
14920
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14921
14921
  connected_account_id: string
14922
14922
  event_type: 'access_code.delay_in_setting_on_device'
14923
14923
  }
@@ -14926,15 +14926,15 @@ export interface Routes {
14926
14926
  event_id: string
14927
14927
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14928
14928
  workspace_id: string
14929
- /** Time at which the event was created. */
14929
+ /** Date and time at which the event was created. */
14930
14930
  created_at: string
14931
- /** Time when the event occurred. */
14931
+ /** Date and time at which the event occurred. */
14932
14932
  occurred_at: string
14933
- /** The ID of the access code. */
14933
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14934
14934
  access_code_id: string
14935
- /** The ID of the device. */
14935
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14936
14936
  device_id: string
14937
- /** The ID of the connected account. */
14937
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14938
14938
  connected_account_id: string
14939
14939
  event_type: 'access_code.failed_to_set_on_device'
14940
14940
  }
@@ -14943,18 +14943,18 @@ export interface Routes {
14943
14943
  event_id: string
14944
14944
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14945
14945
  workspace_id: string
14946
- /** Time at which the event was created. */
14946
+ /** Date and time at which the event was created. */
14947
14947
  created_at: string
14948
- /** Time when the event occurred. */
14948
+ /** Date and time at which the event occurred. */
14949
14949
  occurred_at: string
14950
- /** The ID of the access code. */
14950
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14951
14951
  access_code_id: string
14952
- /** The ID of the device. */
14952
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14953
14953
  device_id: string
14954
- /** The ID of the connected account. */
14954
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14955
14955
  connected_account_id: string
14956
14956
  event_type: 'access_code.deleted'
14957
- /** The code of the access code. */
14957
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14958
14958
  code: string | null
14959
14959
  }
14960
14960
  | {
@@ -14962,15 +14962,15 @@ export interface Routes {
14962
14962
  event_id: string
14963
14963
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14964
14964
  workspace_id: string
14965
- /** Time at which the event was created. */
14965
+ /** Date and time at which the event was created. */
14966
14966
  created_at: string
14967
- /** Time when the event occurred. */
14967
+ /** Date and time at which the event occurred. */
14968
14968
  occurred_at: string
14969
- /** The ID of the access code. */
14969
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14970
14970
  access_code_id: string
14971
- /** The ID of the device. */
14971
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14972
14972
  device_id: string
14973
- /** The ID of the connected account. */
14973
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14974
14974
  connected_account_id: string
14975
14975
  event_type: 'access_code.delay_in_removing_from_device'
14976
14976
  }
@@ -14979,15 +14979,15 @@ export interface Routes {
14979
14979
  event_id: string
14980
14980
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14981
14981
  workspace_id: string
14982
- /** Time at which the event was created. */
14982
+ /** Date and time at which the event was created. */
14983
14983
  created_at: string
14984
- /** Time when the event occurred. */
14984
+ /** Date and time at which the event occurred. */
14985
14985
  occurred_at: string
14986
- /** The ID of the access code. */
14986
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14987
14987
  access_code_id: string
14988
- /** The ID of the device. */
14988
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14989
14989
  device_id: string
14990
- /** The ID of the connected account. */
14990
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14991
14991
  connected_account_id: string
14992
14992
  event_type: 'access_code.failed_to_remove_from_device'
14993
14993
  }
@@ -14996,15 +14996,15 @@ export interface Routes {
14996
14996
  event_id: string
14997
14997
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14998
14998
  workspace_id: string
14999
- /** Time at which the event was created. */
14999
+ /** Date and time at which the event was created. */
15000
15000
  created_at: string
15001
- /** Time when the event occurred. */
15001
+ /** Date and time at which the event occurred. */
15002
15002
  occurred_at: string
15003
- /** The ID of the access code. */
15003
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15004
15004
  access_code_id: string
15005
- /** The ID of the device. */
15005
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15006
15006
  device_id: string
15007
- /** The ID of the connected account. */
15007
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15008
15008
  connected_account_id: string
15009
15009
  event_type: 'access_code.modified_external_to_seam'
15010
15010
  }
@@ -15013,15 +15013,15 @@ export interface Routes {
15013
15013
  event_id: string
15014
15014
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15015
15015
  workspace_id: string
15016
- /** Time at which the event was created. */
15016
+ /** Date and time at which the event was created. */
15017
15017
  created_at: string
15018
- /** Time when the event occurred. */
15018
+ /** Date and time at which the event occurred. */
15019
15019
  occurred_at: string
15020
- /** The ID of the access code. */
15020
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15021
15021
  access_code_id: string
15022
- /** The ID of the device. */
15022
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15023
15023
  device_id: string
15024
- /** The ID of the connected account. */
15024
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15025
15025
  connected_account_id: string
15026
15026
  event_type: 'access_code.deleted_external_to_seam'
15027
15027
  }
@@ -15030,15 +15030,15 @@ export interface Routes {
15030
15030
  event_id: string
15031
15031
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15032
15032
  workspace_id: string
15033
- /** Time at which the event was created. */
15033
+ /** Date and time at which the event was created. */
15034
15034
  created_at: string
15035
- /** Time when the event occurred. */
15035
+ /** Date and time at which the event occurred. */
15036
15036
  occurred_at: string
15037
- /** The ID of the access code. */
15037
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15038
15038
  access_code_id: string
15039
- /** The ID of the device. */
15039
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15040
15040
  device_id: string
15041
- /** The ID of the connected account. */
15041
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15042
15042
  connected_account_id: string
15043
15043
  event_type: 'access_code.backup_access_code_pulled'
15044
15044
  backup_access_code_id: string
@@ -15048,15 +15048,15 @@ export interface Routes {
15048
15048
  event_id: string
15049
15049
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15050
15050
  workspace_id: string
15051
- /** Time at which the event was created. */
15051
+ /** Date and time at which the event was created. */
15052
15052
  created_at: string
15053
- /** Time when the event occurred. */
15053
+ /** Date and time at which the event occurred. */
15054
15054
  occurred_at: string
15055
- /** The ID of the access code. */
15055
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15056
15056
  access_code_id: string
15057
- /** The ID of the device. */
15057
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15058
15058
  device_id: string
15059
- /** The ID of the connected account. */
15059
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15060
15060
  connected_account_id: string
15061
15061
  event_type: 'access_code.unmanaged.converted_to_managed'
15062
15062
  }
@@ -15065,15 +15065,15 @@ export interface Routes {
15065
15065
  event_id: string
15066
15066
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15067
15067
  workspace_id: string
15068
- /** Time at which the event was created. */
15068
+ /** Date and time at which the event was created. */
15069
15069
  created_at: string
15070
- /** Time when the event occurred. */
15070
+ /** Date and time at which the event occurred. */
15071
15071
  occurred_at: string
15072
- /** The ID of the access code. */
15072
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15073
15073
  access_code_id: string
15074
- /** The ID of the device. */
15074
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15075
15075
  device_id: string
15076
- /** The ID of the connected account. */
15076
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15077
15077
  connected_account_id: string
15078
15078
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
15079
15079
  }
@@ -15082,15 +15082,15 @@ export interface Routes {
15082
15082
  event_id: string
15083
15083
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15084
15084
  workspace_id: string
15085
- /** Time at which the event was created. */
15085
+ /** Date and time at which the event was created. */
15086
15086
  created_at: string
15087
- /** Time when the event occurred. */
15087
+ /** Date and time at which the event occurred. */
15088
15088
  occurred_at: string
15089
- /** The ID of the access code. */
15089
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15090
15090
  access_code_id: string
15091
- /** The ID of the device. */
15091
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15092
15092
  device_id: string
15093
- /** The ID of the connected account. */
15093
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15094
15094
  connected_account_id: string
15095
15095
  event_type: 'access_code.unmanaged.created'
15096
15096
  }
@@ -15099,15 +15099,15 @@ export interface Routes {
15099
15099
  event_id: string
15100
15100
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15101
15101
  workspace_id: string
15102
- /** Time at which the event was created. */
15102
+ /** Date and time at which the event was created. */
15103
15103
  created_at: string
15104
- /** Time when the event occurred. */
15104
+ /** Date and time at which the event occurred. */
15105
15105
  occurred_at: string
15106
- /** The ID of the access code. */
15106
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15107
15107
  access_code_id: string
15108
- /** The ID of the device. */
15108
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15109
15109
  device_id: string
15110
- /** The ID of the connected account. */
15110
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15111
15111
  connected_account_id: string
15112
15112
  event_type: 'access_code.unmanaged.removed'
15113
15113
  }
@@ -15116,13 +15116,13 @@ export interface Routes {
15116
15116
  event_id: string
15117
15117
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15118
15118
  workspace_id: string
15119
- /** Time at which the event was created. */
15119
+ /** Date and time at which the event was created. */
15120
15120
  created_at: string
15121
- /** Time when the event occurred. */
15121
+ /** Date and time at which the event occurred. */
15122
15122
  occurred_at: string
15123
- /** ID of the connected account. */
15123
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15124
15124
  connected_account_id?: string | undefined
15125
- /** ID of the ACS system. */
15125
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15126
15126
  acs_system_id: string
15127
15127
  event_type: 'acs_system.connected'
15128
15128
  }
@@ -15131,13 +15131,13 @@ export interface Routes {
15131
15131
  event_id: string
15132
15132
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15133
15133
  workspace_id: string
15134
- /** Time at which the event was created. */
15134
+ /** Date and time at which the event was created. */
15135
15135
  created_at: string
15136
- /** Time when the event occurred. */
15136
+ /** Date and time at which the event occurred. */
15137
15137
  occurred_at: string
15138
- /** ID of the connected account. */
15138
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15139
15139
  connected_account_id?: string | undefined
15140
- /** ID of the ACS system. */
15140
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15141
15141
  acs_system_id: string
15142
15142
  event_type: 'acs_system.added'
15143
15143
  }
@@ -15146,13 +15146,13 @@ export interface Routes {
15146
15146
  event_id: string
15147
15147
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15148
15148
  workspace_id: string
15149
- /** Time at which the event was created. */
15149
+ /** Date and time at which the event was created. */
15150
15150
  created_at: string
15151
- /** Time when the event occurred. */
15151
+ /** Date and time at which the event occurred. */
15152
15152
  occurred_at: string
15153
- /** ID of the connected account. */
15153
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15154
15154
  connected_account_id?: string | undefined
15155
- /** ID of the ACS system. */
15155
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15156
15156
  acs_system_id: string
15157
15157
  event_type: 'acs_system.disconnected'
15158
15158
  }
@@ -15161,13 +15161,13 @@ export interface Routes {
15161
15161
  event_id: string
15162
15162
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15163
15163
  workspace_id: string
15164
- /** Time at which the event was created. */
15164
+ /** Date and time at which the event was created. */
15165
15165
  created_at: string
15166
- /** Time when the event occurred. */
15166
+ /** Date and time at which the event occurred. */
15167
15167
  occurred_at: string
15168
- /** ID of the connected account. */
15168
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15169
15169
  connected_account_id?: string | undefined
15170
- /** ID of the ACS system. */
15170
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15171
15171
  acs_system_id: string
15172
15172
  acs_credential_id: string
15173
15173
  event_type: 'acs_credential.deleted'
@@ -15177,13 +15177,13 @@ export interface Routes {
15177
15177
  event_id: string
15178
15178
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15179
15179
  workspace_id: string
15180
- /** Time at which the event was created. */
15180
+ /** Date and time at which the event was created. */
15181
15181
  created_at: string
15182
- /** Time when the event occurred. */
15182
+ /** Date and time at which the event occurred. */
15183
15183
  occurred_at: string
15184
- /** ID of the connected account. */
15184
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15185
15185
  connected_account_id?: string | undefined
15186
- /** ID of the ACS system. */
15186
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15187
15187
  acs_system_id: string
15188
15188
  acs_credential_id: string
15189
15189
  event_type: 'acs_credential.issued'
@@ -15193,13 +15193,13 @@ export interface Routes {
15193
15193
  event_id: string
15194
15194
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15195
15195
  workspace_id: string
15196
- /** Time at which the event was created. */
15196
+ /** Date and time at which the event was created. */
15197
15197
  created_at: string
15198
- /** Time when the event occurred. */
15198
+ /** Date and time at which the event occurred. */
15199
15199
  occurred_at: string
15200
- /** ID of the connected account. */
15200
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15201
15201
  connected_account_id?: string | undefined
15202
- /** ID of the ACS system. */
15202
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15203
15203
  acs_system_id: string
15204
15204
  acs_user_id: string
15205
15205
  event_type: 'acs_user.deleted'
@@ -15209,15 +15209,15 @@ export interface Routes {
15209
15209
  event_id: string
15210
15210
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15211
15211
  workspace_id: string
15212
- /** Time at which the event was created. */
15212
+ /** Date and time at which the event was created. */
15213
15213
  created_at: string
15214
- /** Time when the event occurred. */
15214
+ /** Date and time at which the event occurred. */
15215
15215
  occurred_at: string
15216
- /** ID of the connected account. */
15216
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15217
15217
  connected_account_id?: string | undefined
15218
- /** ID of the ACS system. */
15218
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15219
15219
  acs_system_id: string
15220
- /** ID of the ACS encoder. */
15220
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
15221
15221
  acs_encoder_id: string
15222
15222
  event_type: 'acs_encoder.added'
15223
15223
  }
@@ -15226,15 +15226,15 @@ export interface Routes {
15226
15226
  event_id: string
15227
15227
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15228
15228
  workspace_id: string
15229
- /** Time at which the event was created. */
15229
+ /** Date and time at which the event was created. */
15230
15230
  created_at: string
15231
- /** Time when the event occurred. */
15231
+ /** Date and time at which the event occurred. */
15232
15232
  occurred_at: string
15233
- /** ID of the connected account. */
15233
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15234
15234
  connected_account_id?: string | undefined
15235
- /** ID of the ACS system. */
15235
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15236
15236
  acs_system_id: string
15237
- /** ID of the ACS encoder. */
15237
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
15238
15238
  acs_encoder_id: string
15239
15239
  event_type: 'acs_encoder.removed'
15240
15240
  }
@@ -15243,11 +15243,11 @@ export interface Routes {
15243
15243
  event_id: string
15244
15244
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15245
15245
  workspace_id: string
15246
- /** Time at which the event was created. */
15246
+ /** Date and time at which the event was created. */
15247
15247
  created_at: string
15248
- /** Time when the event occurred. */
15248
+ /** Date and time at which the event occurred. */
15249
15249
  occurred_at: string
15250
- /** ID of the client session. */
15250
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
15251
15251
  client_session_id: string
15252
15252
  event_type: 'client_session.deleted'
15253
15253
  }
@@ -15256,14 +15256,14 @@ export interface Routes {
15256
15256
  event_id: string
15257
15257
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15258
15258
  workspace_id: string
15259
- /** Time at which the event was created. */
15259
+ /** Date and time at which the event was created. */
15260
15260
  created_at: string
15261
- /** Time when the event occurred. */
15261
+ /** Date and time at which the event occurred. */
15262
15262
  occurred_at: string
15263
- /** ID of the connected account. */
15263
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15264
15264
  connected_account_id: string
15265
15265
  event_type: 'connected_account.connected'
15266
- /** ID of the connect webview. */
15266
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15267
15267
  connect_webview_id: string
15268
15268
  }
15269
15269
  | {
@@ -15271,14 +15271,14 @@ export interface Routes {
15271
15271
  event_id: string
15272
15272
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15273
15273
  workspace_id: string
15274
- /** Time at which the event was created. */
15274
+ /** Date and time at which the event was created. */
15275
15275
  created_at: string
15276
- /** Time when the event occurred. */
15276
+ /** Date and time at which the event occurred. */
15277
15277
  occurred_at: string
15278
- /** ID of the connected account. */
15278
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15279
15279
  connected_account_id: string
15280
15280
  event_type: 'connected_account.created'
15281
- /** ID of the connect webview. */
15281
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15282
15282
  connect_webview_id: string
15283
15283
  }
15284
15284
  | {
@@ -15286,14 +15286,14 @@ export interface Routes {
15286
15286
  event_id: string
15287
15287
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15288
15288
  workspace_id: string
15289
- /** Time at which the event was created. */
15289
+ /** Date and time at which the event was created. */
15290
15290
  created_at: string
15291
- /** Time when the event occurred. */
15291
+ /** Date and time at which the event occurred. */
15292
15292
  occurred_at: string
15293
- /** ID of the connected account. */
15293
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15294
15294
  connected_account_id: string
15295
15295
  event_type: 'connected_account.successful_login'
15296
- /** ID of the connect webview. */
15296
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15297
15297
  connect_webview_id: string
15298
15298
  }
15299
15299
  | {
@@ -15301,11 +15301,11 @@ export interface Routes {
15301
15301
  event_id: string
15302
15302
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15303
15303
  workspace_id: string
15304
- /** Time at which the event was created. */
15304
+ /** Date and time at which the event was created. */
15305
15305
  created_at: string
15306
- /** Time when the event occurred. */
15306
+ /** Date and time at which the event occurred. */
15307
15307
  occurred_at: string
15308
- /** ID of the connected account. */
15308
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15309
15309
  connected_account_id: string
15310
15310
  event_type: 'connected_account.disconnected'
15311
15311
  }
@@ -15314,11 +15314,11 @@ export interface Routes {
15314
15314
  event_id: string
15315
15315
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15316
15316
  workspace_id: string
15317
- /** Time at which the event was created. */
15317
+ /** Date and time at which the event was created. */
15318
15318
  created_at: string
15319
- /** Time when the event occurred. */
15319
+ /** Date and time at which the event occurred. */
15320
15320
  occurred_at: string
15321
- /** ID of the connected account. */
15321
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15322
15322
  connected_account_id: string
15323
15323
  event_type: 'connected_account.completed_first_sync'
15324
15324
  }
@@ -15327,11 +15327,11 @@ export interface Routes {
15327
15327
  event_id: string
15328
15328
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15329
15329
  workspace_id: string
15330
- /** Time at which the event was created. */
15330
+ /** Date and time at which the event was created. */
15331
15331
  created_at: string
15332
- /** Time when the event occurred. */
15332
+ /** Date and time at which the event occurred. */
15333
15333
  occurred_at: string
15334
- /** ID of the connected account. */
15334
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15335
15335
  connected_account_id: string
15336
15336
  event_type: 'connected_account.deleted'
15337
15337
  }
@@ -15340,11 +15340,11 @@ export interface Routes {
15340
15340
  event_id: string
15341
15341
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15342
15342
  workspace_id: string
15343
- /** Time at which the event was created. */
15343
+ /** Date and time at which the event was created. */
15344
15344
  created_at: string
15345
- /** Time when the event occurred. */
15345
+ /** Date and time at which the event occurred. */
15346
15346
  occurred_at: string
15347
- /** ID of the connected account. */
15347
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15348
15348
  connected_account_id: string
15349
15349
  event_type: 'connected_account.completed_first_sync_after_reconnection'
15350
15350
  }
@@ -15353,15 +15353,15 @@ export interface Routes {
15353
15353
  event_id: string
15354
15354
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15355
15355
  workspace_id: string
15356
- /** Time at which the event was created. */
15356
+ /** Date and time at which the event was created. */
15357
15357
  created_at: string
15358
- /** Time when the event occurred. */
15358
+ /** Date and time at which the event occurred. */
15359
15359
  occurred_at: string
15360
- /** The ID of the action attempt. */
15360
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15361
15361
  action_attempt_id: string
15362
- /** The type of action. */
15362
+ /** Type of action. */
15363
15363
  action_type: string
15364
- /** The status of the action. */
15364
+ /** Status of the action. */
15365
15365
  status: string
15366
15366
  event_type: 'action_attempt.lock_door.succeeded'
15367
15367
  }
@@ -15370,15 +15370,15 @@ export interface Routes {
15370
15370
  event_id: string
15371
15371
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15372
15372
  workspace_id: string
15373
- /** Time at which the event was created. */
15373
+ /** Date and time at which the event was created. */
15374
15374
  created_at: string
15375
- /** Time when the event occurred. */
15375
+ /** Date and time at which the event occurred. */
15376
15376
  occurred_at: string
15377
- /** The ID of the action attempt. */
15377
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15378
15378
  action_attempt_id: string
15379
- /** The type of action. */
15379
+ /** Type of action. */
15380
15380
  action_type: string
15381
- /** The status of the action. */
15381
+ /** Status of the action. */
15382
15382
  status: string
15383
15383
  event_type: 'action_attempt.lock_door.failed'
15384
15384
  }
@@ -15387,15 +15387,15 @@ export interface Routes {
15387
15387
  event_id: string
15388
15388
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15389
15389
  workspace_id: string
15390
- /** Time at which the event was created. */
15390
+ /** Date and time at which the event was created. */
15391
15391
  created_at: string
15392
- /** Time when the event occurred. */
15392
+ /** Date and time at which the event occurred. */
15393
15393
  occurred_at: string
15394
- /** The ID of the action attempt. */
15394
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15395
15395
  action_attempt_id: string
15396
- /** The type of action. */
15396
+ /** Type of action. */
15397
15397
  action_type: string
15398
- /** The status of the action. */
15398
+ /** Status of the action. */
15399
15399
  status: string
15400
15400
  event_type: 'action_attempt.unlock_door.succeeded'
15401
15401
  }
@@ -15404,15 +15404,15 @@ export interface Routes {
15404
15404
  event_id: string
15405
15405
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15406
15406
  workspace_id: string
15407
- /** Time at which the event was created. */
15407
+ /** Date and time at which the event was created. */
15408
15408
  created_at: string
15409
- /** Time when the event occurred. */
15409
+ /** Date and time at which the event occurred. */
15410
15410
  occurred_at: string
15411
- /** The ID of the action attempt. */
15411
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15412
15412
  action_attempt_id: string
15413
- /** The type of action. */
15413
+ /** Type of action. */
15414
15414
  action_type: string
15415
- /** The status of the action. */
15415
+ /** Status of the action. */
15416
15416
  status: string
15417
15417
  event_type: 'action_attempt.unlock_door.failed'
15418
15418
  }
@@ -15421,14 +15421,14 @@ export interface Routes {
15421
15421
  event_id: string
15422
15422
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15423
15423
  workspace_id: string
15424
- /** Time at which the event was created. */
15424
+ /** Date and time at which the event was created. */
15425
15425
  created_at: string
15426
- /** Time when the event occurred. */
15426
+ /** Date and time at which the event occurred. */
15427
15427
  occurred_at: string
15428
- /** ID of the connect webview. */
15428
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15429
15429
  connect_webview_id: string
15430
15430
  event_type: 'connect_webview.login_succeeded'
15431
- /** ID of the connected account. */
15431
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15432
15432
  connected_account_id: string
15433
15433
  }
15434
15434
  | {
@@ -15436,11 +15436,11 @@ export interface Routes {
15436
15436
  event_id: string
15437
15437
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15438
15438
  workspace_id: string
15439
- /** Time at which the event was created. */
15439
+ /** Date and time at which the event was created. */
15440
15440
  created_at: string
15441
- /** Time when the event occurred. */
15441
+ /** Date and time at which the event occurred. */
15442
15442
  occurred_at: string
15443
- /** ID of the connect webview. */
15443
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15444
15444
  connect_webview_id: string
15445
15445
  event_type: 'connect_webview.login_failed'
15446
15446
  }
@@ -15449,9 +15449,9 @@ export interface Routes {
15449
15449
  event_id: string
15450
15450
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15451
15451
  workspace_id: string
15452
- /** Time at which the event was created. */
15452
+ /** Date and time at which the event was created. */
15453
15453
  created_at: string
15454
- /** Time when the event occurred. */
15454
+ /** Date and time at which the event occurred. */
15455
15455
  occurred_at: string
15456
15456
  /** ID of the device. */
15457
15457
  device_id: string
@@ -15464,9 +15464,9 @@ export interface Routes {
15464
15464
  event_id: string
15465
15465
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15466
15466
  workspace_id: string
15467
- /** Time at which the event was created. */
15467
+ /** Date and time at which the event was created. */
15468
15468
  created_at: string
15469
- /** Time when the event occurred. */
15469
+ /** Date and time at which the event occurred. */
15470
15470
  occurred_at: string
15471
15471
  /** ID of the device. */
15472
15472
  device_id: string
@@ -15479,9 +15479,9 @@ export interface Routes {
15479
15479
  event_id: string
15480
15480
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15481
15481
  workspace_id: string
15482
- /** Time at which the event was created. */
15482
+ /** Date and time at which the event was created. */
15483
15483
  created_at: string
15484
- /** Time when the event occurred. */
15484
+ /** Date and time at which the event occurred. */
15485
15485
  occurred_at: string
15486
15486
  /** ID of the device. */
15487
15487
  device_id: string
@@ -15494,9 +15494,9 @@ export interface Routes {
15494
15494
  event_id: string
15495
15495
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15496
15496
  workspace_id: string
15497
- /** Time at which the event was created. */
15497
+ /** Date and time at which the event was created. */
15498
15498
  created_at: string
15499
- /** Time when the event occurred. */
15499
+ /** Date and time at which the event occurred. */
15500
15500
  occurred_at: string
15501
15501
  /** ID of the device. */
15502
15502
  device_id: string
@@ -15509,9 +15509,9 @@ export interface Routes {
15509
15509
  event_id: string
15510
15510
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15511
15511
  workspace_id: string
15512
- /** Time at which the event was created. */
15512
+ /** Date and time at which the event was created. */
15513
15513
  created_at: string
15514
- /** Time when the event occurred. */
15514
+ /** Date and time at which the event occurred. */
15515
15515
  occurred_at: string
15516
15516
  /** ID of the device. */
15517
15517
  device_id: string
@@ -15524,9 +15524,9 @@ export interface Routes {
15524
15524
  event_id: string
15525
15525
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15526
15526
  workspace_id: string
15527
- /** Time at which the event was created. */
15527
+ /** Date and time at which the event was created. */
15528
15528
  created_at: string
15529
- /** Time when the event occurred. */
15529
+ /** Date and time at which the event occurred. */
15530
15530
  occurred_at: string
15531
15531
  /** ID of the device. */
15532
15532
  device_id: string
@@ -15544,9 +15544,9 @@ export interface Routes {
15544
15544
  event_id: string
15545
15545
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15546
15546
  workspace_id: string
15547
- /** Time at which the event was created. */
15547
+ /** Date and time at which the event was created. */
15548
15548
  created_at: string
15549
- /** Time when the event occurred. */
15549
+ /** Date and time at which the event occurred. */
15550
15550
  occurred_at: string
15551
15551
  /** ID of the device. */
15552
15552
  device_id: string
@@ -15564,9 +15564,9 @@ export interface Routes {
15564
15564
  event_id: string
15565
15565
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15566
15566
  workspace_id: string
15567
- /** Time at which the event was created. */
15567
+ /** Date and time at which the event was created. */
15568
15568
  created_at: string
15569
- /** Time when the event occurred. */
15569
+ /** Date and time at which the event occurred. */
15570
15570
  occurred_at: string
15571
15571
  /** ID of the device. */
15572
15572
  device_id: string
@@ -15579,9 +15579,9 @@ export interface Routes {
15579
15579
  event_id: string
15580
15580
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15581
15581
  workspace_id: string
15582
- /** Time at which the event was created. */
15582
+ /** Date and time at which the event was created. */
15583
15583
  created_at: string
15584
- /** Time when the event occurred. */
15584
+ /** Date and time at which the event occurred. */
15585
15585
  occurred_at: string
15586
15586
  /** ID of the device. */
15587
15587
  device_id: string
@@ -15596,9 +15596,9 @@ export interface Routes {
15596
15596
  event_id: string
15597
15597
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15598
15598
  workspace_id: string
15599
- /** Time at which the event was created. */
15599
+ /** Date and time at which the event was created. */
15600
15600
  created_at: string
15601
- /** Time when the event occurred. */
15601
+ /** Date and time at which the event occurred. */
15602
15602
  occurred_at: string
15603
15603
  /** ID of the device. */
15604
15604
  device_id: string
@@ -15615,9 +15615,9 @@ export interface Routes {
15615
15615
  event_id: string
15616
15616
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15617
15617
  workspace_id: string
15618
- /** Time at which the event was created. */
15618
+ /** Date and time at which the event was created. */
15619
15619
  created_at: string
15620
- /** Time when the event occurred. */
15620
+ /** Date and time at which the event occurred. */
15621
15621
  occurred_at: string
15622
15622
  /** ID of the device. */
15623
15623
  device_id: string
@@ -15630,9 +15630,9 @@ export interface Routes {
15630
15630
  event_id: string
15631
15631
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15632
15632
  workspace_id: string
15633
- /** Time at which the event was created. */
15633
+ /** Date and time at which the event was created. */
15634
15634
  created_at: string
15635
- /** Time when the event occurred. */
15635
+ /** Date and time at which the event occurred. */
15636
15636
  occurred_at: string
15637
15637
  /** ID of the device. */
15638
15638
  device_id: string
@@ -15645,9 +15645,9 @@ export interface Routes {
15645
15645
  event_id: string
15646
15646
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15647
15647
  workspace_id: string
15648
- /** Time at which the event was created. */
15648
+ /** Date and time at which the event was created. */
15649
15649
  created_at: string
15650
- /** Time when the event occurred. */
15650
+ /** Date and time at which the event occurred. */
15651
15651
  occurred_at: string
15652
15652
  /** ID of the device. */
15653
15653
  device_id: string
@@ -15660,9 +15660,9 @@ export interface Routes {
15660
15660
  event_id: string
15661
15661
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15662
15662
  workspace_id: string
15663
- /** Time at which the event was created. */
15663
+ /** Date and time at which the event was created. */
15664
15664
  created_at: string
15665
- /** Time when the event occurred. */
15665
+ /** Date and time at which the event occurred. */
15666
15666
  occurred_at: string
15667
15667
  /** ID of the device. */
15668
15668
  device_id: string
@@ -15675,9 +15675,9 @@ export interface Routes {
15675
15675
  event_id: string
15676
15676
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15677
15677
  workspace_id: string
15678
- /** Time at which the event was created. */
15678
+ /** Date and time at which the event was created. */
15679
15679
  created_at: string
15680
- /** Time when the event occurred. */
15680
+ /** Date and time at which the event occurred. */
15681
15681
  occurred_at: string
15682
15682
  /** ID of the device. */
15683
15683
  device_id: string
@@ -15690,9 +15690,9 @@ export interface Routes {
15690
15690
  event_id: string
15691
15691
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15692
15692
  workspace_id: string
15693
- /** Time at which the event was created. */
15693
+ /** Date and time at which the event was created. */
15694
15694
  created_at: string
15695
- /** Time when the event occurred. */
15695
+ /** Date and time at which the event occurred. */
15696
15696
  occurred_at: string
15697
15697
  /** ID of the device. */
15698
15698
  device_id: string
@@ -15705,9 +15705,9 @@ export interface Routes {
15705
15705
  event_id: string
15706
15706
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15707
15707
  workspace_id: string
15708
- /** Time at which the event was created. */
15708
+ /** Date and time at which the event was created. */
15709
15709
  created_at: string
15710
- /** Time when the event occurred. */
15710
+ /** Date and time at which the event occurred. */
15711
15711
  occurred_at: string
15712
15712
  /** ID of the device. */
15713
15713
  device_id: string
@@ -15720,9 +15720,9 @@ export interface Routes {
15720
15720
  event_id: string
15721
15721
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15722
15722
  workspace_id: string
15723
- /** Time at which the event was created. */
15723
+ /** Date and time at which the event was created. */
15724
15724
  created_at: string
15725
- /** Time when the event occurred. */
15725
+ /** Date and time at which the event occurred. */
15726
15726
  occurred_at: string
15727
15727
  /** ID of the device. */
15728
15728
  device_id: string
@@ -15735,9 +15735,9 @@ export interface Routes {
15735
15735
  event_id: string
15736
15736
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15737
15737
  workspace_id: string
15738
- /** Time at which the event was created. */
15738
+ /** Date and time at which the event was created. */
15739
15739
  created_at: string
15740
- /** Time when the event occurred. */
15740
+ /** Date and time at which the event occurred. */
15741
15741
  occurred_at: string
15742
15742
  /** ID of the device. */
15743
15743
  device_id: string
@@ -15750,9 +15750,9 @@ export interface Routes {
15750
15750
  event_id: string
15751
15751
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15752
15752
  workspace_id: string
15753
- /** Time at which the event was created. */
15753
+ /** Date and time at which the event was created. */
15754
15754
  created_at: string
15755
- /** Time when the event occurred. */
15755
+ /** Date and time at which the event occurred. */
15756
15756
  occurred_at: string
15757
15757
  /** ID of the device. */
15758
15758
  device_id: string
@@ -15765,9 +15765,9 @@ export interface Routes {
15765
15765
  event_id: string
15766
15766
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15767
15767
  workspace_id: string
15768
- /** Time at which the event was created. */
15768
+ /** Date and time at which the event was created. */
15769
15769
  created_at: string
15770
- /** Time when the event occurred. */
15770
+ /** Date and time at which the event occurred. */
15771
15771
  occurred_at: string
15772
15772
  /** ID of the device. */
15773
15773
  device_id: string
@@ -15780,9 +15780,9 @@ export interface Routes {
15780
15780
  event_id: string
15781
15781
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15782
15782
  workspace_id: string
15783
- /** Time at which the event was created. */
15783
+ /** Date and time at which the event was created. */
15784
15784
  created_at: string
15785
- /** Time when the event occurred. */
15785
+ /** Date and time at which the event occurred. */
15786
15786
  occurred_at: string
15787
15787
  /** ID of the device. */
15788
15788
  device_id: string
@@ -15795,9 +15795,9 @@ export interface Routes {
15795
15795
  event_id: string
15796
15796
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15797
15797
  workspace_id: string
15798
- /** Time at which the event was created. */
15798
+ /** Date and time at which the event was created. */
15799
15799
  created_at: string
15800
- /** Time when the event occurred. */
15800
+ /** Date and time at which the event occurred. */
15801
15801
  occurred_at: string
15802
15802
  /** ID of the device. */
15803
15803
  device_id: string
@@ -15822,9 +15822,9 @@ export interface Routes {
15822
15822
  event_id: string
15823
15823
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15824
15824
  workspace_id: string
15825
- /** Time at which the event was created. */
15825
+ /** Date and time at which the event was created. */
15826
15826
  created_at: string
15827
- /** Time when the event occurred. */
15827
+ /** Date and time at which the event occurred. */
15828
15828
  occurred_at: string
15829
15829
  /** ID of the device. */
15830
15830
  device_id: string
@@ -15835,7 +15835,7 @@ export interface Routes {
15835
15835
  access_code_id?: string | undefined
15836
15836
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
15837
15837
  action_attempt_id?: string | undefined
15838
- /** Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
15838
+ /** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
15839
15839
  method:
15840
15840
  | 'keycode'
15841
15841
  | 'manual'
@@ -15848,9 +15848,9 @@ export interface Routes {
15848
15848
  event_id: string
15849
15849
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15850
15850
  workspace_id: string
15851
- /** Time at which the event was created. */
15851
+ /** Date and time at which the event was created. */
15852
15852
  created_at: string
15853
- /** Time when the event occurred. */
15853
+ /** Date and time at which the event occurred. */
15854
15854
  occurred_at: string
15855
15855
  /** ID of the device. */
15856
15856
  device_id: string
@@ -15861,7 +15861,7 @@ export interface Routes {
15861
15861
  access_code_id?: string | undefined
15862
15862
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
15863
15863
  action_attempt_id?: string | undefined
15864
- /** Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
15864
+ /** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
15865
15865
  method:
15866
15866
  | 'keycode'
15867
15867
  | 'manual'
@@ -15874,9 +15874,9 @@ export interface Routes {
15874
15874
  event_id: string
15875
15875
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15876
15876
  workspace_id: string
15877
- /** Time at which the event was created. */
15877
+ /** Date and time at which the event was created. */
15878
15878
  created_at: string
15879
- /** Time when the event occurred. */
15879
+ /** Date and time at which the event occurred. */
15880
15880
  occurred_at: string
15881
15881
  /** ID of the device. */
15882
15882
  device_id: string
@@ -15891,9 +15891,9 @@ export interface Routes {
15891
15891
  event_id: string
15892
15892
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15893
15893
  workspace_id: string
15894
- /** Time at which the event was created. */
15894
+ /** Date and time at which the event was created. */
15895
15895
  created_at: string
15896
- /** Time when the event occurred. */
15896
+ /** Date and time at which the event occurred. */
15897
15897
  occurred_at: string
15898
15898
  /** ID of the device. */
15899
15899
  device_id: string
@@ -15904,7 +15904,7 @@ export interface Routes {
15904
15904
  thermostat_schedule_id: string | null
15905
15905
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
15906
15906
  climate_preset_key: string
15907
- /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
15907
+ /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15908
15908
  is_fallback_climate_preset: boolean
15909
15909
  }
15910
15910
  | {
@@ -15912,16 +15912,16 @@ export interface Routes {
15912
15912
  event_id: string
15913
15913
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15914
15914
  workspace_id: string
15915
- /** Time at which the event was created. */
15915
+ /** Date and time at which the event was created. */
15916
15916
  created_at: string
15917
- /** Time when the event occurred. */
15917
+ /** Date and time at which the event occurred. */
15918
15918
  occurred_at: string
15919
15919
  /** ID of the device. */
15920
15920
  device_id: string
15921
15921
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15922
15922
  connected_account_id: string
15923
15923
  event_type: 'thermostat.manually_adjusted'
15924
- /** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
15924
+ /** Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15925
15925
  method: 'seam' | 'external'
15926
15926
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
15927
15927
  fan_mode_setting?:
@@ -15945,18 +15945,18 @@ export interface Routes {
15945
15945
  event_id: string
15946
15946
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15947
15947
  workspace_id: string
15948
- /** Time at which the event was created. */
15948
+ /** Date and time at which the event was created. */
15949
15949
  created_at: string
15950
- /** Time when the event occurred. */
15950
+ /** Date and time at which the event occurred. */
15951
15951
  occurred_at: string
15952
15952
  /** ID of the device. */
15953
15953
  device_id: string
15954
15954
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15955
15955
  connected_account_id: string
15956
15956
  event_type: 'thermostat.temperature_threshold_exceeded'
15957
- /** Temperature, in °C, reported by the thermostat. */
15957
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15958
15958
  temperature_celsius: number
15959
- /** Temperature, in °F, reported by the thermostat. */
15959
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15960
15960
  temperature_fahrenheit: number
15961
15961
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
15962
15962
  upper_limit_celsius: number | null
@@ -15972,18 +15972,18 @@ export interface Routes {
15972
15972
  event_id: string
15973
15973
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15974
15974
  workspace_id: string
15975
- /** Time at which the event was created. */
15975
+ /** Date and time at which the event was created. */
15976
15976
  created_at: string
15977
- /** Time when the event occurred. */
15977
+ /** Date and time at which the event occurred. */
15978
15978
  occurred_at: string
15979
15979
  /** ID of the device. */
15980
15980
  device_id: string
15981
15981
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15982
15982
  connected_account_id: string
15983
15983
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
15984
- /** Temperature, in °C, reported by the thermostat. */
15984
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15985
15985
  temperature_celsius: number
15986
- /** Temperature, in °F, reported by the thermostat. */
15986
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15987
15987
  temperature_fahrenheit: number
15988
15988
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
15989
15989
  upper_limit_celsius: number | null
@@ -15999,11 +15999,11 @@ export interface Routes {
15999
15999
  event_id: string
16000
16000
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16001
16001
  workspace_id: string
16002
- /** Time at which the event was created. */
16002
+ /** Date and time at which the event was created. */
16003
16003
  created_at: string
16004
- /** Time when the event occurred. */
16004
+ /** Date and time at which the event occurred. */
16005
16005
  occurred_at: string
16006
- /** ID of the enrollment automation. */
16006
+ /** ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut). */
16007
16007
  enrollment_automation_id: string
16008
16008
  event_type: 'enrollment_automation.deleted'
16009
16009
  }
@@ -16012,11 +16012,11 @@ export interface Routes {
16012
16012
  event_id: string
16013
16013
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16014
16014
  workspace_id: string
16015
- /** Time at which the event was created. */
16015
+ /** Date and time at which the event was created. */
16016
16016
  created_at: string
16017
- /** Time when the event occurred. */
16017
+ /** Date and time at which the event occurred. */
16018
16018
  occurred_at: string
16019
- /** ID of the device. */
16019
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16020
16020
  device_id: string
16021
16021
  event_type: 'phone.deactivated'
16022
16022
  }
@@ -16202,15 +16202,15 @@ export interface Routes {
16202
16202
  event_id: string
16203
16203
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16204
16204
  workspace_id: string
16205
- /** Time at which the event was created. */
16205
+ /** Date and time at which the event was created. */
16206
16206
  created_at: string
16207
- /** Time when the event occurred. */
16207
+ /** Date and time at which the event occurred. */
16208
16208
  occurred_at: string
16209
- /** The ID of the access code. */
16209
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16210
16210
  access_code_id: string
16211
- /** The ID of the device. */
16211
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16212
16212
  device_id: string
16213
- /** The ID of the connected account. */
16213
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16214
16214
  connected_account_id: string
16215
16215
  event_type: 'access_code.created'
16216
16216
  }
@@ -16219,15 +16219,15 @@ export interface Routes {
16219
16219
  event_id: string
16220
16220
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16221
16221
  workspace_id: string
16222
- /** Time at which the event was created. */
16222
+ /** Date and time at which the event was created. */
16223
16223
  created_at: string
16224
- /** Time when the event occurred. */
16224
+ /** Date and time at which the event occurred. */
16225
16225
  occurred_at: string
16226
- /** The ID of the access code. */
16226
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16227
16227
  access_code_id: string
16228
- /** The ID of the device. */
16228
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16229
16229
  device_id: string
16230
- /** The ID of the connected account. */
16230
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16231
16231
  connected_account_id: string
16232
16232
  event_type: 'access_code.changed'
16233
16233
  }
@@ -16236,18 +16236,18 @@ export interface Routes {
16236
16236
  event_id: string
16237
16237
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16238
16238
  workspace_id: string
16239
- /** Time at which the event was created. */
16239
+ /** Date and time at which the event was created. */
16240
16240
  created_at: string
16241
- /** Time when the event occurred. */
16241
+ /** Date and time at which the event occurred. */
16242
16242
  occurred_at: string
16243
- /** The ID of the access code. */
16243
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16244
16244
  access_code_id: string
16245
- /** The ID of the device. */
16245
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16246
16246
  device_id: string
16247
- /** The ID of the connected account. */
16247
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16248
16248
  connected_account_id: string
16249
16249
  event_type: 'access_code.scheduled_on_device'
16250
- /** The code of the access code. */
16250
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16251
16251
  code: string
16252
16252
  }
16253
16253
  | {
@@ -16255,18 +16255,18 @@ export interface Routes {
16255
16255
  event_id: string
16256
16256
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16257
16257
  workspace_id: string
16258
- /** Time at which the event was created. */
16258
+ /** Date and time at which the event was created. */
16259
16259
  created_at: string
16260
- /** Time when the event occurred. */
16260
+ /** Date and time at which the event occurred. */
16261
16261
  occurred_at: string
16262
- /** The ID of the access code. */
16262
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16263
16263
  access_code_id: string
16264
- /** The ID of the device. */
16264
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16265
16265
  device_id: string
16266
- /** The ID of the connected account. */
16266
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16267
16267
  connected_account_id: string
16268
16268
  event_type: 'access_code.set_on_device'
16269
- /** The code of the access code. */
16269
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16270
16270
  code: string
16271
16271
  }
16272
16272
  | {
@@ -16274,15 +16274,15 @@ export interface Routes {
16274
16274
  event_id: string
16275
16275
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16276
16276
  workspace_id: string
16277
- /** Time at which the event was created. */
16277
+ /** Date and time at which the event was created. */
16278
16278
  created_at: string
16279
- /** Time when the event occurred. */
16279
+ /** Date and time at which the event occurred. */
16280
16280
  occurred_at: string
16281
- /** The ID of the access code. */
16281
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16282
16282
  access_code_id: string
16283
- /** The ID of the device. */
16283
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16284
16284
  device_id: string
16285
- /** The ID of the connected account. */
16285
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16286
16286
  connected_account_id: string
16287
16287
  event_type: 'access_code.removed_from_device'
16288
16288
  }
@@ -16291,15 +16291,15 @@ export interface Routes {
16291
16291
  event_id: string
16292
16292
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16293
16293
  workspace_id: string
16294
- /** Time at which the event was created. */
16294
+ /** Date and time at which the event was created. */
16295
16295
  created_at: string
16296
- /** Time when the event occurred. */
16296
+ /** Date and time at which the event occurred. */
16297
16297
  occurred_at: string
16298
- /** The ID of the access code. */
16298
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16299
16299
  access_code_id: string
16300
- /** The ID of the device. */
16300
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16301
16301
  device_id: string
16302
- /** The ID of the connected account. */
16302
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16303
16303
  connected_account_id: string
16304
16304
  event_type: 'access_code.delay_in_setting_on_device'
16305
16305
  }
@@ -16308,15 +16308,15 @@ export interface Routes {
16308
16308
  event_id: string
16309
16309
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16310
16310
  workspace_id: string
16311
- /** Time at which the event was created. */
16311
+ /** Date and time at which the event was created. */
16312
16312
  created_at: string
16313
- /** Time when the event occurred. */
16313
+ /** Date and time at which the event occurred. */
16314
16314
  occurred_at: string
16315
- /** The ID of the access code. */
16315
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16316
16316
  access_code_id: string
16317
- /** The ID of the device. */
16317
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16318
16318
  device_id: string
16319
- /** The ID of the connected account. */
16319
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16320
16320
  connected_account_id: string
16321
16321
  event_type: 'access_code.failed_to_set_on_device'
16322
16322
  }
@@ -16325,18 +16325,18 @@ export interface Routes {
16325
16325
  event_id: string
16326
16326
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16327
16327
  workspace_id: string
16328
- /** Time at which the event was created. */
16328
+ /** Date and time at which the event was created. */
16329
16329
  created_at: string
16330
- /** Time when the event occurred. */
16330
+ /** Date and time at which the event occurred. */
16331
16331
  occurred_at: string
16332
- /** The ID of the access code. */
16332
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16333
16333
  access_code_id: string
16334
- /** The ID of the device. */
16334
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16335
16335
  device_id: string
16336
- /** The ID of the connected account. */
16336
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16337
16337
  connected_account_id: string
16338
16338
  event_type: 'access_code.deleted'
16339
- /** The code of the access code. */
16339
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16340
16340
  code: string | null
16341
16341
  }
16342
16342
  | {
@@ -16344,15 +16344,15 @@ export interface Routes {
16344
16344
  event_id: string
16345
16345
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16346
16346
  workspace_id: string
16347
- /** Time at which the event was created. */
16347
+ /** Date and time at which the event was created. */
16348
16348
  created_at: string
16349
- /** Time when the event occurred. */
16349
+ /** Date and time at which the event occurred. */
16350
16350
  occurred_at: string
16351
- /** The ID of the access code. */
16351
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16352
16352
  access_code_id: string
16353
- /** The ID of the device. */
16353
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16354
16354
  device_id: string
16355
- /** The ID of the connected account. */
16355
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16356
16356
  connected_account_id: string
16357
16357
  event_type: 'access_code.delay_in_removing_from_device'
16358
16358
  }
@@ -16361,15 +16361,15 @@ export interface Routes {
16361
16361
  event_id: string
16362
16362
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16363
16363
  workspace_id: string
16364
- /** Time at which the event was created. */
16364
+ /** Date and time at which the event was created. */
16365
16365
  created_at: string
16366
- /** Time when the event occurred. */
16366
+ /** Date and time at which the event occurred. */
16367
16367
  occurred_at: string
16368
- /** The ID of the access code. */
16368
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16369
16369
  access_code_id: string
16370
- /** The ID of the device. */
16370
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16371
16371
  device_id: string
16372
- /** The ID of the connected account. */
16372
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16373
16373
  connected_account_id: string
16374
16374
  event_type: 'access_code.failed_to_remove_from_device'
16375
16375
  }
@@ -16378,15 +16378,15 @@ export interface Routes {
16378
16378
  event_id: string
16379
16379
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16380
16380
  workspace_id: string
16381
- /** Time at which the event was created. */
16381
+ /** Date and time at which the event was created. */
16382
16382
  created_at: string
16383
- /** Time when the event occurred. */
16383
+ /** Date and time at which the event occurred. */
16384
16384
  occurred_at: string
16385
- /** The ID of the access code. */
16385
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16386
16386
  access_code_id: string
16387
- /** The ID of the device. */
16387
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16388
16388
  device_id: string
16389
- /** The ID of the connected account. */
16389
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16390
16390
  connected_account_id: string
16391
16391
  event_type: 'access_code.modified_external_to_seam'
16392
16392
  }
@@ -16395,15 +16395,15 @@ export interface Routes {
16395
16395
  event_id: string
16396
16396
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16397
16397
  workspace_id: string
16398
- /** Time at which the event was created. */
16398
+ /** Date and time at which the event was created. */
16399
16399
  created_at: string
16400
- /** Time when the event occurred. */
16400
+ /** Date and time at which the event occurred. */
16401
16401
  occurred_at: string
16402
- /** The ID of the access code. */
16402
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16403
16403
  access_code_id: string
16404
- /** The ID of the device. */
16404
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16405
16405
  device_id: string
16406
- /** The ID of the connected account. */
16406
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16407
16407
  connected_account_id: string
16408
16408
  event_type: 'access_code.deleted_external_to_seam'
16409
16409
  }
@@ -16412,15 +16412,15 @@ export interface Routes {
16412
16412
  event_id: string
16413
16413
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16414
16414
  workspace_id: string
16415
- /** Time at which the event was created. */
16415
+ /** Date and time at which the event was created. */
16416
16416
  created_at: string
16417
- /** Time when the event occurred. */
16417
+ /** Date and time at which the event occurred. */
16418
16418
  occurred_at: string
16419
- /** The ID of the access code. */
16419
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16420
16420
  access_code_id: string
16421
- /** The ID of the device. */
16421
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16422
16422
  device_id: string
16423
- /** The ID of the connected account. */
16423
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16424
16424
  connected_account_id: string
16425
16425
  event_type: 'access_code.backup_access_code_pulled'
16426
16426
  backup_access_code_id: string
@@ -16430,15 +16430,15 @@ export interface Routes {
16430
16430
  event_id: string
16431
16431
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16432
16432
  workspace_id: string
16433
- /** Time at which the event was created. */
16433
+ /** Date and time at which the event was created. */
16434
16434
  created_at: string
16435
- /** Time when the event occurred. */
16435
+ /** Date and time at which the event occurred. */
16436
16436
  occurred_at: string
16437
- /** The ID of the access code. */
16437
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16438
16438
  access_code_id: string
16439
- /** The ID of the device. */
16439
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16440
16440
  device_id: string
16441
- /** The ID of the connected account. */
16441
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16442
16442
  connected_account_id: string
16443
16443
  event_type: 'access_code.unmanaged.converted_to_managed'
16444
16444
  }
@@ -16447,15 +16447,15 @@ export interface Routes {
16447
16447
  event_id: string
16448
16448
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16449
16449
  workspace_id: string
16450
- /** Time at which the event was created. */
16450
+ /** Date and time at which the event was created. */
16451
16451
  created_at: string
16452
- /** Time when the event occurred. */
16452
+ /** Date and time at which the event occurred. */
16453
16453
  occurred_at: string
16454
- /** The ID of the access code. */
16454
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16455
16455
  access_code_id: string
16456
- /** The ID of the device. */
16456
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16457
16457
  device_id: string
16458
- /** The ID of the connected account. */
16458
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16459
16459
  connected_account_id: string
16460
16460
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
16461
16461
  }
@@ -16464,15 +16464,15 @@ export interface Routes {
16464
16464
  event_id: string
16465
16465
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16466
16466
  workspace_id: string
16467
- /** Time at which the event was created. */
16467
+ /** Date and time at which the event was created. */
16468
16468
  created_at: string
16469
- /** Time when the event occurred. */
16469
+ /** Date and time at which the event occurred. */
16470
16470
  occurred_at: string
16471
- /** The ID of the access code. */
16471
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16472
16472
  access_code_id: string
16473
- /** The ID of the device. */
16473
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16474
16474
  device_id: string
16475
- /** The ID of the connected account. */
16475
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16476
16476
  connected_account_id: string
16477
16477
  event_type: 'access_code.unmanaged.created'
16478
16478
  }
@@ -16481,15 +16481,15 @@ export interface Routes {
16481
16481
  event_id: string
16482
16482
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16483
16483
  workspace_id: string
16484
- /** Time at which the event was created. */
16484
+ /** Date and time at which the event was created. */
16485
16485
  created_at: string
16486
- /** Time when the event occurred. */
16486
+ /** Date and time at which the event occurred. */
16487
16487
  occurred_at: string
16488
- /** The ID of the access code. */
16488
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16489
16489
  access_code_id: string
16490
- /** The ID of the device. */
16490
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16491
16491
  device_id: string
16492
- /** The ID of the connected account. */
16492
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16493
16493
  connected_account_id: string
16494
16494
  event_type: 'access_code.unmanaged.removed'
16495
16495
  }
@@ -16498,13 +16498,13 @@ export interface Routes {
16498
16498
  event_id: string
16499
16499
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16500
16500
  workspace_id: string
16501
- /** Time at which the event was created. */
16501
+ /** Date and time at which the event was created. */
16502
16502
  created_at: string
16503
- /** Time when the event occurred. */
16503
+ /** Date and time at which the event occurred. */
16504
16504
  occurred_at: string
16505
- /** ID of the connected account. */
16505
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16506
16506
  connected_account_id?: string | undefined
16507
- /** ID of the ACS system. */
16507
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16508
16508
  acs_system_id: string
16509
16509
  event_type: 'acs_system.connected'
16510
16510
  }
@@ -16513,13 +16513,13 @@ export interface Routes {
16513
16513
  event_id: string
16514
16514
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16515
16515
  workspace_id: string
16516
- /** Time at which the event was created. */
16516
+ /** Date and time at which the event was created. */
16517
16517
  created_at: string
16518
- /** Time when the event occurred. */
16518
+ /** Date and time at which the event occurred. */
16519
16519
  occurred_at: string
16520
- /** ID of the connected account. */
16520
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16521
16521
  connected_account_id?: string | undefined
16522
- /** ID of the ACS system. */
16522
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16523
16523
  acs_system_id: string
16524
16524
  event_type: 'acs_system.added'
16525
16525
  }
@@ -16528,13 +16528,13 @@ export interface Routes {
16528
16528
  event_id: string
16529
16529
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16530
16530
  workspace_id: string
16531
- /** Time at which the event was created. */
16531
+ /** Date and time at which the event was created. */
16532
16532
  created_at: string
16533
- /** Time when the event occurred. */
16533
+ /** Date and time at which the event occurred. */
16534
16534
  occurred_at: string
16535
- /** ID of the connected account. */
16535
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16536
16536
  connected_account_id?: string | undefined
16537
- /** ID of the ACS system. */
16537
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16538
16538
  acs_system_id: string
16539
16539
  event_type: 'acs_system.disconnected'
16540
16540
  }
@@ -16543,13 +16543,13 @@ export interface Routes {
16543
16543
  event_id: string
16544
16544
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16545
16545
  workspace_id: string
16546
- /** Time at which the event was created. */
16546
+ /** Date and time at which the event was created. */
16547
16547
  created_at: string
16548
- /** Time when the event occurred. */
16548
+ /** Date and time at which the event occurred. */
16549
16549
  occurred_at: string
16550
- /** ID of the connected account. */
16550
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16551
16551
  connected_account_id?: string | undefined
16552
- /** ID of the ACS system. */
16552
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16553
16553
  acs_system_id: string
16554
16554
  acs_credential_id: string
16555
16555
  event_type: 'acs_credential.deleted'
@@ -16559,13 +16559,13 @@ export interface Routes {
16559
16559
  event_id: string
16560
16560
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16561
16561
  workspace_id: string
16562
- /** Time at which the event was created. */
16562
+ /** Date and time at which the event was created. */
16563
16563
  created_at: string
16564
- /** Time when the event occurred. */
16564
+ /** Date and time at which the event occurred. */
16565
16565
  occurred_at: string
16566
- /** ID of the connected account. */
16566
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16567
16567
  connected_account_id?: string | undefined
16568
- /** ID of the ACS system. */
16568
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16569
16569
  acs_system_id: string
16570
16570
  acs_credential_id: string
16571
16571
  event_type: 'acs_credential.issued'
@@ -16575,13 +16575,13 @@ export interface Routes {
16575
16575
  event_id: string
16576
16576
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16577
16577
  workspace_id: string
16578
- /** Time at which the event was created. */
16578
+ /** Date and time at which the event was created. */
16579
16579
  created_at: string
16580
- /** Time when the event occurred. */
16580
+ /** Date and time at which the event occurred. */
16581
16581
  occurred_at: string
16582
- /** ID of the connected account. */
16582
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16583
16583
  connected_account_id?: string | undefined
16584
- /** ID of the ACS system. */
16584
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16585
16585
  acs_system_id: string
16586
16586
  acs_user_id: string
16587
16587
  event_type: 'acs_user.deleted'
@@ -16591,15 +16591,15 @@ export interface Routes {
16591
16591
  event_id: string
16592
16592
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16593
16593
  workspace_id: string
16594
- /** Time at which the event was created. */
16594
+ /** Date and time at which the event was created. */
16595
16595
  created_at: string
16596
- /** Time when the event occurred. */
16596
+ /** Date and time at which the event occurred. */
16597
16597
  occurred_at: string
16598
- /** ID of the connected account. */
16598
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16599
16599
  connected_account_id?: string | undefined
16600
- /** ID of the ACS system. */
16600
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16601
16601
  acs_system_id: string
16602
- /** ID of the ACS encoder. */
16602
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
16603
16603
  acs_encoder_id: string
16604
16604
  event_type: 'acs_encoder.added'
16605
16605
  }
@@ -16608,15 +16608,15 @@ export interface Routes {
16608
16608
  event_id: string
16609
16609
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16610
16610
  workspace_id: string
16611
- /** Time at which the event was created. */
16611
+ /** Date and time at which the event was created. */
16612
16612
  created_at: string
16613
- /** Time when the event occurred. */
16613
+ /** Date and time at which the event occurred. */
16614
16614
  occurred_at: string
16615
- /** ID of the connected account. */
16615
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16616
16616
  connected_account_id?: string | undefined
16617
- /** ID of the ACS system. */
16617
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16618
16618
  acs_system_id: string
16619
- /** ID of the ACS encoder. */
16619
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
16620
16620
  acs_encoder_id: string
16621
16621
  event_type: 'acs_encoder.removed'
16622
16622
  }
@@ -16625,11 +16625,11 @@ export interface Routes {
16625
16625
  event_id: string
16626
16626
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16627
16627
  workspace_id: string
16628
- /** Time at which the event was created. */
16628
+ /** Date and time at which the event was created. */
16629
16629
  created_at: string
16630
- /** Time when the event occurred. */
16630
+ /** Date and time at which the event occurred. */
16631
16631
  occurred_at: string
16632
- /** ID of the client session. */
16632
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
16633
16633
  client_session_id: string
16634
16634
  event_type: 'client_session.deleted'
16635
16635
  }
@@ -16638,14 +16638,14 @@ export interface Routes {
16638
16638
  event_id: string
16639
16639
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16640
16640
  workspace_id: string
16641
- /** Time at which the event was created. */
16641
+ /** Date and time at which the event was created. */
16642
16642
  created_at: string
16643
- /** Time when the event occurred. */
16643
+ /** Date and time at which the event occurred. */
16644
16644
  occurred_at: string
16645
- /** ID of the connected account. */
16645
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16646
16646
  connected_account_id: string
16647
16647
  event_type: 'connected_account.connected'
16648
- /** ID of the connect webview. */
16648
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16649
16649
  connect_webview_id: string
16650
16650
  }
16651
16651
  | {
@@ -16653,14 +16653,14 @@ export interface Routes {
16653
16653
  event_id: string
16654
16654
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16655
16655
  workspace_id: string
16656
- /** Time at which the event was created. */
16656
+ /** Date and time at which the event was created. */
16657
16657
  created_at: string
16658
- /** Time when the event occurred. */
16658
+ /** Date and time at which the event occurred. */
16659
16659
  occurred_at: string
16660
- /** ID of the connected account. */
16660
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16661
16661
  connected_account_id: string
16662
16662
  event_type: 'connected_account.created'
16663
- /** ID of the connect webview. */
16663
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16664
16664
  connect_webview_id: string
16665
16665
  }
16666
16666
  | {
@@ -16668,14 +16668,14 @@ export interface Routes {
16668
16668
  event_id: string
16669
16669
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16670
16670
  workspace_id: string
16671
- /** Time at which the event was created. */
16671
+ /** Date and time at which the event was created. */
16672
16672
  created_at: string
16673
- /** Time when the event occurred. */
16673
+ /** Date and time at which the event occurred. */
16674
16674
  occurred_at: string
16675
- /** ID of the connected account. */
16675
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16676
16676
  connected_account_id: string
16677
16677
  event_type: 'connected_account.successful_login'
16678
- /** ID of the connect webview. */
16678
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16679
16679
  connect_webview_id: string
16680
16680
  }
16681
16681
  | {
@@ -16683,11 +16683,11 @@ export interface Routes {
16683
16683
  event_id: string
16684
16684
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16685
16685
  workspace_id: string
16686
- /** Time at which the event was created. */
16686
+ /** Date and time at which the event was created. */
16687
16687
  created_at: string
16688
- /** Time when the event occurred. */
16688
+ /** Date and time at which the event occurred. */
16689
16689
  occurred_at: string
16690
- /** ID of the connected account. */
16690
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16691
16691
  connected_account_id: string
16692
16692
  event_type: 'connected_account.disconnected'
16693
16693
  }
@@ -16696,11 +16696,11 @@ export interface Routes {
16696
16696
  event_id: string
16697
16697
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16698
16698
  workspace_id: string
16699
- /** Time at which the event was created. */
16699
+ /** Date and time at which the event was created. */
16700
16700
  created_at: string
16701
- /** Time when the event occurred. */
16701
+ /** Date and time at which the event occurred. */
16702
16702
  occurred_at: string
16703
- /** ID of the connected account. */
16703
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16704
16704
  connected_account_id: string
16705
16705
  event_type: 'connected_account.completed_first_sync'
16706
16706
  }
@@ -16709,11 +16709,11 @@ export interface Routes {
16709
16709
  event_id: string
16710
16710
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16711
16711
  workspace_id: string
16712
- /** Time at which the event was created. */
16712
+ /** Date and time at which the event was created. */
16713
16713
  created_at: string
16714
- /** Time when the event occurred. */
16714
+ /** Date and time at which the event occurred. */
16715
16715
  occurred_at: string
16716
- /** ID of the connected account. */
16716
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16717
16717
  connected_account_id: string
16718
16718
  event_type: 'connected_account.deleted'
16719
16719
  }
@@ -16722,11 +16722,11 @@ export interface Routes {
16722
16722
  event_id: string
16723
16723
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16724
16724
  workspace_id: string
16725
- /** Time at which the event was created. */
16725
+ /** Date and time at which the event was created. */
16726
16726
  created_at: string
16727
- /** Time when the event occurred. */
16727
+ /** Date and time at which the event occurred. */
16728
16728
  occurred_at: string
16729
- /** ID of the connected account. */
16729
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16730
16730
  connected_account_id: string
16731
16731
  event_type: 'connected_account.completed_first_sync_after_reconnection'
16732
16732
  }
@@ -16735,15 +16735,15 @@ export interface Routes {
16735
16735
  event_id: string
16736
16736
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16737
16737
  workspace_id: string
16738
- /** Time at which the event was created. */
16738
+ /** Date and time at which the event was created. */
16739
16739
  created_at: string
16740
- /** Time when the event occurred. */
16740
+ /** Date and time at which the event occurred. */
16741
16741
  occurred_at: string
16742
- /** The ID of the action attempt. */
16742
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16743
16743
  action_attempt_id: string
16744
- /** The type of action. */
16744
+ /** Type of action. */
16745
16745
  action_type: string
16746
- /** The status of the action. */
16746
+ /** Status of the action. */
16747
16747
  status: string
16748
16748
  event_type: 'action_attempt.lock_door.succeeded'
16749
16749
  }
@@ -16752,15 +16752,15 @@ export interface Routes {
16752
16752
  event_id: string
16753
16753
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16754
16754
  workspace_id: string
16755
- /** Time at which the event was created. */
16755
+ /** Date and time at which the event was created. */
16756
16756
  created_at: string
16757
- /** Time when the event occurred. */
16757
+ /** Date and time at which the event occurred. */
16758
16758
  occurred_at: string
16759
- /** The ID of the action attempt. */
16759
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16760
16760
  action_attempt_id: string
16761
- /** The type of action. */
16761
+ /** Type of action. */
16762
16762
  action_type: string
16763
- /** The status of the action. */
16763
+ /** Status of the action. */
16764
16764
  status: string
16765
16765
  event_type: 'action_attempt.lock_door.failed'
16766
16766
  }
@@ -16769,15 +16769,15 @@ export interface Routes {
16769
16769
  event_id: string
16770
16770
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16771
16771
  workspace_id: string
16772
- /** Time at which the event was created. */
16772
+ /** Date and time at which the event was created. */
16773
16773
  created_at: string
16774
- /** Time when the event occurred. */
16774
+ /** Date and time at which the event occurred. */
16775
16775
  occurred_at: string
16776
- /** The ID of the action attempt. */
16776
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16777
16777
  action_attempt_id: string
16778
- /** The type of action. */
16778
+ /** Type of action. */
16779
16779
  action_type: string
16780
- /** The status of the action. */
16780
+ /** Status of the action. */
16781
16781
  status: string
16782
16782
  event_type: 'action_attempt.unlock_door.succeeded'
16783
16783
  }
@@ -16786,15 +16786,15 @@ export interface Routes {
16786
16786
  event_id: string
16787
16787
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16788
16788
  workspace_id: string
16789
- /** Time at which the event was created. */
16789
+ /** Date and time at which the event was created. */
16790
16790
  created_at: string
16791
- /** Time when the event occurred. */
16791
+ /** Date and time at which the event occurred. */
16792
16792
  occurred_at: string
16793
- /** The ID of the action attempt. */
16793
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16794
16794
  action_attempt_id: string
16795
- /** The type of action. */
16795
+ /** Type of action. */
16796
16796
  action_type: string
16797
- /** The status of the action. */
16797
+ /** Status of the action. */
16798
16798
  status: string
16799
16799
  event_type: 'action_attempt.unlock_door.failed'
16800
16800
  }
@@ -16803,14 +16803,14 @@ export interface Routes {
16803
16803
  event_id: string
16804
16804
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16805
16805
  workspace_id: string
16806
- /** Time at which the event was created. */
16806
+ /** Date and time at which the event was created. */
16807
16807
  created_at: string
16808
- /** Time when the event occurred. */
16808
+ /** Date and time at which the event occurred. */
16809
16809
  occurred_at: string
16810
- /** ID of the connect webview. */
16810
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16811
16811
  connect_webview_id: string
16812
16812
  event_type: 'connect_webview.login_succeeded'
16813
- /** ID of the connected account. */
16813
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16814
16814
  connected_account_id: string
16815
16815
  }
16816
16816
  | {
@@ -16818,11 +16818,11 @@ export interface Routes {
16818
16818
  event_id: string
16819
16819
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16820
16820
  workspace_id: string
16821
- /** Time at which the event was created. */
16821
+ /** Date and time at which the event was created. */
16822
16822
  created_at: string
16823
- /** Time when the event occurred. */
16823
+ /** Date and time at which the event occurred. */
16824
16824
  occurred_at: string
16825
- /** ID of the connect webview. */
16825
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16826
16826
  connect_webview_id: string
16827
16827
  event_type: 'connect_webview.login_failed'
16828
16828
  }
@@ -16831,9 +16831,9 @@ export interface Routes {
16831
16831
  event_id: string
16832
16832
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16833
16833
  workspace_id: string
16834
- /** Time at which the event was created. */
16834
+ /** Date and time at which the event was created. */
16835
16835
  created_at: string
16836
- /** Time when the event occurred. */
16836
+ /** Date and time at which the event occurred. */
16837
16837
  occurred_at: string
16838
16838
  /** ID of the device. */
16839
16839
  device_id: string
@@ -16846,9 +16846,9 @@ export interface Routes {
16846
16846
  event_id: string
16847
16847
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16848
16848
  workspace_id: string
16849
- /** Time at which the event was created. */
16849
+ /** Date and time at which the event was created. */
16850
16850
  created_at: string
16851
- /** Time when the event occurred. */
16851
+ /** Date and time at which the event occurred. */
16852
16852
  occurred_at: string
16853
16853
  /** ID of the device. */
16854
16854
  device_id: string
@@ -16861,9 +16861,9 @@ export interface Routes {
16861
16861
  event_id: string
16862
16862
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16863
16863
  workspace_id: string
16864
- /** Time at which the event was created. */
16864
+ /** Date and time at which the event was created. */
16865
16865
  created_at: string
16866
- /** Time when the event occurred. */
16866
+ /** Date and time at which the event occurred. */
16867
16867
  occurred_at: string
16868
16868
  /** ID of the device. */
16869
16869
  device_id: string
@@ -16876,9 +16876,9 @@ export interface Routes {
16876
16876
  event_id: string
16877
16877
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16878
16878
  workspace_id: string
16879
- /** Time at which the event was created. */
16879
+ /** Date and time at which the event was created. */
16880
16880
  created_at: string
16881
- /** Time when the event occurred. */
16881
+ /** Date and time at which the event occurred. */
16882
16882
  occurred_at: string
16883
16883
  /** ID of the device. */
16884
16884
  device_id: string
@@ -16891,9 +16891,9 @@ export interface Routes {
16891
16891
  event_id: string
16892
16892
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16893
16893
  workspace_id: string
16894
- /** Time at which the event was created. */
16894
+ /** Date and time at which the event was created. */
16895
16895
  created_at: string
16896
- /** Time when the event occurred. */
16896
+ /** Date and time at which the event occurred. */
16897
16897
  occurred_at: string
16898
16898
  /** ID of the device. */
16899
16899
  device_id: string
@@ -16906,9 +16906,9 @@ export interface Routes {
16906
16906
  event_id: string
16907
16907
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16908
16908
  workspace_id: string
16909
- /** Time at which the event was created. */
16909
+ /** Date and time at which the event was created. */
16910
16910
  created_at: string
16911
- /** Time when the event occurred. */
16911
+ /** Date and time at which the event occurred. */
16912
16912
  occurred_at: string
16913
16913
  /** ID of the device. */
16914
16914
  device_id: string
@@ -16926,9 +16926,9 @@ export interface Routes {
16926
16926
  event_id: string
16927
16927
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16928
16928
  workspace_id: string
16929
- /** Time at which the event was created. */
16929
+ /** Date and time at which the event was created. */
16930
16930
  created_at: string
16931
- /** Time when the event occurred. */
16931
+ /** Date and time at which the event occurred. */
16932
16932
  occurred_at: string
16933
16933
  /** ID of the device. */
16934
16934
  device_id: string
@@ -16946,9 +16946,9 @@ export interface Routes {
16946
16946
  event_id: string
16947
16947
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16948
16948
  workspace_id: string
16949
- /** Time at which the event was created. */
16949
+ /** Date and time at which the event was created. */
16950
16950
  created_at: string
16951
- /** Time when the event occurred. */
16951
+ /** Date and time at which the event occurred. */
16952
16952
  occurred_at: string
16953
16953
  /** ID of the device. */
16954
16954
  device_id: string
@@ -16961,9 +16961,9 @@ export interface Routes {
16961
16961
  event_id: string
16962
16962
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16963
16963
  workspace_id: string
16964
- /** Time at which the event was created. */
16964
+ /** Date and time at which the event was created. */
16965
16965
  created_at: string
16966
- /** Time when the event occurred. */
16966
+ /** Date and time at which the event occurred. */
16967
16967
  occurred_at: string
16968
16968
  /** ID of the device. */
16969
16969
  device_id: string
@@ -16978,9 +16978,9 @@ export interface Routes {
16978
16978
  event_id: string
16979
16979
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16980
16980
  workspace_id: string
16981
- /** Time at which the event was created. */
16981
+ /** Date and time at which the event was created. */
16982
16982
  created_at: string
16983
- /** Time when the event occurred. */
16983
+ /** Date and time at which the event occurred. */
16984
16984
  occurred_at: string
16985
16985
  /** ID of the device. */
16986
16986
  device_id: string
@@ -16997,9 +16997,9 @@ export interface Routes {
16997
16997
  event_id: string
16998
16998
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16999
16999
  workspace_id: string
17000
- /** Time at which the event was created. */
17000
+ /** Date and time at which the event was created. */
17001
17001
  created_at: string
17002
- /** Time when the event occurred. */
17002
+ /** Date and time at which the event occurred. */
17003
17003
  occurred_at: string
17004
17004
  /** ID of the device. */
17005
17005
  device_id: string
@@ -17012,9 +17012,9 @@ export interface Routes {
17012
17012
  event_id: string
17013
17013
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17014
17014
  workspace_id: string
17015
- /** Time at which the event was created. */
17015
+ /** Date and time at which the event was created. */
17016
17016
  created_at: string
17017
- /** Time when the event occurred. */
17017
+ /** Date and time at which the event occurred. */
17018
17018
  occurred_at: string
17019
17019
  /** ID of the device. */
17020
17020
  device_id: string
@@ -17027,9 +17027,9 @@ export interface Routes {
17027
17027
  event_id: string
17028
17028
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17029
17029
  workspace_id: string
17030
- /** Time at which the event was created. */
17030
+ /** Date and time at which the event was created. */
17031
17031
  created_at: string
17032
- /** Time when the event occurred. */
17032
+ /** Date and time at which the event occurred. */
17033
17033
  occurred_at: string
17034
17034
  /** ID of the device. */
17035
17035
  device_id: string
@@ -17042,9 +17042,9 @@ export interface Routes {
17042
17042
  event_id: string
17043
17043
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17044
17044
  workspace_id: string
17045
- /** Time at which the event was created. */
17045
+ /** Date and time at which the event was created. */
17046
17046
  created_at: string
17047
- /** Time when the event occurred. */
17047
+ /** Date and time at which the event occurred. */
17048
17048
  occurred_at: string
17049
17049
  /** ID of the device. */
17050
17050
  device_id: string
@@ -17057,9 +17057,9 @@ export interface Routes {
17057
17057
  event_id: string
17058
17058
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17059
17059
  workspace_id: string
17060
- /** Time at which the event was created. */
17060
+ /** Date and time at which the event was created. */
17061
17061
  created_at: string
17062
- /** Time when the event occurred. */
17062
+ /** Date and time at which the event occurred. */
17063
17063
  occurred_at: string
17064
17064
  /** ID of the device. */
17065
17065
  device_id: string
@@ -17072,9 +17072,9 @@ export interface Routes {
17072
17072
  event_id: string
17073
17073
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17074
17074
  workspace_id: string
17075
- /** Time at which the event was created. */
17075
+ /** Date and time at which the event was created. */
17076
17076
  created_at: string
17077
- /** Time when the event occurred. */
17077
+ /** Date and time at which the event occurred. */
17078
17078
  occurred_at: string
17079
17079
  /** ID of the device. */
17080
17080
  device_id: string
@@ -17087,9 +17087,9 @@ export interface Routes {
17087
17087
  event_id: string
17088
17088
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17089
17089
  workspace_id: string
17090
- /** Time at which the event was created. */
17090
+ /** Date and time at which the event was created. */
17091
17091
  created_at: string
17092
- /** Time when the event occurred. */
17092
+ /** Date and time at which the event occurred. */
17093
17093
  occurred_at: string
17094
17094
  /** ID of the device. */
17095
17095
  device_id: string
@@ -17102,9 +17102,9 @@ export interface Routes {
17102
17102
  event_id: string
17103
17103
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17104
17104
  workspace_id: string
17105
- /** Time at which the event was created. */
17105
+ /** Date and time at which the event was created. */
17106
17106
  created_at: string
17107
- /** Time when the event occurred. */
17107
+ /** Date and time at which the event occurred. */
17108
17108
  occurred_at: string
17109
17109
  /** ID of the device. */
17110
17110
  device_id: string
@@ -17117,9 +17117,9 @@ export interface Routes {
17117
17117
  event_id: string
17118
17118
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17119
17119
  workspace_id: string
17120
- /** Time at which the event was created. */
17120
+ /** Date and time at which the event was created. */
17121
17121
  created_at: string
17122
- /** Time when the event occurred. */
17122
+ /** Date and time at which the event occurred. */
17123
17123
  occurred_at: string
17124
17124
  /** ID of the device. */
17125
17125
  device_id: string
@@ -17132,9 +17132,9 @@ export interface Routes {
17132
17132
  event_id: string
17133
17133
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17134
17134
  workspace_id: string
17135
- /** Time at which the event was created. */
17135
+ /** Date and time at which the event was created. */
17136
17136
  created_at: string
17137
- /** Time when the event occurred. */
17137
+ /** Date and time at which the event occurred. */
17138
17138
  occurred_at: string
17139
17139
  /** ID of the device. */
17140
17140
  device_id: string
@@ -17147,9 +17147,9 @@ export interface Routes {
17147
17147
  event_id: string
17148
17148
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17149
17149
  workspace_id: string
17150
- /** Time at which the event was created. */
17150
+ /** Date and time at which the event was created. */
17151
17151
  created_at: string
17152
- /** Time when the event occurred. */
17152
+ /** Date and time at which the event occurred. */
17153
17153
  occurred_at: string
17154
17154
  /** ID of the device. */
17155
17155
  device_id: string
@@ -17162,9 +17162,9 @@ export interface Routes {
17162
17162
  event_id: string
17163
17163
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17164
17164
  workspace_id: string
17165
- /** Time at which the event was created. */
17165
+ /** Date and time at which the event was created. */
17166
17166
  created_at: string
17167
- /** Time when the event occurred. */
17167
+ /** Date and time at which the event occurred. */
17168
17168
  occurred_at: string
17169
17169
  /** ID of the device. */
17170
17170
  device_id: string
@@ -17177,9 +17177,9 @@ export interface Routes {
17177
17177
  event_id: string
17178
17178
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17179
17179
  workspace_id: string
17180
- /** Time at which the event was created. */
17180
+ /** Date and time at which the event was created. */
17181
17181
  created_at: string
17182
- /** Time when the event occurred. */
17182
+ /** Date and time at which the event occurred. */
17183
17183
  occurred_at: string
17184
17184
  /** ID of the device. */
17185
17185
  device_id: string
@@ -17204,9 +17204,9 @@ export interface Routes {
17204
17204
  event_id: string
17205
17205
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17206
17206
  workspace_id: string
17207
- /** Time at which the event was created. */
17207
+ /** Date and time at which the event was created. */
17208
17208
  created_at: string
17209
- /** Time when the event occurred. */
17209
+ /** Date and time at which the event occurred. */
17210
17210
  occurred_at: string
17211
17211
  /** ID of the device. */
17212
17212
  device_id: string
@@ -17217,7 +17217,7 @@ export interface Routes {
17217
17217
  access_code_id?: string | undefined
17218
17218
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
17219
17219
  action_attempt_id?: string | undefined
17220
- /** Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
17220
+ /** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
17221
17221
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
17222
17222
  }
17223
17223
  | {
@@ -17225,9 +17225,9 @@ export interface Routes {
17225
17225
  event_id: string
17226
17226
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17227
17227
  workspace_id: string
17228
- /** Time at which the event was created. */
17228
+ /** Date and time at which the event was created. */
17229
17229
  created_at: string
17230
- /** Time when the event occurred. */
17230
+ /** Date and time at which the event occurred. */
17231
17231
  occurred_at: string
17232
17232
  /** ID of the device. */
17233
17233
  device_id: string
@@ -17238,7 +17238,7 @@ export interface Routes {
17238
17238
  access_code_id?: string | undefined
17239
17239
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
17240
17240
  action_attempt_id?: string | undefined
17241
- /** Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
17241
+ /** Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device. */
17242
17242
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
17243
17243
  }
17244
17244
  | {
@@ -17246,9 +17246,9 @@ export interface Routes {
17246
17246
  event_id: string
17247
17247
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17248
17248
  workspace_id: string
17249
- /** Time at which the event was created. */
17249
+ /** Date and time at which the event was created. */
17250
17250
  created_at: string
17251
- /** Time when the event occurred. */
17251
+ /** Date and time at which the event occurred. */
17252
17252
  occurred_at: string
17253
17253
  /** ID of the device. */
17254
17254
  device_id: string
@@ -17263,9 +17263,9 @@ export interface Routes {
17263
17263
  event_id: string
17264
17264
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17265
17265
  workspace_id: string
17266
- /** Time at which the event was created. */
17266
+ /** Date and time at which the event was created. */
17267
17267
  created_at: string
17268
- /** Time when the event occurred. */
17268
+ /** Date and time at which the event occurred. */
17269
17269
  occurred_at: string
17270
17270
  /** ID of the device. */
17271
17271
  device_id: string
@@ -17276,7 +17276,7 @@ export interface Routes {
17276
17276
  thermostat_schedule_id: string | null
17277
17277
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
17278
17278
  climate_preset_key: string
17279
- /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat. */
17279
+ /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17280
17280
  is_fallback_climate_preset: boolean
17281
17281
  }
17282
17282
  | {
@@ -17284,16 +17284,16 @@ export interface Routes {
17284
17284
  event_id: string
17285
17285
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17286
17286
  workspace_id: string
17287
- /** Time at which the event was created. */
17287
+ /** Date and time at which the event was created. */
17288
17288
  created_at: string
17289
- /** Time when the event occurred. */
17289
+ /** Date and time at which the event occurred. */
17290
17290
  occurred_at: string
17291
17291
  /** ID of the device. */
17292
17292
  device_id: string
17293
17293
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17294
17294
  connected_account_id: string
17295
17295
  event_type: 'thermostat.manually_adjusted'
17296
- /** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
17296
+ /** Method used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17297
17297
  method: 'seam' | 'external'
17298
17298
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
17299
17299
  fan_mode_setting?:
@@ -17317,18 +17317,18 @@ export interface Routes {
17317
17317
  event_id: string
17318
17318
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17319
17319
  workspace_id: string
17320
- /** Time at which the event was created. */
17320
+ /** Date and time at which the event was created. */
17321
17321
  created_at: string
17322
- /** Time when the event occurred. */
17322
+ /** Date and time at which the event occurred. */
17323
17323
  occurred_at: string
17324
17324
  /** ID of the device. */
17325
17325
  device_id: string
17326
17326
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17327
17327
  connected_account_id: string
17328
17328
  event_type: 'thermostat.temperature_threshold_exceeded'
17329
- /** Temperature, in °C, reported by the thermostat. */
17329
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17330
17330
  temperature_celsius: number
17331
- /** Temperature, in °F, reported by the thermostat. */
17331
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17332
17332
  temperature_fahrenheit: number
17333
17333
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
17334
17334
  upper_limit_celsius: number | null
@@ -17344,18 +17344,18 @@ export interface Routes {
17344
17344
  event_id: string
17345
17345
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17346
17346
  workspace_id: string
17347
- /** Time at which the event was created. */
17347
+ /** Date and time at which the event was created. */
17348
17348
  created_at: string
17349
- /** Time when the event occurred. */
17349
+ /** Date and time at which the event occurred. */
17350
17350
  occurred_at: string
17351
17351
  /** ID of the device. */
17352
17352
  device_id: string
17353
17353
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17354
17354
  connected_account_id: string
17355
17355
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
17356
- /** Temperature, in °C, reported by the thermostat. */
17356
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17357
17357
  temperature_celsius: number
17358
- /** Temperature, in °F, reported by the thermostat. */
17358
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17359
17359
  temperature_fahrenheit: number
17360
17360
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
17361
17361
  upper_limit_celsius: number | null
@@ -17371,11 +17371,11 @@ export interface Routes {
17371
17371
  event_id: string
17372
17372
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17373
17373
  workspace_id: string
17374
- /** Time at which the event was created. */
17374
+ /** Date and time at which the event was created. */
17375
17375
  created_at: string
17376
- /** Time when the event occurred. */
17376
+ /** Date and time at which the event occurred. */
17377
17377
  occurred_at: string
17378
- /** ID of the enrollment automation. */
17378
+ /** ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut). */
17379
17379
  enrollment_automation_id: string
17380
17380
  event_type: 'enrollment_automation.deleted'
17381
17381
  }
@@ -17384,11 +17384,11 @@ export interface Routes {
17384
17384
  event_id: string
17385
17385
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17386
17386
  workspace_id: string
17387
- /** Time at which the event was created. */
17387
+ /** Date and time at which the event was created. */
17388
17388
  created_at: string
17389
- /** Time when the event occurred. */
17389
+ /** Date and time at which the event occurred. */
17390
17390
  occurred_at: string
17391
- /** ID of the device. */
17391
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
17392
17392
  device_id: string
17393
17393
  event_type: 'phone.deactivated'
17394
17394
  }