@seamapi/types 1.322.3 → 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 (56) hide show
  1. package/dist/connect.cjs +743 -742
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +559 -653
  4. package/lib/seam/connect/models/acs/acs-user.d.ts +53 -0
  5. package/lib/seam/connect/models/acs/acs-user.js +23 -0
  6. package/lib/seam/connect/models/acs/acs-user.js.map +1 -1
  7. package/lib/seam/connect/models/events/access-codes.js +32 -41
  8. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  9. package/lib/seam/connect/models/events/acs/common.js +9 -12
  10. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  11. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  12. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  13. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  14. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  15. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  16. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  17. package/lib/seam/connect/models/events/acs/users.js +5 -3
  18. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  19. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  20. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  21. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  22. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  23. package/lib/seam/connect/models/events/common.js +5 -2
  24. package/lib/seam/connect/models/events/common.js.map +1 -1
  25. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  26. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  27. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  28. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  29. package/lib/seam/connect/models/events/devices.js +43 -47
  30. package/lib/seam/connect/models/events/devices.js.map +1 -1
  31. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  32. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  33. package/lib/seam/connect/models/events/phones.js +4 -6
  34. package/lib/seam/connect/models/events/phones.js.map +1 -1
  35. package/lib/seam/connect/openapi.d.ts +34 -150
  36. package/lib/seam/connect/openapi.js +410 -463
  37. package/lib/seam/connect/openapi.js.map +1 -1
  38. package/lib/seam/connect/route-types.d.ts +525 -503
  39. package/package.json +1 -1
  40. package/src/lib/seam/connect/models/acs/acs-user.ts +35 -0
  41. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  42. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  43. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  44. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  45. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  46. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  47. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  48. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  49. package/src/lib/seam/connect/models/events/common.ts +5 -2
  50. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  51. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  52. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  53. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  54. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  55. package/src/lib/seam/connect/openapi.ts +568 -463
  56. package/src/lib/seam/connect/route-types.ts +525 -503
@@ -6404,9 +6404,9 @@ export interface Routes {
6404
6404
  queryParams: {}
6405
6405
  jsonBody: {}
6406
6406
  commonParams: {
6407
- /** ID of the acs_encoder to use for the encoding. */
6407
+ /** ID of the `acs_encoder` to use to encode the `acs_credential`. */
6408
6408
  acs_encoder_id: string
6409
- /** ID of the acs_credential to encode on a physical card. */
6409
+ /** ID of the `acs_credential` to encode onto a card. */
6410
6410
  acs_credential_id: string
6411
6411
  }
6412
6412
  formData: {}
@@ -7355,15 +7355,21 @@ export interface Routes {
7355
7355
  jsonBody: {}
7356
7356
  commonParams:
7357
7357
  | {
7358
+ /** ID of the `acs_system` for which you want to retrieve all `acs_encoder`s. */
7358
7359
  acs_system_id: string
7360
+ /** Number of `acs_encoders` to return. */
7359
7361
  limit?: number
7360
7362
  }
7361
7363
  | {
7364
+ /** IDs of the `acs_system`s for which you want to retrieve all `acs_encoder`s. */
7362
7365
  acs_system_ids: string[]
7366
+ /** Number of `acs_encoders` to return. */
7363
7367
  limit?: number
7364
7368
  }
7365
7369
  | {
7370
+ /** IDs of the `acs_encoder`s that you want to retrieve. */
7366
7371
  acs_encoder_ids: string[]
7372
+ /** Number of `acs_encoders` to return. */
7367
7373
  limit?: number
7368
7374
  }
7369
7375
  formData: {}
@@ -7397,7 +7403,7 @@ export interface Routes {
7397
7403
  queryParams: {}
7398
7404
  jsonBody: {}
7399
7405
  commonParams: {
7400
- /** ID of the acs_encoder to use for the scan. */
7406
+ /** ID of the `acs_encoder` to use for the scan. */
7401
7407
  acs_encoder_id: string
7402
7408
  }
7403
7409
  formData: {}
@@ -8345,12 +8351,17 @@ export interface Routes {
8345
8351
  queryParams: {}
8346
8352
  jsonBody:
8347
8353
  | {
8354
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
8348
8355
  acs_encoder_id: string
8356
+ /** Code of the error to simulate. */
8349
8357
  error_code?: 'no_credential_on_encoder'
8350
8358
  }
8351
8359
  | {
8360
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
8352
8361
  acs_encoder_id: string
8362
+ /** Code of the error to simulate. */
8353
8363
  error_code: 'uncategorized_error' | 'action_attempt_expired'
8364
+ /** ID of the `acs_credential` that will fail to be encoded onto a card in the next request. */
8354
8365
  acs_credential_id?: string | undefined
8355
8366
  }
8356
8367
  commonParams: {}
@@ -8362,7 +8373,9 @@ export interface Routes {
8362
8373
  method: 'POST'
8363
8374
  queryParams: {}
8364
8375
  jsonBody: {
8376
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
8365
8377
  acs_encoder_id: string
8378
+ /** Scenario to simulate. */
8366
8379
  scenario?: 'credential_is_issued'
8367
8380
  }
8368
8381
  commonParams: {}
@@ -8375,10 +8388,12 @@ export interface Routes {
8375
8388
  queryParams: {}
8376
8389
  jsonBody:
8377
8390
  | {
8391
+ /** ID of the `acs_encoder` that will fail to scan the `acs_credential` in the next request. */
8378
8392
  acs_encoder_id: string
8379
8393
  error_code?: 'no_credential_on_encoder'
8380
8394
  }
8381
8395
  | {
8396
+ /** ID of the `acs_encoder` that will fail to scan the `acs_credential` in the next request. */
8382
8397
  acs_encoder_id: string
8383
8398
  error_code: 'uncategorized_error' | 'action_attempt_expired'
8384
8399
  acs_credential_id_on_seam?: string | undefined
@@ -8393,18 +8408,25 @@ export interface Routes {
8393
8408
  queryParams: {}
8394
8409
  jsonBody:
8395
8410
  | {
8411
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
8396
8412
  acs_encoder_id: string
8413
+ /** Scenario to simulate. */
8397
8414
  scenario?:
8398
8415
  | 'credential_exists_on_seam'
8399
8416
  | 'credential_on_encoder_needs_update'
8417
+ /** ID of the Seam `acs_credential` that matches the `acs_credential` on the encoder in this simulation. */
8400
8418
  acs_credential_id_on_seam?: string | undefined
8401
8419
  }
8402
8420
  | {
8421
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
8403
8422
  acs_encoder_id: string
8423
+ /** Scenario to simulate. */
8404
8424
  scenario: 'credential_does_not_exist_on_seam'
8405
8425
  }
8406
8426
  | {
8427
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
8407
8428
  acs_encoder_id: string
8429
+ /** Scenario to simulate. */
8408
8430
  scenario: 'credential_on_encoder_is_empty'
8409
8431
  }
8410
8432
  commonParams: {}
@@ -14798,15 +14820,15 @@ export interface Routes {
14798
14820
  event_id: string
14799
14821
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14800
14822
  workspace_id: string
14801
- /** Time at which the event was created. */
14823
+ /** Date and time at which the event was created. */
14802
14824
  created_at: string
14803
- /** Time when the event occurred. */
14825
+ /** Date and time at which the event occurred. */
14804
14826
  occurred_at: string
14805
- /** The ID of the access code. */
14827
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14806
14828
  access_code_id: string
14807
- /** The ID of the device. */
14829
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14808
14830
  device_id: string
14809
- /** The ID of the connected account. */
14831
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14810
14832
  connected_account_id: string
14811
14833
  event_type: 'access_code.created'
14812
14834
  }
@@ -14815,15 +14837,15 @@ export interface Routes {
14815
14837
  event_id: string
14816
14838
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14817
14839
  workspace_id: string
14818
- /** Time at which the event was created. */
14840
+ /** Date and time at which the event was created. */
14819
14841
  created_at: string
14820
- /** Time when the event occurred. */
14842
+ /** Date and time at which the event occurred. */
14821
14843
  occurred_at: string
14822
- /** The ID of the access code. */
14844
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14823
14845
  access_code_id: string
14824
- /** The ID of the device. */
14846
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14825
14847
  device_id: string
14826
- /** The ID of the connected account. */
14848
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14827
14849
  connected_account_id: string
14828
14850
  event_type: 'access_code.changed'
14829
14851
  }
@@ -14832,18 +14854,18 @@ export interface Routes {
14832
14854
  event_id: string
14833
14855
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14834
14856
  workspace_id: string
14835
- /** Time at which the event was created. */
14857
+ /** Date and time at which the event was created. */
14836
14858
  created_at: string
14837
- /** Time when the event occurred. */
14859
+ /** Date and time at which the event occurred. */
14838
14860
  occurred_at: string
14839
- /** The ID of the access code. */
14861
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14840
14862
  access_code_id: string
14841
- /** The ID of the device. */
14863
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14842
14864
  device_id: string
14843
- /** The ID of the connected account. */
14865
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14844
14866
  connected_account_id: string
14845
14867
  event_type: 'access_code.scheduled_on_device'
14846
- /** The code of the access code. */
14868
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14847
14869
  code: string
14848
14870
  }
14849
14871
  | {
@@ -14851,18 +14873,18 @@ export interface Routes {
14851
14873
  event_id: string
14852
14874
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14853
14875
  workspace_id: string
14854
- /** Time at which the event was created. */
14876
+ /** Date and time at which the event was created. */
14855
14877
  created_at: string
14856
- /** Time when the event occurred. */
14878
+ /** Date and time at which the event occurred. */
14857
14879
  occurred_at: string
14858
- /** The ID of the access code. */
14880
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14859
14881
  access_code_id: string
14860
- /** The ID of the device. */
14882
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14861
14883
  device_id: string
14862
- /** The ID of the connected account. */
14884
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14863
14885
  connected_account_id: string
14864
14886
  event_type: 'access_code.set_on_device'
14865
- /** The code of the access code. */
14887
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14866
14888
  code: string
14867
14889
  }
14868
14890
  | {
@@ -14870,15 +14892,15 @@ export interface Routes {
14870
14892
  event_id: string
14871
14893
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14872
14894
  workspace_id: string
14873
- /** Time at which the event was created. */
14895
+ /** Date and time at which the event was created. */
14874
14896
  created_at: string
14875
- /** Time when the event occurred. */
14897
+ /** Date and time at which the event occurred. */
14876
14898
  occurred_at: string
14877
- /** The ID of the access code. */
14899
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14878
14900
  access_code_id: string
14879
- /** The ID of the device. */
14901
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14880
14902
  device_id: string
14881
- /** The ID of the connected account. */
14903
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14882
14904
  connected_account_id: string
14883
14905
  event_type: 'access_code.removed_from_device'
14884
14906
  }
@@ -14887,15 +14909,15 @@ export interface Routes {
14887
14909
  event_id: string
14888
14910
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14889
14911
  workspace_id: string
14890
- /** Time at which the event was created. */
14912
+ /** Date and time at which the event was created. */
14891
14913
  created_at: string
14892
- /** Time when the event occurred. */
14914
+ /** Date and time at which the event occurred. */
14893
14915
  occurred_at: string
14894
- /** The ID of the access code. */
14916
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14895
14917
  access_code_id: string
14896
- /** The ID of the device. */
14918
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14897
14919
  device_id: string
14898
- /** The ID of the connected account. */
14920
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14899
14921
  connected_account_id: string
14900
14922
  event_type: 'access_code.delay_in_setting_on_device'
14901
14923
  }
@@ -14904,15 +14926,15 @@ export interface Routes {
14904
14926
  event_id: string
14905
14927
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14906
14928
  workspace_id: string
14907
- /** Time at which the event was created. */
14929
+ /** Date and time at which the event was created. */
14908
14930
  created_at: string
14909
- /** Time when the event occurred. */
14931
+ /** Date and time at which the event occurred. */
14910
14932
  occurred_at: string
14911
- /** The ID of the access code. */
14933
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14912
14934
  access_code_id: string
14913
- /** The ID of the device. */
14935
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14914
14936
  device_id: string
14915
- /** The ID of the connected account. */
14937
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14916
14938
  connected_account_id: string
14917
14939
  event_type: 'access_code.failed_to_set_on_device'
14918
14940
  }
@@ -14921,18 +14943,18 @@ export interface Routes {
14921
14943
  event_id: string
14922
14944
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14923
14945
  workspace_id: string
14924
- /** Time at which the event was created. */
14946
+ /** Date and time at which the event was created. */
14925
14947
  created_at: string
14926
- /** Time when the event occurred. */
14948
+ /** Date and time at which the event occurred. */
14927
14949
  occurred_at: string
14928
- /** The ID of the access code. */
14950
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14929
14951
  access_code_id: string
14930
- /** The ID of the device. */
14952
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14931
14953
  device_id: string
14932
- /** The ID of the connected account. */
14954
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14933
14955
  connected_account_id: string
14934
14956
  event_type: 'access_code.deleted'
14935
- /** The code of the access code. */
14957
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14936
14958
  code: string | null
14937
14959
  }
14938
14960
  | {
@@ -14940,15 +14962,15 @@ export interface Routes {
14940
14962
  event_id: string
14941
14963
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14942
14964
  workspace_id: string
14943
- /** Time at which the event was created. */
14965
+ /** Date and time at which the event was created. */
14944
14966
  created_at: string
14945
- /** Time when the event occurred. */
14967
+ /** Date and time at which the event occurred. */
14946
14968
  occurred_at: string
14947
- /** The ID of the access code. */
14969
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14948
14970
  access_code_id: string
14949
- /** The ID of the device. */
14971
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14950
14972
  device_id: string
14951
- /** The ID of the connected account. */
14973
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14952
14974
  connected_account_id: string
14953
14975
  event_type: 'access_code.delay_in_removing_from_device'
14954
14976
  }
@@ -14957,15 +14979,15 @@ export interface Routes {
14957
14979
  event_id: string
14958
14980
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14959
14981
  workspace_id: string
14960
- /** Time at which the event was created. */
14982
+ /** Date and time at which the event was created. */
14961
14983
  created_at: string
14962
- /** Time when the event occurred. */
14984
+ /** Date and time at which the event occurred. */
14963
14985
  occurred_at: string
14964
- /** The ID of the access code. */
14986
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14965
14987
  access_code_id: string
14966
- /** The ID of the device. */
14988
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14967
14989
  device_id: string
14968
- /** The ID of the connected account. */
14990
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14969
14991
  connected_account_id: string
14970
14992
  event_type: 'access_code.failed_to_remove_from_device'
14971
14993
  }
@@ -14974,15 +14996,15 @@ export interface Routes {
14974
14996
  event_id: string
14975
14997
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14976
14998
  workspace_id: string
14977
- /** Time at which the event was created. */
14999
+ /** Date and time at which the event was created. */
14978
15000
  created_at: string
14979
- /** Time when the event occurred. */
15001
+ /** Date and time at which the event occurred. */
14980
15002
  occurred_at: string
14981
- /** The ID of the access code. */
15003
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14982
15004
  access_code_id: string
14983
- /** The ID of the device. */
15005
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14984
15006
  device_id: string
14985
- /** The ID of the connected account. */
15007
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14986
15008
  connected_account_id: string
14987
15009
  event_type: 'access_code.modified_external_to_seam'
14988
15010
  }
@@ -14991,15 +15013,15 @@ export interface Routes {
14991
15013
  event_id: string
14992
15014
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14993
15015
  workspace_id: string
14994
- /** Time at which the event was created. */
15016
+ /** Date and time at which the event was created. */
14995
15017
  created_at: string
14996
- /** Time when the event occurred. */
15018
+ /** Date and time at which the event occurred. */
14997
15019
  occurred_at: string
14998
- /** The ID of the access code. */
15020
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
14999
15021
  access_code_id: string
15000
- /** The ID of the device. */
15022
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15001
15023
  device_id: string
15002
- /** The ID of the connected account. */
15024
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15003
15025
  connected_account_id: string
15004
15026
  event_type: 'access_code.deleted_external_to_seam'
15005
15027
  }
@@ -15008,15 +15030,15 @@ export interface Routes {
15008
15030
  event_id: string
15009
15031
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15010
15032
  workspace_id: string
15011
- /** Time at which the event was created. */
15033
+ /** Date and time at which the event was created. */
15012
15034
  created_at: string
15013
- /** Time when the event occurred. */
15035
+ /** Date and time at which the event occurred. */
15014
15036
  occurred_at: string
15015
- /** The ID of the access code. */
15037
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15016
15038
  access_code_id: string
15017
- /** The ID of the device. */
15039
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15018
15040
  device_id: string
15019
- /** The ID of the connected account. */
15041
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15020
15042
  connected_account_id: string
15021
15043
  event_type: 'access_code.backup_access_code_pulled'
15022
15044
  backup_access_code_id: string
@@ -15026,15 +15048,15 @@ export interface Routes {
15026
15048
  event_id: string
15027
15049
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15028
15050
  workspace_id: string
15029
- /** Time at which the event was created. */
15051
+ /** Date and time at which the event was created. */
15030
15052
  created_at: string
15031
- /** Time when the event occurred. */
15053
+ /** Date and time at which the event occurred. */
15032
15054
  occurred_at: string
15033
- /** The ID of the access code. */
15055
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15034
15056
  access_code_id: string
15035
- /** The ID of the device. */
15057
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15036
15058
  device_id: string
15037
- /** The ID of the connected account. */
15059
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15038
15060
  connected_account_id: string
15039
15061
  event_type: 'access_code.unmanaged.converted_to_managed'
15040
15062
  }
@@ -15043,15 +15065,15 @@ export interface Routes {
15043
15065
  event_id: string
15044
15066
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15045
15067
  workspace_id: string
15046
- /** Time at which the event was created. */
15068
+ /** Date and time at which the event was created. */
15047
15069
  created_at: string
15048
- /** Time when the event occurred. */
15070
+ /** Date and time at which the event occurred. */
15049
15071
  occurred_at: string
15050
- /** The ID of the access code. */
15072
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15051
15073
  access_code_id: string
15052
- /** The ID of the device. */
15074
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15053
15075
  device_id: string
15054
- /** The ID of the connected account. */
15076
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15055
15077
  connected_account_id: string
15056
15078
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
15057
15079
  }
@@ -15060,15 +15082,15 @@ export interface Routes {
15060
15082
  event_id: string
15061
15083
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15062
15084
  workspace_id: string
15063
- /** Time at which the event was created. */
15085
+ /** Date and time at which the event was created. */
15064
15086
  created_at: string
15065
- /** Time when the event occurred. */
15087
+ /** Date and time at which the event occurred. */
15066
15088
  occurred_at: string
15067
- /** The ID of the access code. */
15089
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15068
15090
  access_code_id: string
15069
- /** The ID of the device. */
15091
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15070
15092
  device_id: string
15071
- /** The ID of the connected account. */
15093
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15072
15094
  connected_account_id: string
15073
15095
  event_type: 'access_code.unmanaged.created'
15074
15096
  }
@@ -15077,15 +15099,15 @@ export interface Routes {
15077
15099
  event_id: string
15078
15100
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15079
15101
  workspace_id: string
15080
- /** Time at which the event was created. */
15102
+ /** Date and time at which the event was created. */
15081
15103
  created_at: string
15082
- /** Time when the event occurred. */
15104
+ /** Date and time at which the event occurred. */
15083
15105
  occurred_at: string
15084
- /** The ID of the access code. */
15106
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
15085
15107
  access_code_id: string
15086
- /** The ID of the device. */
15108
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15087
15109
  device_id: string
15088
- /** The ID of the connected account. */
15110
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15089
15111
  connected_account_id: string
15090
15112
  event_type: 'access_code.unmanaged.removed'
15091
15113
  }
@@ -15094,13 +15116,13 @@ export interface Routes {
15094
15116
  event_id: string
15095
15117
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15096
15118
  workspace_id: string
15097
- /** Time at which the event was created. */
15119
+ /** Date and time at which the event was created. */
15098
15120
  created_at: string
15099
- /** Time when the event occurred. */
15121
+ /** Date and time at which the event occurred. */
15100
15122
  occurred_at: string
15101
- /** ID of the connected account. */
15123
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15102
15124
  connected_account_id?: string | undefined
15103
- /** ID of the ACS system. */
15125
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15104
15126
  acs_system_id: string
15105
15127
  event_type: 'acs_system.connected'
15106
15128
  }
@@ -15109,13 +15131,13 @@ export interface Routes {
15109
15131
  event_id: string
15110
15132
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15111
15133
  workspace_id: string
15112
- /** Time at which the event was created. */
15134
+ /** Date and time at which the event was created. */
15113
15135
  created_at: string
15114
- /** Time when the event occurred. */
15136
+ /** Date and time at which the event occurred. */
15115
15137
  occurred_at: string
15116
- /** ID of the connected account. */
15138
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15117
15139
  connected_account_id?: string | undefined
15118
- /** ID of the ACS system. */
15140
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15119
15141
  acs_system_id: string
15120
15142
  event_type: 'acs_system.added'
15121
15143
  }
@@ -15124,13 +15146,13 @@ export interface Routes {
15124
15146
  event_id: string
15125
15147
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15126
15148
  workspace_id: string
15127
- /** Time at which the event was created. */
15149
+ /** Date and time at which the event was created. */
15128
15150
  created_at: string
15129
- /** Time when the event occurred. */
15151
+ /** Date and time at which the event occurred. */
15130
15152
  occurred_at: string
15131
- /** ID of the connected account. */
15153
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15132
15154
  connected_account_id?: string | undefined
15133
- /** ID of the ACS system. */
15155
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15134
15156
  acs_system_id: string
15135
15157
  event_type: 'acs_system.disconnected'
15136
15158
  }
@@ -15139,13 +15161,13 @@ export interface Routes {
15139
15161
  event_id: string
15140
15162
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15141
15163
  workspace_id: string
15142
- /** Time at which the event was created. */
15164
+ /** Date and time at which the event was created. */
15143
15165
  created_at: string
15144
- /** Time when the event occurred. */
15166
+ /** Date and time at which the event occurred. */
15145
15167
  occurred_at: string
15146
- /** ID of the connected account. */
15168
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15147
15169
  connected_account_id?: string | undefined
15148
- /** ID of the ACS system. */
15170
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15149
15171
  acs_system_id: string
15150
15172
  acs_credential_id: string
15151
15173
  event_type: 'acs_credential.deleted'
@@ -15155,13 +15177,13 @@ export interface Routes {
15155
15177
  event_id: string
15156
15178
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15157
15179
  workspace_id: string
15158
- /** Time at which the event was created. */
15180
+ /** Date and time at which the event was created. */
15159
15181
  created_at: string
15160
- /** Time when the event occurred. */
15182
+ /** Date and time at which the event occurred. */
15161
15183
  occurred_at: string
15162
- /** ID of the connected account. */
15184
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15163
15185
  connected_account_id?: string | undefined
15164
- /** ID of the ACS system. */
15186
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15165
15187
  acs_system_id: string
15166
15188
  acs_credential_id: string
15167
15189
  event_type: 'acs_credential.issued'
@@ -15171,13 +15193,13 @@ export interface Routes {
15171
15193
  event_id: string
15172
15194
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15173
15195
  workspace_id: string
15174
- /** Time at which the event was created. */
15196
+ /** Date and time at which the event was created. */
15175
15197
  created_at: string
15176
- /** Time when the event occurred. */
15198
+ /** Date and time at which the event occurred. */
15177
15199
  occurred_at: string
15178
- /** ID of the connected account. */
15200
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15179
15201
  connected_account_id?: string | undefined
15180
- /** ID of the ACS system. */
15202
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15181
15203
  acs_system_id: string
15182
15204
  acs_user_id: string
15183
15205
  event_type: 'acs_user.deleted'
@@ -15187,15 +15209,15 @@ export interface Routes {
15187
15209
  event_id: string
15188
15210
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15189
15211
  workspace_id: string
15190
- /** Time at which the event was created. */
15212
+ /** Date and time at which the event was created. */
15191
15213
  created_at: string
15192
- /** Time when the event occurred. */
15214
+ /** Date and time at which the event occurred. */
15193
15215
  occurred_at: string
15194
- /** ID of the connected account. */
15216
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15195
15217
  connected_account_id?: string | undefined
15196
- /** ID of the ACS system. */
15218
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15197
15219
  acs_system_id: string
15198
- /** 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). */
15199
15221
  acs_encoder_id: string
15200
15222
  event_type: 'acs_encoder.added'
15201
15223
  }
@@ -15204,15 +15226,15 @@ export interface Routes {
15204
15226
  event_id: string
15205
15227
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15206
15228
  workspace_id: string
15207
- /** Time at which the event was created. */
15229
+ /** Date and time at which the event was created. */
15208
15230
  created_at: string
15209
- /** Time when the event occurred. */
15231
+ /** Date and time at which the event occurred. */
15210
15232
  occurred_at: string
15211
- /** ID of the connected account. */
15233
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15212
15234
  connected_account_id?: string | undefined
15213
- /** ID of the ACS system. */
15235
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
15214
15236
  acs_system_id: string
15215
- /** 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). */
15216
15238
  acs_encoder_id: string
15217
15239
  event_type: 'acs_encoder.removed'
15218
15240
  }
@@ -15221,11 +15243,11 @@ export interface Routes {
15221
15243
  event_id: string
15222
15244
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15223
15245
  workspace_id: string
15224
- /** Time at which the event was created. */
15246
+ /** Date and time at which the event was created. */
15225
15247
  created_at: string
15226
- /** Time when the event occurred. */
15248
+ /** Date and time at which the event occurred. */
15227
15249
  occurred_at: string
15228
- /** ID of the client session. */
15250
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
15229
15251
  client_session_id: string
15230
15252
  event_type: 'client_session.deleted'
15231
15253
  }
@@ -15234,14 +15256,14 @@ export interface Routes {
15234
15256
  event_id: string
15235
15257
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15236
15258
  workspace_id: string
15237
- /** Time at which the event was created. */
15259
+ /** Date and time at which the event was created. */
15238
15260
  created_at: string
15239
- /** Time when the event occurred. */
15261
+ /** Date and time at which the event occurred. */
15240
15262
  occurred_at: string
15241
- /** ID of the connected account. */
15263
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15242
15264
  connected_account_id: string
15243
15265
  event_type: 'connected_account.connected'
15244
- /** ID of the connect webview. */
15266
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15245
15267
  connect_webview_id: string
15246
15268
  }
15247
15269
  | {
@@ -15249,14 +15271,14 @@ export interface Routes {
15249
15271
  event_id: string
15250
15272
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15251
15273
  workspace_id: string
15252
- /** Time at which the event was created. */
15274
+ /** Date and time at which the event was created. */
15253
15275
  created_at: string
15254
- /** Time when the event occurred. */
15276
+ /** Date and time at which the event occurred. */
15255
15277
  occurred_at: string
15256
- /** ID of the connected account. */
15278
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15257
15279
  connected_account_id: string
15258
15280
  event_type: 'connected_account.created'
15259
- /** ID of the connect webview. */
15281
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15260
15282
  connect_webview_id: string
15261
15283
  }
15262
15284
  | {
@@ -15264,14 +15286,14 @@ export interface Routes {
15264
15286
  event_id: string
15265
15287
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15266
15288
  workspace_id: string
15267
- /** Time at which the event was created. */
15289
+ /** Date and time at which the event was created. */
15268
15290
  created_at: string
15269
- /** Time when the event occurred. */
15291
+ /** Date and time at which the event occurred. */
15270
15292
  occurred_at: string
15271
- /** ID of the connected account. */
15293
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15272
15294
  connected_account_id: string
15273
15295
  event_type: 'connected_account.successful_login'
15274
- /** ID of the connect webview. */
15296
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15275
15297
  connect_webview_id: string
15276
15298
  }
15277
15299
  | {
@@ -15279,11 +15301,11 @@ export interface Routes {
15279
15301
  event_id: string
15280
15302
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15281
15303
  workspace_id: string
15282
- /** Time at which the event was created. */
15304
+ /** Date and time at which the event was created. */
15283
15305
  created_at: string
15284
- /** Time when the event occurred. */
15306
+ /** Date and time at which the event occurred. */
15285
15307
  occurred_at: string
15286
- /** ID of the connected account. */
15308
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15287
15309
  connected_account_id: string
15288
15310
  event_type: 'connected_account.disconnected'
15289
15311
  }
@@ -15292,11 +15314,11 @@ export interface Routes {
15292
15314
  event_id: string
15293
15315
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15294
15316
  workspace_id: string
15295
- /** Time at which the event was created. */
15317
+ /** Date and time at which the event was created. */
15296
15318
  created_at: string
15297
- /** Time when the event occurred. */
15319
+ /** Date and time at which the event occurred. */
15298
15320
  occurred_at: string
15299
- /** ID of the connected account. */
15321
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15300
15322
  connected_account_id: string
15301
15323
  event_type: 'connected_account.completed_first_sync'
15302
15324
  }
@@ -15305,11 +15327,11 @@ export interface Routes {
15305
15327
  event_id: string
15306
15328
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15307
15329
  workspace_id: string
15308
- /** Time at which the event was created. */
15330
+ /** Date and time at which the event was created. */
15309
15331
  created_at: string
15310
- /** Time when the event occurred. */
15332
+ /** Date and time at which the event occurred. */
15311
15333
  occurred_at: string
15312
- /** ID of the connected account. */
15334
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15313
15335
  connected_account_id: string
15314
15336
  event_type: 'connected_account.deleted'
15315
15337
  }
@@ -15318,11 +15340,11 @@ export interface Routes {
15318
15340
  event_id: string
15319
15341
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15320
15342
  workspace_id: string
15321
- /** Time at which the event was created. */
15343
+ /** Date and time at which the event was created. */
15322
15344
  created_at: string
15323
- /** Time when the event occurred. */
15345
+ /** Date and time at which the event occurred. */
15324
15346
  occurred_at: string
15325
- /** ID of the connected account. */
15347
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15326
15348
  connected_account_id: string
15327
15349
  event_type: 'connected_account.completed_first_sync_after_reconnection'
15328
15350
  }
@@ -15331,15 +15353,15 @@ export interface Routes {
15331
15353
  event_id: string
15332
15354
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15333
15355
  workspace_id: string
15334
- /** Time at which the event was created. */
15356
+ /** Date and time at which the event was created. */
15335
15357
  created_at: string
15336
- /** Time when the event occurred. */
15358
+ /** Date and time at which the event occurred. */
15337
15359
  occurred_at: string
15338
- /** The ID of the action attempt. */
15360
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15339
15361
  action_attempt_id: string
15340
- /** The type of action. */
15362
+ /** Type of action. */
15341
15363
  action_type: string
15342
- /** The status of the action. */
15364
+ /** Status of the action. */
15343
15365
  status: string
15344
15366
  event_type: 'action_attempt.lock_door.succeeded'
15345
15367
  }
@@ -15348,15 +15370,15 @@ export interface Routes {
15348
15370
  event_id: string
15349
15371
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15350
15372
  workspace_id: string
15351
- /** Time at which the event was created. */
15373
+ /** Date and time at which the event was created. */
15352
15374
  created_at: string
15353
- /** Time when the event occurred. */
15375
+ /** Date and time at which the event occurred. */
15354
15376
  occurred_at: string
15355
- /** The ID of the action attempt. */
15377
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15356
15378
  action_attempt_id: string
15357
- /** The type of action. */
15379
+ /** Type of action. */
15358
15380
  action_type: string
15359
- /** The status of the action. */
15381
+ /** Status of the action. */
15360
15382
  status: string
15361
15383
  event_type: 'action_attempt.lock_door.failed'
15362
15384
  }
@@ -15365,15 +15387,15 @@ export interface Routes {
15365
15387
  event_id: string
15366
15388
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15367
15389
  workspace_id: string
15368
- /** Time at which the event was created. */
15390
+ /** Date and time at which the event was created. */
15369
15391
  created_at: string
15370
- /** Time when the event occurred. */
15392
+ /** Date and time at which the event occurred. */
15371
15393
  occurred_at: string
15372
- /** The ID of the action attempt. */
15394
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15373
15395
  action_attempt_id: string
15374
- /** The type of action. */
15396
+ /** Type of action. */
15375
15397
  action_type: string
15376
- /** The status of the action. */
15398
+ /** Status of the action. */
15377
15399
  status: string
15378
15400
  event_type: 'action_attempt.unlock_door.succeeded'
15379
15401
  }
@@ -15382,15 +15404,15 @@ export interface Routes {
15382
15404
  event_id: string
15383
15405
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15384
15406
  workspace_id: string
15385
- /** Time at which the event was created. */
15407
+ /** Date and time at which the event was created. */
15386
15408
  created_at: string
15387
- /** Time when the event occurred. */
15409
+ /** Date and time at which the event occurred. */
15388
15410
  occurred_at: string
15389
- /** The ID of the action attempt. */
15411
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
15390
15412
  action_attempt_id: string
15391
- /** The type of action. */
15413
+ /** Type of action. */
15392
15414
  action_type: string
15393
- /** The status of the action. */
15415
+ /** Status of the action. */
15394
15416
  status: string
15395
15417
  event_type: 'action_attempt.unlock_door.failed'
15396
15418
  }
@@ -15399,14 +15421,14 @@ export interface Routes {
15399
15421
  event_id: string
15400
15422
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15401
15423
  workspace_id: string
15402
- /** Time at which the event was created. */
15424
+ /** Date and time at which the event was created. */
15403
15425
  created_at: string
15404
- /** Time when the event occurred. */
15426
+ /** Date and time at which the event occurred. */
15405
15427
  occurred_at: string
15406
- /** ID of the connect webview. */
15428
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15407
15429
  connect_webview_id: string
15408
15430
  event_type: 'connect_webview.login_succeeded'
15409
- /** ID of the connected account. */
15431
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15410
15432
  connected_account_id: string
15411
15433
  }
15412
15434
  | {
@@ -15414,11 +15436,11 @@ export interface Routes {
15414
15436
  event_id: string
15415
15437
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15416
15438
  workspace_id: string
15417
- /** Time at which the event was created. */
15439
+ /** Date and time at which the event was created. */
15418
15440
  created_at: string
15419
- /** Time when the event occurred. */
15441
+ /** Date and time at which the event occurred. */
15420
15442
  occurred_at: string
15421
- /** ID of the connect webview. */
15443
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
15422
15444
  connect_webview_id: string
15423
15445
  event_type: 'connect_webview.login_failed'
15424
15446
  }
@@ -15427,9 +15449,9 @@ export interface Routes {
15427
15449
  event_id: string
15428
15450
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15429
15451
  workspace_id: string
15430
- /** Time at which the event was created. */
15452
+ /** Date and time at which the event was created. */
15431
15453
  created_at: string
15432
- /** Time when the event occurred. */
15454
+ /** Date and time at which the event occurred. */
15433
15455
  occurred_at: string
15434
15456
  /** ID of the device. */
15435
15457
  device_id: string
@@ -15442,9 +15464,9 @@ export interface Routes {
15442
15464
  event_id: string
15443
15465
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15444
15466
  workspace_id: string
15445
- /** Time at which the event was created. */
15467
+ /** Date and time at which the event was created. */
15446
15468
  created_at: string
15447
- /** Time when the event occurred. */
15469
+ /** Date and time at which the event occurred. */
15448
15470
  occurred_at: string
15449
15471
  /** ID of the device. */
15450
15472
  device_id: string
@@ -15457,9 +15479,9 @@ export interface Routes {
15457
15479
  event_id: string
15458
15480
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15459
15481
  workspace_id: string
15460
- /** Time at which the event was created. */
15482
+ /** Date and time at which the event was created. */
15461
15483
  created_at: string
15462
- /** Time when the event occurred. */
15484
+ /** Date and time at which the event occurred. */
15463
15485
  occurred_at: string
15464
15486
  /** ID of the device. */
15465
15487
  device_id: string
@@ -15472,9 +15494,9 @@ export interface Routes {
15472
15494
  event_id: string
15473
15495
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15474
15496
  workspace_id: string
15475
- /** Time at which the event was created. */
15497
+ /** Date and time at which the event was created. */
15476
15498
  created_at: string
15477
- /** Time when the event occurred. */
15499
+ /** Date and time at which the event occurred. */
15478
15500
  occurred_at: string
15479
15501
  /** ID of the device. */
15480
15502
  device_id: string
@@ -15487,9 +15509,9 @@ export interface Routes {
15487
15509
  event_id: string
15488
15510
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15489
15511
  workspace_id: string
15490
- /** Time at which the event was created. */
15512
+ /** Date and time at which the event was created. */
15491
15513
  created_at: string
15492
- /** Time when the event occurred. */
15514
+ /** Date and time at which the event occurred. */
15493
15515
  occurred_at: string
15494
15516
  /** ID of the device. */
15495
15517
  device_id: string
@@ -15502,9 +15524,9 @@ export interface Routes {
15502
15524
  event_id: string
15503
15525
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15504
15526
  workspace_id: string
15505
- /** Time at which the event was created. */
15527
+ /** Date and time at which the event was created. */
15506
15528
  created_at: string
15507
- /** Time when the event occurred. */
15529
+ /** Date and time at which the event occurred. */
15508
15530
  occurred_at: string
15509
15531
  /** ID of the device. */
15510
15532
  device_id: string
@@ -15522,9 +15544,9 @@ export interface Routes {
15522
15544
  event_id: string
15523
15545
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15524
15546
  workspace_id: string
15525
- /** Time at which the event was created. */
15547
+ /** Date and time at which the event was created. */
15526
15548
  created_at: string
15527
- /** Time when the event occurred. */
15549
+ /** Date and time at which the event occurred. */
15528
15550
  occurred_at: string
15529
15551
  /** ID of the device. */
15530
15552
  device_id: string
@@ -15542,9 +15564,9 @@ export interface Routes {
15542
15564
  event_id: string
15543
15565
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15544
15566
  workspace_id: string
15545
- /** Time at which the event was created. */
15567
+ /** Date and time at which the event was created. */
15546
15568
  created_at: string
15547
- /** Time when the event occurred. */
15569
+ /** Date and time at which the event occurred. */
15548
15570
  occurred_at: string
15549
15571
  /** ID of the device. */
15550
15572
  device_id: string
@@ -15557,9 +15579,9 @@ export interface Routes {
15557
15579
  event_id: string
15558
15580
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15559
15581
  workspace_id: string
15560
- /** Time at which the event was created. */
15582
+ /** Date and time at which the event was created. */
15561
15583
  created_at: string
15562
- /** Time when the event occurred. */
15584
+ /** Date and time at which the event occurred. */
15563
15585
  occurred_at: string
15564
15586
  /** ID of the device. */
15565
15587
  device_id: string
@@ -15574,9 +15596,9 @@ export interface Routes {
15574
15596
  event_id: string
15575
15597
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15576
15598
  workspace_id: string
15577
- /** Time at which the event was created. */
15599
+ /** Date and time at which the event was created. */
15578
15600
  created_at: string
15579
- /** Time when the event occurred. */
15601
+ /** Date and time at which the event occurred. */
15580
15602
  occurred_at: string
15581
15603
  /** ID of the device. */
15582
15604
  device_id: string
@@ -15593,9 +15615,9 @@ export interface Routes {
15593
15615
  event_id: string
15594
15616
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15595
15617
  workspace_id: string
15596
- /** Time at which the event was created. */
15618
+ /** Date and time at which the event was created. */
15597
15619
  created_at: string
15598
- /** Time when the event occurred. */
15620
+ /** Date and time at which the event occurred. */
15599
15621
  occurred_at: string
15600
15622
  /** ID of the device. */
15601
15623
  device_id: string
@@ -15608,9 +15630,9 @@ export interface Routes {
15608
15630
  event_id: string
15609
15631
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15610
15632
  workspace_id: string
15611
- /** Time at which the event was created. */
15633
+ /** Date and time at which the event was created. */
15612
15634
  created_at: string
15613
- /** Time when the event occurred. */
15635
+ /** Date and time at which the event occurred. */
15614
15636
  occurred_at: string
15615
15637
  /** ID of the device. */
15616
15638
  device_id: string
@@ -15623,9 +15645,9 @@ export interface Routes {
15623
15645
  event_id: string
15624
15646
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15625
15647
  workspace_id: string
15626
- /** Time at which the event was created. */
15648
+ /** Date and time at which the event was created. */
15627
15649
  created_at: string
15628
- /** Time when the event occurred. */
15650
+ /** Date and time at which the event occurred. */
15629
15651
  occurred_at: string
15630
15652
  /** ID of the device. */
15631
15653
  device_id: string
@@ -15638,9 +15660,9 @@ export interface Routes {
15638
15660
  event_id: string
15639
15661
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15640
15662
  workspace_id: string
15641
- /** Time at which the event was created. */
15663
+ /** Date and time at which the event was created. */
15642
15664
  created_at: string
15643
- /** Time when the event occurred. */
15665
+ /** Date and time at which the event occurred. */
15644
15666
  occurred_at: string
15645
15667
  /** ID of the device. */
15646
15668
  device_id: string
@@ -15653,9 +15675,9 @@ export interface Routes {
15653
15675
  event_id: string
15654
15676
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15655
15677
  workspace_id: string
15656
- /** Time at which the event was created. */
15678
+ /** Date and time at which the event was created. */
15657
15679
  created_at: string
15658
- /** Time when the event occurred. */
15680
+ /** Date and time at which the event occurred. */
15659
15681
  occurred_at: string
15660
15682
  /** ID of the device. */
15661
15683
  device_id: string
@@ -15668,9 +15690,9 @@ export interface Routes {
15668
15690
  event_id: string
15669
15691
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15670
15692
  workspace_id: string
15671
- /** Time at which the event was created. */
15693
+ /** Date and time at which the event was created. */
15672
15694
  created_at: string
15673
- /** Time when the event occurred. */
15695
+ /** Date and time at which the event occurred. */
15674
15696
  occurred_at: string
15675
15697
  /** ID of the device. */
15676
15698
  device_id: string
@@ -15683,9 +15705,9 @@ export interface Routes {
15683
15705
  event_id: string
15684
15706
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15685
15707
  workspace_id: string
15686
- /** Time at which the event was created. */
15708
+ /** Date and time at which the event was created. */
15687
15709
  created_at: string
15688
- /** Time when the event occurred. */
15710
+ /** Date and time at which the event occurred. */
15689
15711
  occurred_at: string
15690
15712
  /** ID of the device. */
15691
15713
  device_id: string
@@ -15698,9 +15720,9 @@ export interface Routes {
15698
15720
  event_id: string
15699
15721
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15700
15722
  workspace_id: string
15701
- /** Time at which the event was created. */
15723
+ /** Date and time at which the event was created. */
15702
15724
  created_at: string
15703
- /** Time when the event occurred. */
15725
+ /** Date and time at which the event occurred. */
15704
15726
  occurred_at: string
15705
15727
  /** ID of the device. */
15706
15728
  device_id: string
@@ -15713,9 +15735,9 @@ export interface Routes {
15713
15735
  event_id: string
15714
15736
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15715
15737
  workspace_id: string
15716
- /** Time at which the event was created. */
15738
+ /** Date and time at which the event was created. */
15717
15739
  created_at: string
15718
- /** Time when the event occurred. */
15740
+ /** Date and time at which the event occurred. */
15719
15741
  occurred_at: string
15720
15742
  /** ID of the device. */
15721
15743
  device_id: string
@@ -15728,9 +15750,9 @@ export interface Routes {
15728
15750
  event_id: string
15729
15751
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15730
15752
  workspace_id: string
15731
- /** Time at which the event was created. */
15753
+ /** Date and time at which the event was created. */
15732
15754
  created_at: string
15733
- /** Time when the event occurred. */
15755
+ /** Date and time at which the event occurred. */
15734
15756
  occurred_at: string
15735
15757
  /** ID of the device. */
15736
15758
  device_id: string
@@ -15743,9 +15765,9 @@ export interface Routes {
15743
15765
  event_id: string
15744
15766
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15745
15767
  workspace_id: string
15746
- /** Time at which the event was created. */
15768
+ /** Date and time at which the event was created. */
15747
15769
  created_at: string
15748
- /** Time when the event occurred. */
15770
+ /** Date and time at which the event occurred. */
15749
15771
  occurred_at: string
15750
15772
  /** ID of the device. */
15751
15773
  device_id: string
@@ -15758,9 +15780,9 @@ export interface Routes {
15758
15780
  event_id: string
15759
15781
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15760
15782
  workspace_id: string
15761
- /** Time at which the event was created. */
15783
+ /** Date and time at which the event was created. */
15762
15784
  created_at: string
15763
- /** Time when the event occurred. */
15785
+ /** Date and time at which the event occurred. */
15764
15786
  occurred_at: string
15765
15787
  /** ID of the device. */
15766
15788
  device_id: string
@@ -15773,9 +15795,9 @@ export interface Routes {
15773
15795
  event_id: string
15774
15796
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15775
15797
  workspace_id: string
15776
- /** Time at which the event was created. */
15798
+ /** Date and time at which the event was created. */
15777
15799
  created_at: string
15778
- /** Time when the event occurred. */
15800
+ /** Date and time at which the event occurred. */
15779
15801
  occurred_at: string
15780
15802
  /** ID of the device. */
15781
15803
  device_id: string
@@ -15800,9 +15822,9 @@ export interface Routes {
15800
15822
  event_id: string
15801
15823
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15802
15824
  workspace_id: string
15803
- /** Time at which the event was created. */
15825
+ /** Date and time at which the event was created. */
15804
15826
  created_at: string
15805
- /** Time when the event occurred. */
15827
+ /** Date and time at which the event occurred. */
15806
15828
  occurred_at: string
15807
15829
  /** ID of the device. */
15808
15830
  device_id: string
@@ -15813,7 +15835,7 @@ export interface Routes {
15813
15835
  access_code_id?: string | undefined
15814
15836
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
15815
15837
  action_attempt_id?: string | undefined
15816
- /** 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. */
15817
15839
  method:
15818
15840
  | 'keycode'
15819
15841
  | 'manual'
@@ -15826,9 +15848,9 @@ export interface Routes {
15826
15848
  event_id: string
15827
15849
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15828
15850
  workspace_id: string
15829
- /** Time at which the event was created. */
15851
+ /** Date and time at which the event was created. */
15830
15852
  created_at: string
15831
- /** Time when the event occurred. */
15853
+ /** Date and time at which the event occurred. */
15832
15854
  occurred_at: string
15833
15855
  /** ID of the device. */
15834
15856
  device_id: string
@@ -15839,7 +15861,7 @@ export interface Routes {
15839
15861
  access_code_id?: string | undefined
15840
15862
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
15841
15863
  action_attempt_id?: string | undefined
15842
- /** 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. */
15843
15865
  method:
15844
15866
  | 'keycode'
15845
15867
  | 'manual'
@@ -15852,9 +15874,9 @@ export interface Routes {
15852
15874
  event_id: string
15853
15875
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15854
15876
  workspace_id: string
15855
- /** Time at which the event was created. */
15877
+ /** Date and time at which the event was created. */
15856
15878
  created_at: string
15857
- /** Time when the event occurred. */
15879
+ /** Date and time at which the event occurred. */
15858
15880
  occurred_at: string
15859
15881
  /** ID of the device. */
15860
15882
  device_id: string
@@ -15869,9 +15891,9 @@ export interface Routes {
15869
15891
  event_id: string
15870
15892
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15871
15893
  workspace_id: string
15872
- /** Time at which the event was created. */
15894
+ /** Date and time at which the event was created. */
15873
15895
  created_at: string
15874
- /** Time when the event occurred. */
15896
+ /** Date and time at which the event occurred. */
15875
15897
  occurred_at: string
15876
15898
  /** ID of the device. */
15877
15899
  device_id: string
@@ -15882,7 +15904,7 @@ export interface Routes {
15882
15904
  thermostat_schedule_id: string | null
15883
15905
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
15884
15906
  climate_preset_key: string
15885
- /** 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). */
15886
15908
  is_fallback_climate_preset: boolean
15887
15909
  }
15888
15910
  | {
@@ -15890,16 +15912,16 @@ export interface Routes {
15890
15912
  event_id: string
15891
15913
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15892
15914
  workspace_id: string
15893
- /** Time at which the event was created. */
15915
+ /** Date and time at which the event was created. */
15894
15916
  created_at: string
15895
- /** Time when the event occurred. */
15917
+ /** Date and time at which the event occurred. */
15896
15918
  occurred_at: string
15897
15919
  /** ID of the device. */
15898
15920
  device_id: string
15899
15921
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15900
15922
  connected_account_id: string
15901
15923
  event_type: 'thermostat.manually_adjusted'
15902
- /** 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). */
15903
15925
  method: 'seam' | 'external'
15904
15926
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
15905
15927
  fan_mode_setting?:
@@ -15923,18 +15945,18 @@ export interface Routes {
15923
15945
  event_id: string
15924
15946
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15925
15947
  workspace_id: string
15926
- /** Time at which the event was created. */
15948
+ /** Date and time at which the event was created. */
15927
15949
  created_at: string
15928
- /** Time when the event occurred. */
15950
+ /** Date and time at which the event occurred. */
15929
15951
  occurred_at: string
15930
15952
  /** ID of the device. */
15931
15953
  device_id: string
15932
15954
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15933
15955
  connected_account_id: string
15934
15956
  event_type: 'thermostat.temperature_threshold_exceeded'
15935
- /** Temperature, in °C, reported by the thermostat. */
15957
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15936
15958
  temperature_celsius: number
15937
- /** Temperature, in °F, reported by the thermostat. */
15959
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15938
15960
  temperature_fahrenheit: number
15939
15961
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
15940
15962
  upper_limit_celsius: number | null
@@ -15950,18 +15972,18 @@ export interface Routes {
15950
15972
  event_id: string
15951
15973
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15952
15974
  workspace_id: string
15953
- /** Time at which the event was created. */
15975
+ /** Date and time at which the event was created. */
15954
15976
  created_at: string
15955
- /** Time when the event occurred. */
15977
+ /** Date and time at which the event occurred. */
15956
15978
  occurred_at: string
15957
15979
  /** ID of the device. */
15958
15980
  device_id: string
15959
15981
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
15960
15982
  connected_account_id: string
15961
15983
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
15962
- /** Temperature, in °C, reported by the thermostat. */
15984
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15963
15985
  temperature_celsius: number
15964
- /** Temperature, in °F, reported by the thermostat. */
15986
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
15965
15987
  temperature_fahrenheit: number
15966
15988
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
15967
15989
  upper_limit_celsius: number | null
@@ -15977,11 +15999,11 @@ export interface Routes {
15977
15999
  event_id: string
15978
16000
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15979
16001
  workspace_id: string
15980
- /** Time at which the event was created. */
16002
+ /** Date and time at which the event was created. */
15981
16003
  created_at: string
15982
- /** Time when the event occurred. */
16004
+ /** Date and time at which the event occurred. */
15983
16005
  occurred_at: string
15984
- /** 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). */
15985
16007
  enrollment_automation_id: string
15986
16008
  event_type: 'enrollment_automation.deleted'
15987
16009
  }
@@ -15990,11 +16012,11 @@ export interface Routes {
15990
16012
  event_id: string
15991
16013
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
15992
16014
  workspace_id: string
15993
- /** Time at which the event was created. */
16015
+ /** Date and time at which the event was created. */
15994
16016
  created_at: string
15995
- /** Time when the event occurred. */
16017
+ /** Date and time at which the event occurred. */
15996
16018
  occurred_at: string
15997
- /** ID of the device. */
16019
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
15998
16020
  device_id: string
15999
16021
  event_type: 'phone.deactivated'
16000
16022
  }
@@ -16180,15 +16202,15 @@ export interface Routes {
16180
16202
  event_id: string
16181
16203
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16182
16204
  workspace_id: string
16183
- /** Time at which the event was created. */
16205
+ /** Date and time at which the event was created. */
16184
16206
  created_at: string
16185
- /** Time when the event occurred. */
16207
+ /** Date and time at which the event occurred. */
16186
16208
  occurred_at: string
16187
- /** The ID of the access code. */
16209
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16188
16210
  access_code_id: string
16189
- /** The ID of the device. */
16211
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16190
16212
  device_id: string
16191
- /** The ID of the connected account. */
16213
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16192
16214
  connected_account_id: string
16193
16215
  event_type: 'access_code.created'
16194
16216
  }
@@ -16197,15 +16219,15 @@ export interface Routes {
16197
16219
  event_id: string
16198
16220
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16199
16221
  workspace_id: string
16200
- /** Time at which the event was created. */
16222
+ /** Date and time at which the event was created. */
16201
16223
  created_at: string
16202
- /** Time when the event occurred. */
16224
+ /** Date and time at which the event occurred. */
16203
16225
  occurred_at: string
16204
- /** The ID of the access code. */
16226
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16205
16227
  access_code_id: string
16206
- /** The ID of the device. */
16228
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16207
16229
  device_id: string
16208
- /** The ID of the connected account. */
16230
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16209
16231
  connected_account_id: string
16210
16232
  event_type: 'access_code.changed'
16211
16233
  }
@@ -16214,18 +16236,18 @@ export interface Routes {
16214
16236
  event_id: string
16215
16237
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16216
16238
  workspace_id: string
16217
- /** Time at which the event was created. */
16239
+ /** Date and time at which the event was created. */
16218
16240
  created_at: string
16219
- /** Time when the event occurred. */
16241
+ /** Date and time at which the event occurred. */
16220
16242
  occurred_at: string
16221
- /** The ID of the access code. */
16243
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16222
16244
  access_code_id: string
16223
- /** The ID of the device. */
16245
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16224
16246
  device_id: string
16225
- /** The ID of the connected account. */
16247
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16226
16248
  connected_account_id: string
16227
16249
  event_type: 'access_code.scheduled_on_device'
16228
- /** The code of the access code. */
16250
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16229
16251
  code: string
16230
16252
  }
16231
16253
  | {
@@ -16233,18 +16255,18 @@ export interface Routes {
16233
16255
  event_id: string
16234
16256
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16235
16257
  workspace_id: string
16236
- /** Time at which the event was created. */
16258
+ /** Date and time at which the event was created. */
16237
16259
  created_at: string
16238
- /** Time when the event occurred. */
16260
+ /** Date and time at which the event occurred. */
16239
16261
  occurred_at: string
16240
- /** The ID of the access code. */
16262
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16241
16263
  access_code_id: string
16242
- /** The ID of the device. */
16264
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16243
16265
  device_id: string
16244
- /** The ID of the connected account. */
16266
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16245
16267
  connected_account_id: string
16246
16268
  event_type: 'access_code.set_on_device'
16247
- /** The code of the access code. */
16269
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16248
16270
  code: string
16249
16271
  }
16250
16272
  | {
@@ -16252,15 +16274,15 @@ export interface Routes {
16252
16274
  event_id: string
16253
16275
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16254
16276
  workspace_id: string
16255
- /** Time at which the event was created. */
16277
+ /** Date and time at which the event was created. */
16256
16278
  created_at: string
16257
- /** Time when the event occurred. */
16279
+ /** Date and time at which the event occurred. */
16258
16280
  occurred_at: string
16259
- /** The ID of the access code. */
16281
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16260
16282
  access_code_id: string
16261
- /** The ID of the device. */
16283
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16262
16284
  device_id: string
16263
- /** The ID of the connected account. */
16285
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16264
16286
  connected_account_id: string
16265
16287
  event_type: 'access_code.removed_from_device'
16266
16288
  }
@@ -16269,15 +16291,15 @@ export interface Routes {
16269
16291
  event_id: string
16270
16292
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16271
16293
  workspace_id: string
16272
- /** Time at which the event was created. */
16294
+ /** Date and time at which the event was created. */
16273
16295
  created_at: string
16274
- /** Time when the event occurred. */
16296
+ /** Date and time at which the event occurred. */
16275
16297
  occurred_at: string
16276
- /** The ID of the access code. */
16298
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16277
16299
  access_code_id: string
16278
- /** The ID of the device. */
16300
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16279
16301
  device_id: string
16280
- /** The ID of the connected account. */
16302
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16281
16303
  connected_account_id: string
16282
16304
  event_type: 'access_code.delay_in_setting_on_device'
16283
16305
  }
@@ -16286,15 +16308,15 @@ export interface Routes {
16286
16308
  event_id: string
16287
16309
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16288
16310
  workspace_id: string
16289
- /** Time at which the event was created. */
16311
+ /** Date and time at which the event was created. */
16290
16312
  created_at: string
16291
- /** Time when the event occurred. */
16313
+ /** Date and time at which the event occurred. */
16292
16314
  occurred_at: string
16293
- /** The ID of the access code. */
16315
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16294
16316
  access_code_id: string
16295
- /** The ID of the device. */
16317
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16296
16318
  device_id: string
16297
- /** The ID of the connected account. */
16319
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16298
16320
  connected_account_id: string
16299
16321
  event_type: 'access_code.failed_to_set_on_device'
16300
16322
  }
@@ -16303,18 +16325,18 @@ export interface Routes {
16303
16325
  event_id: string
16304
16326
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16305
16327
  workspace_id: string
16306
- /** Time at which the event was created. */
16328
+ /** Date and time at which the event was created. */
16307
16329
  created_at: string
16308
- /** Time when the event occurred. */
16330
+ /** Date and time at which the event occurred. */
16309
16331
  occurred_at: string
16310
- /** The ID of the access code. */
16332
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16311
16333
  access_code_id: string
16312
- /** The ID of the device. */
16334
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16313
16335
  device_id: string
16314
- /** The ID of the connected account. */
16336
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16315
16337
  connected_account_id: string
16316
16338
  event_type: 'access_code.deleted'
16317
- /** The code of the access code. */
16339
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16318
16340
  code: string | null
16319
16341
  }
16320
16342
  | {
@@ -16322,15 +16344,15 @@ export interface Routes {
16322
16344
  event_id: string
16323
16345
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16324
16346
  workspace_id: string
16325
- /** Time at which the event was created. */
16347
+ /** Date and time at which the event was created. */
16326
16348
  created_at: string
16327
- /** Time when the event occurred. */
16349
+ /** Date and time at which the event occurred. */
16328
16350
  occurred_at: string
16329
- /** The ID of the access code. */
16351
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16330
16352
  access_code_id: string
16331
- /** The ID of the device. */
16353
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16332
16354
  device_id: string
16333
- /** The ID of the connected account. */
16355
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16334
16356
  connected_account_id: string
16335
16357
  event_type: 'access_code.delay_in_removing_from_device'
16336
16358
  }
@@ -16339,15 +16361,15 @@ export interface Routes {
16339
16361
  event_id: string
16340
16362
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16341
16363
  workspace_id: string
16342
- /** Time at which the event was created. */
16364
+ /** Date and time at which the event was created. */
16343
16365
  created_at: string
16344
- /** Time when the event occurred. */
16366
+ /** Date and time at which the event occurred. */
16345
16367
  occurred_at: string
16346
- /** The ID of the access code. */
16368
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16347
16369
  access_code_id: string
16348
- /** The ID of the device. */
16370
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16349
16371
  device_id: string
16350
- /** The ID of the connected account. */
16372
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16351
16373
  connected_account_id: string
16352
16374
  event_type: 'access_code.failed_to_remove_from_device'
16353
16375
  }
@@ -16356,15 +16378,15 @@ export interface Routes {
16356
16378
  event_id: string
16357
16379
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16358
16380
  workspace_id: string
16359
- /** Time at which the event was created. */
16381
+ /** Date and time at which the event was created. */
16360
16382
  created_at: string
16361
- /** Time when the event occurred. */
16383
+ /** Date and time at which the event occurred. */
16362
16384
  occurred_at: string
16363
- /** The ID of the access code. */
16385
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16364
16386
  access_code_id: string
16365
- /** The ID of the device. */
16387
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16366
16388
  device_id: string
16367
- /** The ID of the connected account. */
16389
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16368
16390
  connected_account_id: string
16369
16391
  event_type: 'access_code.modified_external_to_seam'
16370
16392
  }
@@ -16373,15 +16395,15 @@ export interface Routes {
16373
16395
  event_id: string
16374
16396
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16375
16397
  workspace_id: string
16376
- /** Time at which the event was created. */
16398
+ /** Date and time at which the event was created. */
16377
16399
  created_at: string
16378
- /** Time when the event occurred. */
16400
+ /** Date and time at which the event occurred. */
16379
16401
  occurred_at: string
16380
- /** The ID of the access code. */
16402
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16381
16403
  access_code_id: string
16382
- /** The ID of the device. */
16404
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16383
16405
  device_id: string
16384
- /** The ID of the connected account. */
16406
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16385
16407
  connected_account_id: string
16386
16408
  event_type: 'access_code.deleted_external_to_seam'
16387
16409
  }
@@ -16390,15 +16412,15 @@ export interface Routes {
16390
16412
  event_id: string
16391
16413
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16392
16414
  workspace_id: string
16393
- /** Time at which the event was created. */
16415
+ /** Date and time at which the event was created. */
16394
16416
  created_at: string
16395
- /** Time when the event occurred. */
16417
+ /** Date and time at which the event occurred. */
16396
16418
  occurred_at: string
16397
- /** The ID of the access code. */
16419
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16398
16420
  access_code_id: string
16399
- /** The ID of the device. */
16421
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16400
16422
  device_id: string
16401
- /** The ID of the connected account. */
16423
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16402
16424
  connected_account_id: string
16403
16425
  event_type: 'access_code.backup_access_code_pulled'
16404
16426
  backup_access_code_id: string
@@ -16408,15 +16430,15 @@ export interface Routes {
16408
16430
  event_id: string
16409
16431
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16410
16432
  workspace_id: string
16411
- /** Time at which the event was created. */
16433
+ /** Date and time at which the event was created. */
16412
16434
  created_at: string
16413
- /** Time when the event occurred. */
16435
+ /** Date and time at which the event occurred. */
16414
16436
  occurred_at: string
16415
- /** The ID of the access code. */
16437
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16416
16438
  access_code_id: string
16417
- /** The ID of the device. */
16439
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16418
16440
  device_id: string
16419
- /** The ID of the connected account. */
16441
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16420
16442
  connected_account_id: string
16421
16443
  event_type: 'access_code.unmanaged.converted_to_managed'
16422
16444
  }
@@ -16425,15 +16447,15 @@ export interface Routes {
16425
16447
  event_id: string
16426
16448
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16427
16449
  workspace_id: string
16428
- /** Time at which the event was created. */
16450
+ /** Date and time at which the event was created. */
16429
16451
  created_at: string
16430
- /** Time when the event occurred. */
16452
+ /** Date and time at which the event occurred. */
16431
16453
  occurred_at: string
16432
- /** The ID of the access code. */
16454
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16433
16455
  access_code_id: string
16434
- /** The ID of the device. */
16456
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16435
16457
  device_id: string
16436
- /** The ID of the connected account. */
16458
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16437
16459
  connected_account_id: string
16438
16460
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
16439
16461
  }
@@ -16442,15 +16464,15 @@ export interface Routes {
16442
16464
  event_id: string
16443
16465
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16444
16466
  workspace_id: string
16445
- /** Time at which the event was created. */
16467
+ /** Date and time at which the event was created. */
16446
16468
  created_at: string
16447
- /** Time when the event occurred. */
16469
+ /** Date and time at which the event occurred. */
16448
16470
  occurred_at: string
16449
- /** The ID of the access code. */
16471
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16450
16472
  access_code_id: string
16451
- /** The ID of the device. */
16473
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16452
16474
  device_id: string
16453
- /** The ID of the connected account. */
16475
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16454
16476
  connected_account_id: string
16455
16477
  event_type: 'access_code.unmanaged.created'
16456
16478
  }
@@ -16459,15 +16481,15 @@ export interface Routes {
16459
16481
  event_id: string
16460
16482
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16461
16483
  workspace_id: string
16462
- /** Time at which the event was created. */
16484
+ /** Date and time at which the event was created. */
16463
16485
  created_at: string
16464
- /** Time when the event occurred. */
16486
+ /** Date and time at which the event occurred. */
16465
16487
  occurred_at: string
16466
- /** The ID of the access code. */
16488
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
16467
16489
  access_code_id: string
16468
- /** The ID of the device. */
16490
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
16469
16491
  device_id: string
16470
- /** The ID of the connected account. */
16492
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16471
16493
  connected_account_id: string
16472
16494
  event_type: 'access_code.unmanaged.removed'
16473
16495
  }
@@ -16476,13 +16498,13 @@ export interface Routes {
16476
16498
  event_id: string
16477
16499
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16478
16500
  workspace_id: string
16479
- /** Time at which the event was created. */
16501
+ /** Date and time at which the event was created. */
16480
16502
  created_at: string
16481
- /** Time when the event occurred. */
16503
+ /** Date and time at which the event occurred. */
16482
16504
  occurred_at: string
16483
- /** ID of the connected account. */
16505
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16484
16506
  connected_account_id?: string | undefined
16485
- /** ID of the ACS system. */
16507
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16486
16508
  acs_system_id: string
16487
16509
  event_type: 'acs_system.connected'
16488
16510
  }
@@ -16491,13 +16513,13 @@ export interface Routes {
16491
16513
  event_id: string
16492
16514
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16493
16515
  workspace_id: string
16494
- /** Time at which the event was created. */
16516
+ /** Date and time at which the event was created. */
16495
16517
  created_at: string
16496
- /** Time when the event occurred. */
16518
+ /** Date and time at which the event occurred. */
16497
16519
  occurred_at: string
16498
- /** ID of the connected account. */
16520
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16499
16521
  connected_account_id?: string | undefined
16500
- /** ID of the ACS system. */
16522
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16501
16523
  acs_system_id: string
16502
16524
  event_type: 'acs_system.added'
16503
16525
  }
@@ -16506,13 +16528,13 @@ export interface Routes {
16506
16528
  event_id: string
16507
16529
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16508
16530
  workspace_id: string
16509
- /** Time at which the event was created. */
16531
+ /** Date and time at which the event was created. */
16510
16532
  created_at: string
16511
- /** Time when the event occurred. */
16533
+ /** Date and time at which the event occurred. */
16512
16534
  occurred_at: string
16513
- /** ID of the connected account. */
16535
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16514
16536
  connected_account_id?: string | undefined
16515
- /** ID of the ACS system. */
16537
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16516
16538
  acs_system_id: string
16517
16539
  event_type: 'acs_system.disconnected'
16518
16540
  }
@@ -16521,13 +16543,13 @@ export interface Routes {
16521
16543
  event_id: string
16522
16544
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16523
16545
  workspace_id: string
16524
- /** Time at which the event was created. */
16546
+ /** Date and time at which the event was created. */
16525
16547
  created_at: string
16526
- /** Time when the event occurred. */
16548
+ /** Date and time at which the event occurred. */
16527
16549
  occurred_at: string
16528
- /** ID of the connected account. */
16550
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16529
16551
  connected_account_id?: string | undefined
16530
- /** ID of the ACS system. */
16552
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16531
16553
  acs_system_id: string
16532
16554
  acs_credential_id: string
16533
16555
  event_type: 'acs_credential.deleted'
@@ -16537,13 +16559,13 @@ export interface Routes {
16537
16559
  event_id: string
16538
16560
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16539
16561
  workspace_id: string
16540
- /** Time at which the event was created. */
16562
+ /** Date and time at which the event was created. */
16541
16563
  created_at: string
16542
- /** Time when the event occurred. */
16564
+ /** Date and time at which the event occurred. */
16543
16565
  occurred_at: string
16544
- /** ID of the connected account. */
16566
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16545
16567
  connected_account_id?: string | undefined
16546
- /** ID of the ACS system. */
16568
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16547
16569
  acs_system_id: string
16548
16570
  acs_credential_id: string
16549
16571
  event_type: 'acs_credential.issued'
@@ -16553,13 +16575,13 @@ export interface Routes {
16553
16575
  event_id: string
16554
16576
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16555
16577
  workspace_id: string
16556
- /** Time at which the event was created. */
16578
+ /** Date and time at which the event was created. */
16557
16579
  created_at: string
16558
- /** Time when the event occurred. */
16580
+ /** Date and time at which the event occurred. */
16559
16581
  occurred_at: string
16560
- /** ID of the connected account. */
16582
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16561
16583
  connected_account_id?: string | undefined
16562
- /** ID of the ACS system. */
16584
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16563
16585
  acs_system_id: string
16564
16586
  acs_user_id: string
16565
16587
  event_type: 'acs_user.deleted'
@@ -16569,15 +16591,15 @@ export interface Routes {
16569
16591
  event_id: string
16570
16592
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16571
16593
  workspace_id: string
16572
- /** Time at which the event was created. */
16594
+ /** Date and time at which the event was created. */
16573
16595
  created_at: string
16574
- /** Time when the event occurred. */
16596
+ /** Date and time at which the event occurred. */
16575
16597
  occurred_at: string
16576
- /** ID of the connected account. */
16598
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16577
16599
  connected_account_id?: string | undefined
16578
- /** ID of the ACS system. */
16600
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16579
16601
  acs_system_id: string
16580
- /** 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). */
16581
16603
  acs_encoder_id: string
16582
16604
  event_type: 'acs_encoder.added'
16583
16605
  }
@@ -16586,15 +16608,15 @@ export interface Routes {
16586
16608
  event_id: string
16587
16609
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16588
16610
  workspace_id: string
16589
- /** Time at which the event was created. */
16611
+ /** Date and time at which the event was created. */
16590
16612
  created_at: string
16591
- /** Time when the event occurred. */
16613
+ /** Date and time at which the event occurred. */
16592
16614
  occurred_at: string
16593
- /** ID of the connected account. */
16615
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16594
16616
  connected_account_id?: string | undefined
16595
- /** ID of the ACS system. */
16617
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
16596
16618
  acs_system_id: string
16597
- /** 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). */
16598
16620
  acs_encoder_id: string
16599
16621
  event_type: 'acs_encoder.removed'
16600
16622
  }
@@ -16603,11 +16625,11 @@ export interface Routes {
16603
16625
  event_id: string
16604
16626
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16605
16627
  workspace_id: string
16606
- /** Time at which the event was created. */
16628
+ /** Date and time at which the event was created. */
16607
16629
  created_at: string
16608
- /** Time when the event occurred. */
16630
+ /** Date and time at which the event occurred. */
16609
16631
  occurred_at: string
16610
- /** ID of the client session. */
16632
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
16611
16633
  client_session_id: string
16612
16634
  event_type: 'client_session.deleted'
16613
16635
  }
@@ -16616,14 +16638,14 @@ export interface Routes {
16616
16638
  event_id: string
16617
16639
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16618
16640
  workspace_id: string
16619
- /** Time at which the event was created. */
16641
+ /** Date and time at which the event was created. */
16620
16642
  created_at: string
16621
- /** Time when the event occurred. */
16643
+ /** Date and time at which the event occurred. */
16622
16644
  occurred_at: string
16623
- /** ID of the connected account. */
16645
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16624
16646
  connected_account_id: string
16625
16647
  event_type: 'connected_account.connected'
16626
- /** ID of the connect webview. */
16648
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16627
16649
  connect_webview_id: string
16628
16650
  }
16629
16651
  | {
@@ -16631,14 +16653,14 @@ export interface Routes {
16631
16653
  event_id: string
16632
16654
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16633
16655
  workspace_id: string
16634
- /** Time at which the event was created. */
16656
+ /** Date and time at which the event was created. */
16635
16657
  created_at: string
16636
- /** Time when the event occurred. */
16658
+ /** Date and time at which the event occurred. */
16637
16659
  occurred_at: string
16638
- /** ID of the connected account. */
16660
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16639
16661
  connected_account_id: string
16640
16662
  event_type: 'connected_account.created'
16641
- /** ID of the connect webview. */
16663
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16642
16664
  connect_webview_id: string
16643
16665
  }
16644
16666
  | {
@@ -16646,14 +16668,14 @@ export interface Routes {
16646
16668
  event_id: string
16647
16669
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16648
16670
  workspace_id: string
16649
- /** Time at which the event was created. */
16671
+ /** Date and time at which the event was created. */
16650
16672
  created_at: string
16651
- /** Time when the event occurred. */
16673
+ /** Date and time at which the event occurred. */
16652
16674
  occurred_at: string
16653
- /** ID of the connected account. */
16675
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16654
16676
  connected_account_id: string
16655
16677
  event_type: 'connected_account.successful_login'
16656
- /** ID of the connect webview. */
16678
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16657
16679
  connect_webview_id: string
16658
16680
  }
16659
16681
  | {
@@ -16661,11 +16683,11 @@ export interface Routes {
16661
16683
  event_id: string
16662
16684
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16663
16685
  workspace_id: string
16664
- /** Time at which the event was created. */
16686
+ /** Date and time at which the event was created. */
16665
16687
  created_at: string
16666
- /** Time when the event occurred. */
16688
+ /** Date and time at which the event occurred. */
16667
16689
  occurred_at: string
16668
- /** ID of the connected account. */
16690
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16669
16691
  connected_account_id: string
16670
16692
  event_type: 'connected_account.disconnected'
16671
16693
  }
@@ -16674,11 +16696,11 @@ export interface Routes {
16674
16696
  event_id: string
16675
16697
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16676
16698
  workspace_id: string
16677
- /** Time at which the event was created. */
16699
+ /** Date and time at which the event was created. */
16678
16700
  created_at: string
16679
- /** Time when the event occurred. */
16701
+ /** Date and time at which the event occurred. */
16680
16702
  occurred_at: string
16681
- /** ID of the connected account. */
16703
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16682
16704
  connected_account_id: string
16683
16705
  event_type: 'connected_account.completed_first_sync'
16684
16706
  }
@@ -16687,11 +16709,11 @@ export interface Routes {
16687
16709
  event_id: string
16688
16710
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16689
16711
  workspace_id: string
16690
- /** Time at which the event was created. */
16712
+ /** Date and time at which the event was created. */
16691
16713
  created_at: string
16692
- /** Time when the event occurred. */
16714
+ /** Date and time at which the event occurred. */
16693
16715
  occurred_at: string
16694
- /** ID of the connected account. */
16716
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16695
16717
  connected_account_id: string
16696
16718
  event_type: 'connected_account.deleted'
16697
16719
  }
@@ -16700,11 +16722,11 @@ export interface Routes {
16700
16722
  event_id: string
16701
16723
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16702
16724
  workspace_id: string
16703
- /** Time at which the event was created. */
16725
+ /** Date and time at which the event was created. */
16704
16726
  created_at: string
16705
- /** Time when the event occurred. */
16727
+ /** Date and time at which the event occurred. */
16706
16728
  occurred_at: string
16707
- /** ID of the connected account. */
16729
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16708
16730
  connected_account_id: string
16709
16731
  event_type: 'connected_account.completed_first_sync_after_reconnection'
16710
16732
  }
@@ -16713,15 +16735,15 @@ export interface Routes {
16713
16735
  event_id: string
16714
16736
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16715
16737
  workspace_id: string
16716
- /** Time at which the event was created. */
16738
+ /** Date and time at which the event was created. */
16717
16739
  created_at: string
16718
- /** Time when the event occurred. */
16740
+ /** Date and time at which the event occurred. */
16719
16741
  occurred_at: string
16720
- /** The ID of the action attempt. */
16742
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16721
16743
  action_attempt_id: string
16722
- /** The type of action. */
16744
+ /** Type of action. */
16723
16745
  action_type: string
16724
- /** The status of the action. */
16746
+ /** Status of the action. */
16725
16747
  status: string
16726
16748
  event_type: 'action_attempt.lock_door.succeeded'
16727
16749
  }
@@ -16730,15 +16752,15 @@ export interface Routes {
16730
16752
  event_id: string
16731
16753
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16732
16754
  workspace_id: string
16733
- /** Time at which the event was created. */
16755
+ /** Date and time at which the event was created. */
16734
16756
  created_at: string
16735
- /** Time when the event occurred. */
16757
+ /** Date and time at which the event occurred. */
16736
16758
  occurred_at: string
16737
- /** The ID of the action attempt. */
16759
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16738
16760
  action_attempt_id: string
16739
- /** The type of action. */
16761
+ /** Type of action. */
16740
16762
  action_type: string
16741
- /** The status of the action. */
16763
+ /** Status of the action. */
16742
16764
  status: string
16743
16765
  event_type: 'action_attempt.lock_door.failed'
16744
16766
  }
@@ -16747,15 +16769,15 @@ export interface Routes {
16747
16769
  event_id: string
16748
16770
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16749
16771
  workspace_id: string
16750
- /** Time at which the event was created. */
16772
+ /** Date and time at which the event was created. */
16751
16773
  created_at: string
16752
- /** Time when the event occurred. */
16774
+ /** Date and time at which the event occurred. */
16753
16775
  occurred_at: string
16754
- /** The ID of the action attempt. */
16776
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16755
16777
  action_attempt_id: string
16756
- /** The type of action. */
16778
+ /** Type of action. */
16757
16779
  action_type: string
16758
- /** The status of the action. */
16780
+ /** Status of the action. */
16759
16781
  status: string
16760
16782
  event_type: 'action_attempt.unlock_door.succeeded'
16761
16783
  }
@@ -16764,15 +16786,15 @@ export interface Routes {
16764
16786
  event_id: string
16765
16787
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16766
16788
  workspace_id: string
16767
- /** Time at which the event was created. */
16789
+ /** Date and time at which the event was created. */
16768
16790
  created_at: string
16769
- /** Time when the event occurred. */
16791
+ /** Date and time at which the event occurred. */
16770
16792
  occurred_at: string
16771
- /** The ID of the action attempt. */
16793
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
16772
16794
  action_attempt_id: string
16773
- /** The type of action. */
16795
+ /** Type of action. */
16774
16796
  action_type: string
16775
- /** The status of the action. */
16797
+ /** Status of the action. */
16776
16798
  status: string
16777
16799
  event_type: 'action_attempt.unlock_door.failed'
16778
16800
  }
@@ -16781,14 +16803,14 @@ export interface Routes {
16781
16803
  event_id: string
16782
16804
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16783
16805
  workspace_id: string
16784
- /** Time at which the event was created. */
16806
+ /** Date and time at which the event was created. */
16785
16807
  created_at: string
16786
- /** Time when the event occurred. */
16808
+ /** Date and time at which the event occurred. */
16787
16809
  occurred_at: string
16788
- /** ID of the connect webview. */
16810
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16789
16811
  connect_webview_id: string
16790
16812
  event_type: 'connect_webview.login_succeeded'
16791
- /** ID of the connected account. */
16813
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
16792
16814
  connected_account_id: string
16793
16815
  }
16794
16816
  | {
@@ -16796,11 +16818,11 @@ export interface Routes {
16796
16818
  event_id: string
16797
16819
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16798
16820
  workspace_id: string
16799
- /** Time at which the event was created. */
16821
+ /** Date and time at which the event was created. */
16800
16822
  created_at: string
16801
- /** Time when the event occurred. */
16823
+ /** Date and time at which the event occurred. */
16802
16824
  occurred_at: string
16803
- /** ID of the connect webview. */
16825
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
16804
16826
  connect_webview_id: string
16805
16827
  event_type: 'connect_webview.login_failed'
16806
16828
  }
@@ -16809,9 +16831,9 @@ export interface Routes {
16809
16831
  event_id: string
16810
16832
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16811
16833
  workspace_id: string
16812
- /** Time at which the event was created. */
16834
+ /** Date and time at which the event was created. */
16813
16835
  created_at: string
16814
- /** Time when the event occurred. */
16836
+ /** Date and time at which the event occurred. */
16815
16837
  occurred_at: string
16816
16838
  /** ID of the device. */
16817
16839
  device_id: string
@@ -16824,9 +16846,9 @@ export interface Routes {
16824
16846
  event_id: string
16825
16847
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16826
16848
  workspace_id: string
16827
- /** Time at which the event was created. */
16849
+ /** Date and time at which the event was created. */
16828
16850
  created_at: string
16829
- /** Time when the event occurred. */
16851
+ /** Date and time at which the event occurred. */
16830
16852
  occurred_at: string
16831
16853
  /** ID of the device. */
16832
16854
  device_id: string
@@ -16839,9 +16861,9 @@ export interface Routes {
16839
16861
  event_id: string
16840
16862
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16841
16863
  workspace_id: string
16842
- /** Time at which the event was created. */
16864
+ /** Date and time at which the event was created. */
16843
16865
  created_at: string
16844
- /** Time when the event occurred. */
16866
+ /** Date and time at which the event occurred. */
16845
16867
  occurred_at: string
16846
16868
  /** ID of the device. */
16847
16869
  device_id: string
@@ -16854,9 +16876,9 @@ export interface Routes {
16854
16876
  event_id: string
16855
16877
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16856
16878
  workspace_id: string
16857
- /** Time at which the event was created. */
16879
+ /** Date and time at which the event was created. */
16858
16880
  created_at: string
16859
- /** Time when the event occurred. */
16881
+ /** Date and time at which the event occurred. */
16860
16882
  occurred_at: string
16861
16883
  /** ID of the device. */
16862
16884
  device_id: string
@@ -16869,9 +16891,9 @@ export interface Routes {
16869
16891
  event_id: string
16870
16892
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16871
16893
  workspace_id: string
16872
- /** Time at which the event was created. */
16894
+ /** Date and time at which the event was created. */
16873
16895
  created_at: string
16874
- /** Time when the event occurred. */
16896
+ /** Date and time at which the event occurred. */
16875
16897
  occurred_at: string
16876
16898
  /** ID of the device. */
16877
16899
  device_id: string
@@ -16884,9 +16906,9 @@ export interface Routes {
16884
16906
  event_id: string
16885
16907
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16886
16908
  workspace_id: string
16887
- /** Time at which the event was created. */
16909
+ /** Date and time at which the event was created. */
16888
16910
  created_at: string
16889
- /** Time when the event occurred. */
16911
+ /** Date and time at which the event occurred. */
16890
16912
  occurred_at: string
16891
16913
  /** ID of the device. */
16892
16914
  device_id: string
@@ -16904,9 +16926,9 @@ export interface Routes {
16904
16926
  event_id: string
16905
16927
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16906
16928
  workspace_id: string
16907
- /** Time at which the event was created. */
16929
+ /** Date and time at which the event was created. */
16908
16930
  created_at: string
16909
- /** Time when the event occurred. */
16931
+ /** Date and time at which the event occurred. */
16910
16932
  occurred_at: string
16911
16933
  /** ID of the device. */
16912
16934
  device_id: string
@@ -16924,9 +16946,9 @@ export interface Routes {
16924
16946
  event_id: string
16925
16947
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16926
16948
  workspace_id: string
16927
- /** Time at which the event was created. */
16949
+ /** Date and time at which the event was created. */
16928
16950
  created_at: string
16929
- /** Time when the event occurred. */
16951
+ /** Date and time at which the event occurred. */
16930
16952
  occurred_at: string
16931
16953
  /** ID of the device. */
16932
16954
  device_id: string
@@ -16939,9 +16961,9 @@ export interface Routes {
16939
16961
  event_id: string
16940
16962
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16941
16963
  workspace_id: string
16942
- /** Time at which the event was created. */
16964
+ /** Date and time at which the event was created. */
16943
16965
  created_at: string
16944
- /** Time when the event occurred. */
16966
+ /** Date and time at which the event occurred. */
16945
16967
  occurred_at: string
16946
16968
  /** ID of the device. */
16947
16969
  device_id: string
@@ -16956,9 +16978,9 @@ export interface Routes {
16956
16978
  event_id: string
16957
16979
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16958
16980
  workspace_id: string
16959
- /** Time at which the event was created. */
16981
+ /** Date and time at which the event was created. */
16960
16982
  created_at: string
16961
- /** Time when the event occurred. */
16983
+ /** Date and time at which the event occurred. */
16962
16984
  occurred_at: string
16963
16985
  /** ID of the device. */
16964
16986
  device_id: string
@@ -16975,9 +16997,9 @@ export interface Routes {
16975
16997
  event_id: string
16976
16998
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16977
16999
  workspace_id: string
16978
- /** Time at which the event was created. */
17000
+ /** Date and time at which the event was created. */
16979
17001
  created_at: string
16980
- /** Time when the event occurred. */
17002
+ /** Date and time at which the event occurred. */
16981
17003
  occurred_at: string
16982
17004
  /** ID of the device. */
16983
17005
  device_id: string
@@ -16990,9 +17012,9 @@ export interface Routes {
16990
17012
  event_id: string
16991
17013
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
16992
17014
  workspace_id: string
16993
- /** Time at which the event was created. */
17015
+ /** Date and time at which the event was created. */
16994
17016
  created_at: string
16995
- /** Time when the event occurred. */
17017
+ /** Date and time at which the event occurred. */
16996
17018
  occurred_at: string
16997
17019
  /** ID of the device. */
16998
17020
  device_id: string
@@ -17005,9 +17027,9 @@ export interface Routes {
17005
17027
  event_id: string
17006
17028
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17007
17029
  workspace_id: string
17008
- /** Time at which the event was created. */
17030
+ /** Date and time at which the event was created. */
17009
17031
  created_at: string
17010
- /** Time when the event occurred. */
17032
+ /** Date and time at which the event occurred. */
17011
17033
  occurred_at: string
17012
17034
  /** ID of the device. */
17013
17035
  device_id: string
@@ -17020,9 +17042,9 @@ export interface Routes {
17020
17042
  event_id: string
17021
17043
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17022
17044
  workspace_id: string
17023
- /** Time at which the event was created. */
17045
+ /** Date and time at which the event was created. */
17024
17046
  created_at: string
17025
- /** Time when the event occurred. */
17047
+ /** Date and time at which the event occurred. */
17026
17048
  occurred_at: string
17027
17049
  /** ID of the device. */
17028
17050
  device_id: string
@@ -17035,9 +17057,9 @@ export interface Routes {
17035
17057
  event_id: string
17036
17058
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17037
17059
  workspace_id: string
17038
- /** Time at which the event was created. */
17060
+ /** Date and time at which the event was created. */
17039
17061
  created_at: string
17040
- /** Time when the event occurred. */
17062
+ /** Date and time at which the event occurred. */
17041
17063
  occurred_at: string
17042
17064
  /** ID of the device. */
17043
17065
  device_id: string
@@ -17050,9 +17072,9 @@ export interface Routes {
17050
17072
  event_id: string
17051
17073
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17052
17074
  workspace_id: string
17053
- /** Time at which the event was created. */
17075
+ /** Date and time at which the event was created. */
17054
17076
  created_at: string
17055
- /** Time when the event occurred. */
17077
+ /** Date and time at which the event occurred. */
17056
17078
  occurred_at: string
17057
17079
  /** ID of the device. */
17058
17080
  device_id: string
@@ -17065,9 +17087,9 @@ export interface Routes {
17065
17087
  event_id: string
17066
17088
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17067
17089
  workspace_id: string
17068
- /** Time at which the event was created. */
17090
+ /** Date and time at which the event was created. */
17069
17091
  created_at: string
17070
- /** Time when the event occurred. */
17092
+ /** Date and time at which the event occurred. */
17071
17093
  occurred_at: string
17072
17094
  /** ID of the device. */
17073
17095
  device_id: string
@@ -17080,9 +17102,9 @@ export interface Routes {
17080
17102
  event_id: string
17081
17103
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17082
17104
  workspace_id: string
17083
- /** Time at which the event was created. */
17105
+ /** Date and time at which the event was created. */
17084
17106
  created_at: string
17085
- /** Time when the event occurred. */
17107
+ /** Date and time at which the event occurred. */
17086
17108
  occurred_at: string
17087
17109
  /** ID of the device. */
17088
17110
  device_id: string
@@ -17095,9 +17117,9 @@ export interface Routes {
17095
17117
  event_id: string
17096
17118
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17097
17119
  workspace_id: string
17098
- /** Time at which the event was created. */
17120
+ /** Date and time at which the event was created. */
17099
17121
  created_at: string
17100
- /** Time when the event occurred. */
17122
+ /** Date and time at which the event occurred. */
17101
17123
  occurred_at: string
17102
17124
  /** ID of the device. */
17103
17125
  device_id: string
@@ -17110,9 +17132,9 @@ export interface Routes {
17110
17132
  event_id: string
17111
17133
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17112
17134
  workspace_id: string
17113
- /** Time at which the event was created. */
17135
+ /** Date and time at which the event was created. */
17114
17136
  created_at: string
17115
- /** Time when the event occurred. */
17137
+ /** Date and time at which the event occurred. */
17116
17138
  occurred_at: string
17117
17139
  /** ID of the device. */
17118
17140
  device_id: string
@@ -17125,9 +17147,9 @@ export interface Routes {
17125
17147
  event_id: string
17126
17148
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17127
17149
  workspace_id: string
17128
- /** Time at which the event was created. */
17150
+ /** Date and time at which the event was created. */
17129
17151
  created_at: string
17130
- /** Time when the event occurred. */
17152
+ /** Date and time at which the event occurred. */
17131
17153
  occurred_at: string
17132
17154
  /** ID of the device. */
17133
17155
  device_id: string
@@ -17140,9 +17162,9 @@ export interface Routes {
17140
17162
  event_id: string
17141
17163
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17142
17164
  workspace_id: string
17143
- /** Time at which the event was created. */
17165
+ /** Date and time at which the event was created. */
17144
17166
  created_at: string
17145
- /** Time when the event occurred. */
17167
+ /** Date and time at which the event occurred. */
17146
17168
  occurred_at: string
17147
17169
  /** ID of the device. */
17148
17170
  device_id: string
@@ -17155,9 +17177,9 @@ export interface Routes {
17155
17177
  event_id: string
17156
17178
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17157
17179
  workspace_id: string
17158
- /** Time at which the event was created. */
17180
+ /** Date and time at which the event was created. */
17159
17181
  created_at: string
17160
- /** Time when the event occurred. */
17182
+ /** Date and time at which the event occurred. */
17161
17183
  occurred_at: string
17162
17184
  /** ID of the device. */
17163
17185
  device_id: string
@@ -17182,9 +17204,9 @@ export interface Routes {
17182
17204
  event_id: string
17183
17205
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17184
17206
  workspace_id: string
17185
- /** Time at which the event was created. */
17207
+ /** Date and time at which the event was created. */
17186
17208
  created_at: string
17187
- /** Time when the event occurred. */
17209
+ /** Date and time at which the event occurred. */
17188
17210
  occurred_at: string
17189
17211
  /** ID of the device. */
17190
17212
  device_id: string
@@ -17195,7 +17217,7 @@ export interface Routes {
17195
17217
  access_code_id?: string | undefined
17196
17218
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
17197
17219
  action_attempt_id?: string | undefined
17198
- /** 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. */
17199
17221
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
17200
17222
  }
17201
17223
  | {
@@ -17203,9 +17225,9 @@ export interface Routes {
17203
17225
  event_id: string
17204
17226
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17205
17227
  workspace_id: string
17206
- /** Time at which the event was created. */
17228
+ /** Date and time at which the event was created. */
17207
17229
  created_at: string
17208
- /** Time when the event occurred. */
17230
+ /** Date and time at which the event occurred. */
17209
17231
  occurred_at: string
17210
17232
  /** ID of the device. */
17211
17233
  device_id: string
@@ -17216,7 +17238,7 @@ export interface Routes {
17216
17238
  access_code_id?: string | undefined
17217
17239
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
17218
17240
  action_attempt_id?: string | undefined
17219
- /** 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. */
17220
17242
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
17221
17243
  }
17222
17244
  | {
@@ -17224,9 +17246,9 @@ export interface Routes {
17224
17246
  event_id: string
17225
17247
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17226
17248
  workspace_id: string
17227
- /** Time at which the event was created. */
17249
+ /** Date and time at which the event was created. */
17228
17250
  created_at: string
17229
- /** Time when the event occurred. */
17251
+ /** Date and time at which the event occurred. */
17230
17252
  occurred_at: string
17231
17253
  /** ID of the device. */
17232
17254
  device_id: string
@@ -17241,9 +17263,9 @@ export interface Routes {
17241
17263
  event_id: string
17242
17264
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17243
17265
  workspace_id: string
17244
- /** Time at which the event was created. */
17266
+ /** Date and time at which the event was created. */
17245
17267
  created_at: string
17246
- /** Time when the event occurred. */
17268
+ /** Date and time at which the event occurred. */
17247
17269
  occurred_at: string
17248
17270
  /** ID of the device. */
17249
17271
  device_id: string
@@ -17254,7 +17276,7 @@ export interface Routes {
17254
17276
  thermostat_schedule_id: string | null
17255
17277
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
17256
17278
  climate_preset_key: string
17257
- /** 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). */
17258
17280
  is_fallback_climate_preset: boolean
17259
17281
  }
17260
17282
  | {
@@ -17262,16 +17284,16 @@ export interface Routes {
17262
17284
  event_id: string
17263
17285
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17264
17286
  workspace_id: string
17265
- /** Time at which the event was created. */
17287
+ /** Date and time at which the event was created. */
17266
17288
  created_at: string
17267
- /** Time when the event occurred. */
17289
+ /** Date and time at which the event occurred. */
17268
17290
  occurred_at: string
17269
17291
  /** ID of the device. */
17270
17292
  device_id: string
17271
17293
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17272
17294
  connected_account_id: string
17273
17295
  event_type: 'thermostat.manually_adjusted'
17274
- /** 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). */
17275
17297
  method: 'seam' | 'external'
17276
17298
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
17277
17299
  fan_mode_setting?:
@@ -17295,18 +17317,18 @@ export interface Routes {
17295
17317
  event_id: string
17296
17318
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17297
17319
  workspace_id: string
17298
- /** Time at which the event was created. */
17320
+ /** Date and time at which the event was created. */
17299
17321
  created_at: string
17300
- /** Time when the event occurred. */
17322
+ /** Date and time at which the event occurred. */
17301
17323
  occurred_at: string
17302
17324
  /** ID of the device. */
17303
17325
  device_id: string
17304
17326
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17305
17327
  connected_account_id: string
17306
17328
  event_type: 'thermostat.temperature_threshold_exceeded'
17307
- /** Temperature, in °C, reported by the thermostat. */
17329
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17308
17330
  temperature_celsius: number
17309
- /** Temperature, in °F, reported by the thermostat. */
17331
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17310
17332
  temperature_fahrenheit: number
17311
17333
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
17312
17334
  upper_limit_celsius: number | null
@@ -17322,18 +17344,18 @@ export interface Routes {
17322
17344
  event_id: string
17323
17345
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17324
17346
  workspace_id: string
17325
- /** Time at which the event was created. */
17347
+ /** Date and time at which the event was created. */
17326
17348
  created_at: string
17327
- /** Time when the event occurred. */
17349
+ /** Date and time at which the event occurred. */
17328
17350
  occurred_at: string
17329
17351
  /** ID of the device. */
17330
17352
  device_id: string
17331
17353
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
17332
17354
  connected_account_id: string
17333
17355
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
17334
- /** Temperature, in °C, reported by the thermostat. */
17356
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17335
17357
  temperature_celsius: number
17336
- /** Temperature, in °F, reported by the thermostat. */
17358
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
17337
17359
  temperature_fahrenheit: number
17338
17360
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
17339
17361
  upper_limit_celsius: number | null
@@ -17349,11 +17371,11 @@ export interface Routes {
17349
17371
  event_id: string
17350
17372
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17351
17373
  workspace_id: string
17352
- /** Time at which the event was created. */
17374
+ /** Date and time at which the event was created. */
17353
17375
  created_at: string
17354
- /** Time when the event occurred. */
17376
+ /** Date and time at which the event occurred. */
17355
17377
  occurred_at: string
17356
- /** 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). */
17357
17379
  enrollment_automation_id: string
17358
17380
  event_type: 'enrollment_automation.deleted'
17359
17381
  }
@@ -17362,11 +17384,11 @@ export interface Routes {
17362
17384
  event_id: string
17363
17385
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
17364
17386
  workspace_id: string
17365
- /** Time at which the event was created. */
17387
+ /** Date and time at which the event was created. */
17366
17388
  created_at: string
17367
- /** Time when the event occurred. */
17389
+ /** Date and time at which the event occurred. */
17368
17390
  occurred_at: string
17369
- /** ID of the device. */
17391
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
17370
17392
  device_id: string
17371
17393
  event_type: 'phone.deactivated'
17372
17394
  }