@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
@@ -5481,9 +5481,9 @@ export interface Routes {
5481
5481
  queryParams: {};
5482
5482
  jsonBody: {};
5483
5483
  commonParams: {
5484
- /** ID of the acs_encoder to use for the encoding. */
5484
+ /** ID of the `acs_encoder` to use to encode the `acs_credential`. */
5485
5485
  acs_encoder_id: string;
5486
- /** ID of the acs_credential to encode on a physical card. */
5486
+ /** ID of the `acs_credential` to encode onto a card. */
5487
5487
  acs_credential_id: string;
5488
5488
  };
5489
5489
  formData: {};
@@ -6288,13 +6288,19 @@ export interface Routes {
6288
6288
  queryParams: {};
6289
6289
  jsonBody: {};
6290
6290
  commonParams: {
6291
+ /** ID of the `acs_system` for which you want to retrieve all `acs_encoder`s. */
6291
6292
  acs_system_id: string;
6293
+ /** Number of `acs_encoders` to return. */
6292
6294
  limit?: number;
6293
6295
  } | {
6296
+ /** IDs of the `acs_system`s for which you want to retrieve all `acs_encoder`s. */
6294
6297
  acs_system_ids: string[];
6298
+ /** Number of `acs_encoders` to return. */
6295
6299
  limit?: number;
6296
6300
  } | {
6301
+ /** IDs of the `acs_encoder`s that you want to retrieve. */
6297
6302
  acs_encoder_ids: string[];
6303
+ /** Number of `acs_encoders` to return. */
6298
6304
  limit?: number;
6299
6305
  };
6300
6306
  formData: {};
@@ -6328,7 +6334,7 @@ export interface Routes {
6328
6334
  queryParams: {};
6329
6335
  jsonBody: {};
6330
6336
  commonParams: {
6331
- /** ID of the acs_encoder to use for the scan. */
6337
+ /** ID of the `acs_encoder` to use for the scan. */
6332
6338
  acs_encoder_id: string;
6333
6339
  };
6334
6340
  formData: {};
@@ -7132,11 +7138,16 @@ export interface Routes {
7132
7138
  method: 'POST';
7133
7139
  queryParams: {};
7134
7140
  jsonBody: {
7141
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
7135
7142
  acs_encoder_id: string;
7143
+ /** Code of the error to simulate. */
7136
7144
  error_code?: 'no_credential_on_encoder';
7137
7145
  } | {
7146
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
7138
7147
  acs_encoder_id: string;
7148
+ /** Code of the error to simulate. */
7139
7149
  error_code: 'uncategorized_error' | 'action_attempt_expired';
7150
+ /** ID of the `acs_credential` that will fail to be encoded onto a card in the next request. */
7140
7151
  acs_credential_id?: string | undefined;
7141
7152
  };
7142
7153
  commonParams: {};
@@ -7148,7 +7159,9 @@ export interface Routes {
7148
7159
  method: 'POST';
7149
7160
  queryParams: {};
7150
7161
  jsonBody: {
7162
+ /** ID of the `acs_encoder` that will be used in the next request to encode the `acs_credential`. */
7151
7163
  acs_encoder_id: string;
7164
+ /** Scenario to simulate. */
7152
7165
  scenario?: 'credential_is_issued';
7153
7166
  };
7154
7167
  commonParams: {};
@@ -7160,9 +7173,11 @@ export interface Routes {
7160
7173
  method: 'POST';
7161
7174
  queryParams: {};
7162
7175
  jsonBody: {
7176
+ /** ID of the `acs_encoder` that will fail to scan the `acs_credential` in the next request. */
7163
7177
  acs_encoder_id: string;
7164
7178
  error_code?: 'no_credential_on_encoder';
7165
7179
  } | {
7180
+ /** ID of the `acs_encoder` that will fail to scan the `acs_credential` in the next request. */
7166
7181
  acs_encoder_id: string;
7167
7182
  error_code: 'uncategorized_error' | 'action_attempt_expired';
7168
7183
  acs_credential_id_on_seam?: string | undefined;
@@ -7176,14 +7191,21 @@ export interface Routes {
7176
7191
  method: 'POST';
7177
7192
  queryParams: {};
7178
7193
  jsonBody: {
7194
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
7179
7195
  acs_encoder_id: string;
7196
+ /** Scenario to simulate. */
7180
7197
  scenario?: 'credential_exists_on_seam' | 'credential_on_encoder_needs_update';
7198
+ /** ID of the Seam `acs_credential` that matches the `acs_credential` on the encoder in this simulation. */
7181
7199
  acs_credential_id_on_seam?: string | undefined;
7182
7200
  } | {
7201
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
7183
7202
  acs_encoder_id: string;
7203
+ /** Scenario to simulate. */
7184
7204
  scenario: 'credential_does_not_exist_on_seam';
7185
7205
  } | {
7206
+ /** ID of the `acs_encoder` that will be used in the next request to scan the `acs_credential`. */
7186
7207
  acs_encoder_id: string;
7208
+ /** Scenario to simulate. */
7187
7209
  scenario: 'credential_on_encoder_is_empty';
7188
7210
  };
7189
7211
  commonParams: {};
@@ -12035,15 +12057,15 @@ export interface Routes {
12035
12057
  event_id: string;
12036
12058
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12037
12059
  workspace_id: string;
12038
- /** Time at which the event was created. */
12060
+ /** Date and time at which the event was created. */
12039
12061
  created_at: string;
12040
- /** Time when the event occurred. */
12062
+ /** Date and time at which the event occurred. */
12041
12063
  occurred_at: string;
12042
- /** The ID of the access code. */
12064
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12043
12065
  access_code_id: string;
12044
- /** The ID of the device. */
12066
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12045
12067
  device_id: string;
12046
- /** The ID of the connected account. */
12068
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12047
12069
  connected_account_id: string;
12048
12070
  event_type: 'access_code.created';
12049
12071
  } | {
@@ -12051,15 +12073,15 @@ export interface Routes {
12051
12073
  event_id: string;
12052
12074
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12053
12075
  workspace_id: string;
12054
- /** Time at which the event was created. */
12076
+ /** Date and time at which the event was created. */
12055
12077
  created_at: string;
12056
- /** Time when the event occurred. */
12078
+ /** Date and time at which the event occurred. */
12057
12079
  occurred_at: string;
12058
- /** The ID of the access code. */
12080
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12059
12081
  access_code_id: string;
12060
- /** The ID of the device. */
12082
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12061
12083
  device_id: string;
12062
- /** The ID of the connected account. */
12084
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12063
12085
  connected_account_id: string;
12064
12086
  event_type: 'access_code.changed';
12065
12087
  } | {
@@ -12067,51 +12089,51 @@ export interface Routes {
12067
12089
  event_id: string;
12068
12090
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12069
12091
  workspace_id: string;
12070
- /** Time at which the event was created. */
12092
+ /** Date and time at which the event was created. */
12071
12093
  created_at: string;
12072
- /** Time when the event occurred. */
12094
+ /** Date and time at which the event occurred. */
12073
12095
  occurred_at: string;
12074
- /** The ID of the access code. */
12096
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12075
12097
  access_code_id: string;
12076
- /** The ID of the device. */
12098
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12077
12099
  device_id: string;
12078
- /** The ID of the connected account. */
12100
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12079
12101
  connected_account_id: string;
12080
12102
  event_type: 'access_code.scheduled_on_device';
12081
- /** The code of the access code. */
12103
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12082
12104
  code: string;
12083
12105
  } | {
12084
12106
  /** ID of the event. */
12085
12107
  event_id: string;
12086
12108
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12087
12109
  workspace_id: string;
12088
- /** Time at which the event was created. */
12110
+ /** Date and time at which the event was created. */
12089
12111
  created_at: string;
12090
- /** Time when the event occurred. */
12112
+ /** Date and time at which the event occurred. */
12091
12113
  occurred_at: string;
12092
- /** The ID of the access code. */
12114
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12093
12115
  access_code_id: string;
12094
- /** The ID of the device. */
12116
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12095
12117
  device_id: string;
12096
- /** The ID of the connected account. */
12118
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12097
12119
  connected_account_id: string;
12098
12120
  event_type: 'access_code.set_on_device';
12099
- /** The code of the access code. */
12121
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12100
12122
  code: string;
12101
12123
  } | {
12102
12124
  /** ID of the event. */
12103
12125
  event_id: string;
12104
12126
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12105
12127
  workspace_id: string;
12106
- /** Time at which the event was created. */
12128
+ /** Date and time at which the event was created. */
12107
12129
  created_at: string;
12108
- /** Time when the event occurred. */
12130
+ /** Date and time at which the event occurred. */
12109
12131
  occurred_at: string;
12110
- /** The ID of the access code. */
12132
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12111
12133
  access_code_id: string;
12112
- /** The ID of the device. */
12134
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12113
12135
  device_id: string;
12114
- /** The ID of the connected account. */
12136
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12115
12137
  connected_account_id: string;
12116
12138
  event_type: 'access_code.removed_from_device';
12117
12139
  } | {
@@ -12119,15 +12141,15 @@ export interface Routes {
12119
12141
  event_id: string;
12120
12142
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12121
12143
  workspace_id: string;
12122
- /** Time at which the event was created. */
12144
+ /** Date and time at which the event was created. */
12123
12145
  created_at: string;
12124
- /** Time when the event occurred. */
12146
+ /** Date and time at which the event occurred. */
12125
12147
  occurred_at: string;
12126
- /** The ID of the access code. */
12148
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12127
12149
  access_code_id: string;
12128
- /** The ID of the device. */
12150
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12129
12151
  device_id: string;
12130
- /** The ID of the connected account. */
12152
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12131
12153
  connected_account_id: string;
12132
12154
  event_type: 'access_code.delay_in_setting_on_device';
12133
12155
  } | {
@@ -12135,15 +12157,15 @@ export interface Routes {
12135
12157
  event_id: string;
12136
12158
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12137
12159
  workspace_id: string;
12138
- /** Time at which the event was created. */
12160
+ /** Date and time at which the event was created. */
12139
12161
  created_at: string;
12140
- /** Time when the event occurred. */
12162
+ /** Date and time at which the event occurred. */
12141
12163
  occurred_at: string;
12142
- /** The ID of the access code. */
12164
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12143
12165
  access_code_id: string;
12144
- /** The ID of the device. */
12166
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12145
12167
  device_id: string;
12146
- /** The ID of the connected account. */
12168
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12147
12169
  connected_account_id: string;
12148
12170
  event_type: 'access_code.failed_to_set_on_device';
12149
12171
  } | {
@@ -12151,33 +12173,33 @@ export interface Routes {
12151
12173
  event_id: string;
12152
12174
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12153
12175
  workspace_id: string;
12154
- /** Time at which the event was created. */
12176
+ /** Date and time at which the event was created. */
12155
12177
  created_at: string;
12156
- /** Time when the event occurred. */
12178
+ /** Date and time at which the event occurred. */
12157
12179
  occurred_at: string;
12158
- /** The ID of the access code. */
12180
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12159
12181
  access_code_id: string;
12160
- /** The ID of the device. */
12182
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12161
12183
  device_id: string;
12162
- /** The ID of the connected account. */
12184
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12163
12185
  connected_account_id: string;
12164
12186
  event_type: 'access_code.deleted';
12165
- /** The code of the access code. */
12187
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12166
12188
  code: string | null;
12167
12189
  } | {
12168
12190
  /** ID of the event. */
12169
12191
  event_id: string;
12170
12192
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12171
12193
  workspace_id: string;
12172
- /** Time at which the event was created. */
12194
+ /** Date and time at which the event was created. */
12173
12195
  created_at: string;
12174
- /** Time when the event occurred. */
12196
+ /** Date and time at which the event occurred. */
12175
12197
  occurred_at: string;
12176
- /** The ID of the access code. */
12198
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12177
12199
  access_code_id: string;
12178
- /** The ID of the device. */
12200
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12179
12201
  device_id: string;
12180
- /** The ID of the connected account. */
12202
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12181
12203
  connected_account_id: string;
12182
12204
  event_type: 'access_code.delay_in_removing_from_device';
12183
12205
  } | {
@@ -12185,15 +12207,15 @@ export interface Routes {
12185
12207
  event_id: string;
12186
12208
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12187
12209
  workspace_id: string;
12188
- /** Time at which the event was created. */
12210
+ /** Date and time at which the event was created. */
12189
12211
  created_at: string;
12190
- /** Time when the event occurred. */
12212
+ /** Date and time at which the event occurred. */
12191
12213
  occurred_at: string;
12192
- /** The ID of the access code. */
12214
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12193
12215
  access_code_id: string;
12194
- /** The ID of the device. */
12216
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12195
12217
  device_id: string;
12196
- /** The ID of the connected account. */
12218
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12197
12219
  connected_account_id: string;
12198
12220
  event_type: 'access_code.failed_to_remove_from_device';
12199
12221
  } | {
@@ -12201,15 +12223,15 @@ export interface Routes {
12201
12223
  event_id: string;
12202
12224
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12203
12225
  workspace_id: string;
12204
- /** Time at which the event was created. */
12226
+ /** Date and time at which the event was created. */
12205
12227
  created_at: string;
12206
- /** Time when the event occurred. */
12228
+ /** Date and time at which the event occurred. */
12207
12229
  occurred_at: string;
12208
- /** The ID of the access code. */
12230
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12209
12231
  access_code_id: string;
12210
- /** The ID of the device. */
12232
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12211
12233
  device_id: string;
12212
- /** The ID of the connected account. */
12234
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12213
12235
  connected_account_id: string;
12214
12236
  event_type: 'access_code.modified_external_to_seam';
12215
12237
  } | {
@@ -12217,15 +12239,15 @@ export interface Routes {
12217
12239
  event_id: string;
12218
12240
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12219
12241
  workspace_id: string;
12220
- /** Time at which the event was created. */
12242
+ /** Date and time at which the event was created. */
12221
12243
  created_at: string;
12222
- /** Time when the event occurred. */
12244
+ /** Date and time at which the event occurred. */
12223
12245
  occurred_at: string;
12224
- /** The ID of the access code. */
12246
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12225
12247
  access_code_id: string;
12226
- /** The ID of the device. */
12248
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12227
12249
  device_id: string;
12228
- /** The ID of the connected account. */
12250
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12229
12251
  connected_account_id: string;
12230
12252
  event_type: 'access_code.deleted_external_to_seam';
12231
12253
  } | {
@@ -12233,15 +12255,15 @@ export interface Routes {
12233
12255
  event_id: string;
12234
12256
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12235
12257
  workspace_id: string;
12236
- /** Time at which the event was created. */
12258
+ /** Date and time at which the event was created. */
12237
12259
  created_at: string;
12238
- /** Time when the event occurred. */
12260
+ /** Date and time at which the event occurred. */
12239
12261
  occurred_at: string;
12240
- /** The ID of the access code. */
12262
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12241
12263
  access_code_id: string;
12242
- /** The ID of the device. */
12264
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12243
12265
  device_id: string;
12244
- /** The ID of the connected account. */
12266
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12245
12267
  connected_account_id: string;
12246
12268
  event_type: 'access_code.backup_access_code_pulled';
12247
12269
  backup_access_code_id: string;
@@ -12250,15 +12272,15 @@ export interface Routes {
12250
12272
  event_id: string;
12251
12273
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12252
12274
  workspace_id: string;
12253
- /** Time at which the event was created. */
12275
+ /** Date and time at which the event was created. */
12254
12276
  created_at: string;
12255
- /** Time when the event occurred. */
12277
+ /** Date and time at which the event occurred. */
12256
12278
  occurred_at: string;
12257
- /** The ID of the access code. */
12279
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12258
12280
  access_code_id: string;
12259
- /** The ID of the device. */
12281
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12260
12282
  device_id: string;
12261
- /** The ID of the connected account. */
12283
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12262
12284
  connected_account_id: string;
12263
12285
  event_type: 'access_code.unmanaged.converted_to_managed';
12264
12286
  } | {
@@ -12266,15 +12288,15 @@ export interface Routes {
12266
12288
  event_id: string;
12267
12289
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12268
12290
  workspace_id: string;
12269
- /** Time at which the event was created. */
12291
+ /** Date and time at which the event was created. */
12270
12292
  created_at: string;
12271
- /** Time when the event occurred. */
12293
+ /** Date and time at which the event occurred. */
12272
12294
  occurred_at: string;
12273
- /** The ID of the access code. */
12295
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12274
12296
  access_code_id: string;
12275
- /** The ID of the device. */
12297
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12276
12298
  device_id: string;
12277
- /** The ID of the connected account. */
12299
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12278
12300
  connected_account_id: string;
12279
12301
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed';
12280
12302
  } | {
@@ -12282,15 +12304,15 @@ export interface Routes {
12282
12304
  event_id: string;
12283
12305
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12284
12306
  workspace_id: string;
12285
- /** Time at which the event was created. */
12307
+ /** Date and time at which the event was created. */
12286
12308
  created_at: string;
12287
- /** Time when the event occurred. */
12309
+ /** Date and time at which the event occurred. */
12288
12310
  occurred_at: string;
12289
- /** The ID of the access code. */
12311
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12290
12312
  access_code_id: string;
12291
- /** The ID of the device. */
12313
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12292
12314
  device_id: string;
12293
- /** The ID of the connected account. */
12315
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12294
12316
  connected_account_id: string;
12295
12317
  event_type: 'access_code.unmanaged.created';
12296
12318
  } | {
@@ -12298,15 +12320,15 @@ export interface Routes {
12298
12320
  event_id: string;
12299
12321
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12300
12322
  workspace_id: string;
12301
- /** Time at which the event was created. */
12323
+ /** Date and time at which the event was created. */
12302
12324
  created_at: string;
12303
- /** Time when the event occurred. */
12325
+ /** Date and time at which the event occurred. */
12304
12326
  occurred_at: string;
12305
- /** The ID of the access code. */
12327
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
12306
12328
  access_code_id: string;
12307
- /** The ID of the device. */
12329
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
12308
12330
  device_id: string;
12309
- /** The ID of the connected account. */
12331
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12310
12332
  connected_account_id: string;
12311
12333
  event_type: 'access_code.unmanaged.removed';
12312
12334
  } | {
@@ -12314,13 +12336,13 @@ export interface Routes {
12314
12336
  event_id: string;
12315
12337
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12316
12338
  workspace_id: string;
12317
- /** Time at which the event was created. */
12339
+ /** Date and time at which the event was created. */
12318
12340
  created_at: string;
12319
- /** Time when the event occurred. */
12341
+ /** Date and time at which the event occurred. */
12320
12342
  occurred_at: string;
12321
- /** ID of the connected account. */
12343
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12322
12344
  connected_account_id?: string | undefined;
12323
- /** ID of the ACS system. */
12345
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12324
12346
  acs_system_id: string;
12325
12347
  event_type: 'acs_system.connected';
12326
12348
  } | {
@@ -12328,13 +12350,13 @@ export interface Routes {
12328
12350
  event_id: string;
12329
12351
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12330
12352
  workspace_id: string;
12331
- /** Time at which the event was created. */
12353
+ /** Date and time at which the event was created. */
12332
12354
  created_at: string;
12333
- /** Time when the event occurred. */
12355
+ /** Date and time at which the event occurred. */
12334
12356
  occurred_at: string;
12335
- /** ID of the connected account. */
12357
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12336
12358
  connected_account_id?: string | undefined;
12337
- /** ID of the ACS system. */
12359
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12338
12360
  acs_system_id: string;
12339
12361
  event_type: 'acs_system.added';
12340
12362
  } | {
@@ -12342,13 +12364,13 @@ export interface Routes {
12342
12364
  event_id: string;
12343
12365
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12344
12366
  workspace_id: string;
12345
- /** Time at which the event was created. */
12367
+ /** Date and time at which the event was created. */
12346
12368
  created_at: string;
12347
- /** Time when the event occurred. */
12369
+ /** Date and time at which the event occurred. */
12348
12370
  occurred_at: string;
12349
- /** ID of the connected account. */
12371
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12350
12372
  connected_account_id?: string | undefined;
12351
- /** ID of the ACS system. */
12373
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12352
12374
  acs_system_id: string;
12353
12375
  event_type: 'acs_system.disconnected';
12354
12376
  } | {
@@ -12356,13 +12378,13 @@ export interface Routes {
12356
12378
  event_id: string;
12357
12379
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12358
12380
  workspace_id: string;
12359
- /** Time at which the event was created. */
12381
+ /** Date and time at which the event was created. */
12360
12382
  created_at: string;
12361
- /** Time when the event occurred. */
12383
+ /** Date and time at which the event occurred. */
12362
12384
  occurred_at: string;
12363
- /** ID of the connected account. */
12385
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12364
12386
  connected_account_id?: string | undefined;
12365
- /** ID of the ACS system. */
12387
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12366
12388
  acs_system_id: string;
12367
12389
  acs_credential_id: string;
12368
12390
  event_type: 'acs_credential.deleted';
@@ -12371,13 +12393,13 @@ export interface Routes {
12371
12393
  event_id: string;
12372
12394
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12373
12395
  workspace_id: string;
12374
- /** Time at which the event was created. */
12396
+ /** Date and time at which the event was created. */
12375
12397
  created_at: string;
12376
- /** Time when the event occurred. */
12398
+ /** Date and time at which the event occurred. */
12377
12399
  occurred_at: string;
12378
- /** ID of the connected account. */
12400
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12379
12401
  connected_account_id?: string | undefined;
12380
- /** ID of the ACS system. */
12402
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12381
12403
  acs_system_id: string;
12382
12404
  acs_credential_id: string;
12383
12405
  event_type: 'acs_credential.issued';
@@ -12386,13 +12408,13 @@ export interface Routes {
12386
12408
  event_id: string;
12387
12409
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12388
12410
  workspace_id: string;
12389
- /** Time at which the event was created. */
12411
+ /** Date and time at which the event was created. */
12390
12412
  created_at: string;
12391
- /** Time when the event occurred. */
12413
+ /** Date and time at which the event occurred. */
12392
12414
  occurred_at: string;
12393
- /** ID of the connected account. */
12415
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12394
12416
  connected_account_id?: string | undefined;
12395
- /** ID of the ACS system. */
12417
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12396
12418
  acs_system_id: string;
12397
12419
  acs_user_id: string;
12398
12420
  event_type: 'acs_user.deleted';
@@ -12401,15 +12423,15 @@ export interface Routes {
12401
12423
  event_id: string;
12402
12424
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12403
12425
  workspace_id: string;
12404
- /** Time at which the event was created. */
12426
+ /** Date and time at which the event was created. */
12405
12427
  created_at: string;
12406
- /** Time when the event occurred. */
12428
+ /** Date and time at which the event occurred. */
12407
12429
  occurred_at: string;
12408
- /** ID of the connected account. */
12430
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12409
12431
  connected_account_id?: string | undefined;
12410
- /** ID of the ACS system. */
12432
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12411
12433
  acs_system_id: string;
12412
- /** ID of the ACS encoder. */
12434
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
12413
12435
  acs_encoder_id: string;
12414
12436
  event_type: 'acs_encoder.added';
12415
12437
  } | {
@@ -12417,15 +12439,15 @@ export interface Routes {
12417
12439
  event_id: string;
12418
12440
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12419
12441
  workspace_id: string;
12420
- /** Time at which the event was created. */
12442
+ /** Date and time at which the event was created. */
12421
12443
  created_at: string;
12422
- /** Time when the event occurred. */
12444
+ /** Date and time at which the event occurred. */
12423
12445
  occurred_at: string;
12424
- /** ID of the connected account. */
12446
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12425
12447
  connected_account_id?: string | undefined;
12426
- /** ID of the ACS system. */
12448
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
12427
12449
  acs_system_id: string;
12428
- /** ID of the ACS encoder. */
12450
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
12429
12451
  acs_encoder_id: string;
12430
12452
  event_type: 'acs_encoder.removed';
12431
12453
  } | {
@@ -12433,11 +12455,11 @@ export interface Routes {
12433
12455
  event_id: string;
12434
12456
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12435
12457
  workspace_id: string;
12436
- /** Time at which the event was created. */
12458
+ /** Date and time at which the event was created. */
12437
12459
  created_at: string;
12438
- /** Time when the event occurred. */
12460
+ /** Date and time at which the event occurred. */
12439
12461
  occurred_at: string;
12440
- /** ID of the client session. */
12462
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
12441
12463
  client_session_id: string;
12442
12464
  event_type: 'client_session.deleted';
12443
12465
  } | {
@@ -12445,53 +12467,53 @@ export interface Routes {
12445
12467
  event_id: string;
12446
12468
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12447
12469
  workspace_id: string;
12448
- /** Time at which the event was created. */
12470
+ /** Date and time at which the event was created. */
12449
12471
  created_at: string;
12450
- /** Time when the event occurred. */
12472
+ /** Date and time at which the event occurred. */
12451
12473
  occurred_at: string;
12452
- /** ID of the connected account. */
12474
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12453
12475
  connected_account_id: string;
12454
12476
  event_type: 'connected_account.connected';
12455
- /** ID of the connect webview. */
12477
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
12456
12478
  connect_webview_id: string;
12457
12479
  } | {
12458
12480
  /** ID of the event. */
12459
12481
  event_id: string;
12460
12482
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12461
12483
  workspace_id: string;
12462
- /** Time at which the event was created. */
12484
+ /** Date and time at which the event was created. */
12463
12485
  created_at: string;
12464
- /** Time when the event occurred. */
12486
+ /** Date and time at which the event occurred. */
12465
12487
  occurred_at: string;
12466
- /** ID of the connected account. */
12488
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12467
12489
  connected_account_id: string;
12468
12490
  event_type: 'connected_account.created';
12469
- /** ID of the connect webview. */
12491
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
12470
12492
  connect_webview_id: string;
12471
12493
  } | {
12472
12494
  /** ID of the event. */
12473
12495
  event_id: string;
12474
12496
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12475
12497
  workspace_id: string;
12476
- /** Time at which the event was created. */
12498
+ /** Date and time at which the event was created. */
12477
12499
  created_at: string;
12478
- /** Time when the event occurred. */
12500
+ /** Date and time at which the event occurred. */
12479
12501
  occurred_at: string;
12480
- /** ID of the connected account. */
12502
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12481
12503
  connected_account_id: string;
12482
12504
  event_type: 'connected_account.successful_login';
12483
- /** ID of the connect webview. */
12505
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
12484
12506
  connect_webview_id: string;
12485
12507
  } | {
12486
12508
  /** ID of the event. */
12487
12509
  event_id: string;
12488
12510
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12489
12511
  workspace_id: string;
12490
- /** Time at which the event was created. */
12512
+ /** Date and time at which the event was created. */
12491
12513
  created_at: string;
12492
- /** Time when the event occurred. */
12514
+ /** Date and time at which the event occurred. */
12493
12515
  occurred_at: string;
12494
- /** ID of the connected account. */
12516
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12495
12517
  connected_account_id: string;
12496
12518
  event_type: 'connected_account.disconnected';
12497
12519
  } | {
@@ -12499,11 +12521,11 @@ export interface Routes {
12499
12521
  event_id: string;
12500
12522
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12501
12523
  workspace_id: string;
12502
- /** Time at which the event was created. */
12524
+ /** Date and time at which the event was created. */
12503
12525
  created_at: string;
12504
- /** Time when the event occurred. */
12526
+ /** Date and time at which the event occurred. */
12505
12527
  occurred_at: string;
12506
- /** ID of the connected account. */
12528
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12507
12529
  connected_account_id: string;
12508
12530
  event_type: 'connected_account.completed_first_sync';
12509
12531
  } | {
@@ -12511,11 +12533,11 @@ export interface Routes {
12511
12533
  event_id: string;
12512
12534
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12513
12535
  workspace_id: string;
12514
- /** Time at which the event was created. */
12536
+ /** Date and time at which the event was created. */
12515
12537
  created_at: string;
12516
- /** Time when the event occurred. */
12538
+ /** Date and time at which the event occurred. */
12517
12539
  occurred_at: string;
12518
- /** ID of the connected account. */
12540
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12519
12541
  connected_account_id: string;
12520
12542
  event_type: 'connected_account.deleted';
12521
12543
  } | {
@@ -12523,11 +12545,11 @@ export interface Routes {
12523
12545
  event_id: string;
12524
12546
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12525
12547
  workspace_id: string;
12526
- /** Time at which the event was created. */
12548
+ /** Date and time at which the event was created. */
12527
12549
  created_at: string;
12528
- /** Time when the event occurred. */
12550
+ /** Date and time at which the event occurred. */
12529
12551
  occurred_at: string;
12530
- /** ID of the connected account. */
12552
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12531
12553
  connected_account_id: string;
12532
12554
  event_type: 'connected_account.completed_first_sync_after_reconnection';
12533
12555
  } | {
@@ -12535,15 +12557,15 @@ export interface Routes {
12535
12557
  event_id: string;
12536
12558
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12537
12559
  workspace_id: string;
12538
- /** Time at which the event was created. */
12560
+ /** Date and time at which the event was created. */
12539
12561
  created_at: string;
12540
- /** Time when the event occurred. */
12562
+ /** Date and time at which the event occurred. */
12541
12563
  occurred_at: string;
12542
- /** The ID of the action attempt. */
12564
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
12543
12565
  action_attempt_id: string;
12544
- /** The type of action. */
12566
+ /** Type of action. */
12545
12567
  action_type: string;
12546
- /** The status of the action. */
12568
+ /** Status of the action. */
12547
12569
  status: string;
12548
12570
  event_type: 'action_attempt.lock_door.succeeded';
12549
12571
  } | {
@@ -12551,15 +12573,15 @@ export interface Routes {
12551
12573
  event_id: string;
12552
12574
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12553
12575
  workspace_id: string;
12554
- /** Time at which the event was created. */
12576
+ /** Date and time at which the event was created. */
12555
12577
  created_at: string;
12556
- /** Time when the event occurred. */
12578
+ /** Date and time at which the event occurred. */
12557
12579
  occurred_at: string;
12558
- /** The ID of the action attempt. */
12580
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
12559
12581
  action_attempt_id: string;
12560
- /** The type of action. */
12582
+ /** Type of action. */
12561
12583
  action_type: string;
12562
- /** The status of the action. */
12584
+ /** Status of the action. */
12563
12585
  status: string;
12564
12586
  event_type: 'action_attempt.lock_door.failed';
12565
12587
  } | {
@@ -12567,15 +12589,15 @@ export interface Routes {
12567
12589
  event_id: string;
12568
12590
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12569
12591
  workspace_id: string;
12570
- /** Time at which the event was created. */
12592
+ /** Date and time at which the event was created. */
12571
12593
  created_at: string;
12572
- /** Time when the event occurred. */
12594
+ /** Date and time at which the event occurred. */
12573
12595
  occurred_at: string;
12574
- /** The ID of the action attempt. */
12596
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
12575
12597
  action_attempt_id: string;
12576
- /** The type of action. */
12598
+ /** Type of action. */
12577
12599
  action_type: string;
12578
- /** The status of the action. */
12600
+ /** Status of the action. */
12579
12601
  status: string;
12580
12602
  event_type: 'action_attempt.unlock_door.succeeded';
12581
12603
  } | {
@@ -12583,15 +12605,15 @@ export interface Routes {
12583
12605
  event_id: string;
12584
12606
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12585
12607
  workspace_id: string;
12586
- /** Time at which the event was created. */
12608
+ /** Date and time at which the event was created. */
12587
12609
  created_at: string;
12588
- /** Time when the event occurred. */
12610
+ /** Date and time at which the event occurred. */
12589
12611
  occurred_at: string;
12590
- /** The ID of the action attempt. */
12612
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
12591
12613
  action_attempt_id: string;
12592
- /** The type of action. */
12614
+ /** Type of action. */
12593
12615
  action_type: string;
12594
- /** The status of the action. */
12616
+ /** Status of the action. */
12595
12617
  status: string;
12596
12618
  event_type: 'action_attempt.unlock_door.failed';
12597
12619
  } | {
@@ -12599,25 +12621,25 @@ export interface Routes {
12599
12621
  event_id: string;
12600
12622
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12601
12623
  workspace_id: string;
12602
- /** Time at which the event was created. */
12624
+ /** Date and time at which the event was created. */
12603
12625
  created_at: string;
12604
- /** Time when the event occurred. */
12626
+ /** Date and time at which the event occurred. */
12605
12627
  occurred_at: string;
12606
- /** ID of the connect webview. */
12628
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
12607
12629
  connect_webview_id: string;
12608
12630
  event_type: 'connect_webview.login_succeeded';
12609
- /** ID of the connected account. */
12631
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
12610
12632
  connected_account_id: string;
12611
12633
  } | {
12612
12634
  /** ID of the event. */
12613
12635
  event_id: string;
12614
12636
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12615
12637
  workspace_id: string;
12616
- /** Time at which the event was created. */
12638
+ /** Date and time at which the event was created. */
12617
12639
  created_at: string;
12618
- /** Time when the event occurred. */
12640
+ /** Date and time at which the event occurred. */
12619
12641
  occurred_at: string;
12620
- /** ID of the connect webview. */
12642
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
12621
12643
  connect_webview_id: string;
12622
12644
  event_type: 'connect_webview.login_failed';
12623
12645
  } | {
@@ -12625,9 +12647,9 @@ export interface Routes {
12625
12647
  event_id: string;
12626
12648
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12627
12649
  workspace_id: string;
12628
- /** Time at which the event was created. */
12650
+ /** Date and time at which the event was created. */
12629
12651
  created_at: string;
12630
- /** Time when the event occurred. */
12652
+ /** Date and time at which the event occurred. */
12631
12653
  occurred_at: string;
12632
12654
  /** ID of the device. */
12633
12655
  device_id: string;
@@ -12639,9 +12661,9 @@ export interface Routes {
12639
12661
  event_id: string;
12640
12662
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12641
12663
  workspace_id: string;
12642
- /** Time at which the event was created. */
12664
+ /** Date and time at which the event was created. */
12643
12665
  created_at: string;
12644
- /** Time when the event occurred. */
12666
+ /** Date and time at which the event occurred. */
12645
12667
  occurred_at: string;
12646
12668
  /** ID of the device. */
12647
12669
  device_id: string;
@@ -12653,9 +12675,9 @@ export interface Routes {
12653
12675
  event_id: string;
12654
12676
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12655
12677
  workspace_id: string;
12656
- /** Time at which the event was created. */
12678
+ /** Date and time at which the event was created. */
12657
12679
  created_at: string;
12658
- /** Time when the event occurred. */
12680
+ /** Date and time at which the event occurred. */
12659
12681
  occurred_at: string;
12660
12682
  /** ID of the device. */
12661
12683
  device_id: string;
@@ -12667,9 +12689,9 @@ export interface Routes {
12667
12689
  event_id: string;
12668
12690
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12669
12691
  workspace_id: string;
12670
- /** Time at which the event was created. */
12692
+ /** Date and time at which the event was created. */
12671
12693
  created_at: string;
12672
- /** Time when the event occurred. */
12694
+ /** Date and time at which the event occurred. */
12673
12695
  occurred_at: string;
12674
12696
  /** ID of the device. */
12675
12697
  device_id: string;
@@ -12681,9 +12703,9 @@ export interface Routes {
12681
12703
  event_id: string;
12682
12704
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12683
12705
  workspace_id: string;
12684
- /** Time at which the event was created. */
12706
+ /** Date and time at which the event was created. */
12685
12707
  created_at: string;
12686
- /** Time when the event occurred. */
12708
+ /** Date and time at which the event occurred. */
12687
12709
  occurred_at: string;
12688
12710
  /** ID of the device. */
12689
12711
  device_id: string;
@@ -12695,9 +12717,9 @@ export interface Routes {
12695
12717
  event_id: string;
12696
12718
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12697
12719
  workspace_id: string;
12698
- /** Time at which the event was created. */
12720
+ /** Date and time at which the event was created. */
12699
12721
  created_at: string;
12700
- /** Time when the event occurred. */
12722
+ /** Date and time at which the event occurred. */
12701
12723
  occurred_at: string;
12702
12724
  /** ID of the device. */
12703
12725
  device_id: string;
@@ -12711,9 +12733,9 @@ export interface Routes {
12711
12733
  event_id: string;
12712
12734
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12713
12735
  workspace_id: string;
12714
- /** Time at which the event was created. */
12736
+ /** Date and time at which the event was created. */
12715
12737
  created_at: string;
12716
- /** Time when the event occurred. */
12738
+ /** Date and time at which the event occurred. */
12717
12739
  occurred_at: string;
12718
12740
  /** ID of the device. */
12719
12741
  device_id: string;
@@ -12727,9 +12749,9 @@ export interface Routes {
12727
12749
  event_id: string;
12728
12750
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12729
12751
  workspace_id: string;
12730
- /** Time at which the event was created. */
12752
+ /** Date and time at which the event was created. */
12731
12753
  created_at: string;
12732
- /** Time when the event occurred. */
12754
+ /** Date and time at which the event occurred. */
12733
12755
  occurred_at: string;
12734
12756
  /** ID of the device. */
12735
12757
  device_id: string;
@@ -12741,9 +12763,9 @@ export interface Routes {
12741
12763
  event_id: string;
12742
12764
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12743
12765
  workspace_id: string;
12744
- /** Time at which the event was created. */
12766
+ /** Date and time at which the event was created. */
12745
12767
  created_at: string;
12746
- /** Time when the event occurred. */
12768
+ /** Date and time at which the event occurred. */
12747
12769
  occurred_at: string;
12748
12770
  /** ID of the device. */
12749
12771
  device_id: string;
@@ -12757,9 +12779,9 @@ export interface Routes {
12757
12779
  event_id: string;
12758
12780
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12759
12781
  workspace_id: string;
12760
- /** Time at which the event was created. */
12782
+ /** Date and time at which the event was created. */
12761
12783
  created_at: string;
12762
- /** Time when the event occurred. */
12784
+ /** Date and time at which the event occurred. */
12763
12785
  occurred_at: string;
12764
12786
  /** ID of the device. */
12765
12787
  device_id: string;
@@ -12775,9 +12797,9 @@ export interface Routes {
12775
12797
  event_id: string;
12776
12798
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12777
12799
  workspace_id: string;
12778
- /** Time at which the event was created. */
12800
+ /** Date and time at which the event was created. */
12779
12801
  created_at: string;
12780
- /** Time when the event occurred. */
12802
+ /** Date and time at which the event occurred. */
12781
12803
  occurred_at: string;
12782
12804
  /** ID of the device. */
12783
12805
  device_id: string;
@@ -12789,9 +12811,9 @@ export interface Routes {
12789
12811
  event_id: string;
12790
12812
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12791
12813
  workspace_id: string;
12792
- /** Time at which the event was created. */
12814
+ /** Date and time at which the event was created. */
12793
12815
  created_at: string;
12794
- /** Time when the event occurred. */
12816
+ /** Date and time at which the event occurred. */
12795
12817
  occurred_at: string;
12796
12818
  /** ID of the device. */
12797
12819
  device_id: string;
@@ -12803,9 +12825,9 @@ export interface Routes {
12803
12825
  event_id: string;
12804
12826
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12805
12827
  workspace_id: string;
12806
- /** Time at which the event was created. */
12828
+ /** Date and time at which the event was created. */
12807
12829
  created_at: string;
12808
- /** Time when the event occurred. */
12830
+ /** Date and time at which the event occurred. */
12809
12831
  occurred_at: string;
12810
12832
  /** ID of the device. */
12811
12833
  device_id: string;
@@ -12817,9 +12839,9 @@ export interface Routes {
12817
12839
  event_id: string;
12818
12840
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12819
12841
  workspace_id: string;
12820
- /** Time at which the event was created. */
12842
+ /** Date and time at which the event was created. */
12821
12843
  created_at: string;
12822
- /** Time when the event occurred. */
12844
+ /** Date and time at which the event occurred. */
12823
12845
  occurred_at: string;
12824
12846
  /** ID of the device. */
12825
12847
  device_id: string;
@@ -12831,9 +12853,9 @@ export interface Routes {
12831
12853
  event_id: string;
12832
12854
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12833
12855
  workspace_id: string;
12834
- /** Time at which the event was created. */
12856
+ /** Date and time at which the event was created. */
12835
12857
  created_at: string;
12836
- /** Time when the event occurred. */
12858
+ /** Date and time at which the event occurred. */
12837
12859
  occurred_at: string;
12838
12860
  /** ID of the device. */
12839
12861
  device_id: string;
@@ -12845,9 +12867,9 @@ export interface Routes {
12845
12867
  event_id: string;
12846
12868
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12847
12869
  workspace_id: string;
12848
- /** Time at which the event was created. */
12870
+ /** Date and time at which the event was created. */
12849
12871
  created_at: string;
12850
- /** Time when the event occurred. */
12872
+ /** Date and time at which the event occurred. */
12851
12873
  occurred_at: string;
12852
12874
  /** ID of the device. */
12853
12875
  device_id: string;
@@ -12859,9 +12881,9 @@ export interface Routes {
12859
12881
  event_id: string;
12860
12882
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12861
12883
  workspace_id: string;
12862
- /** Time at which the event was created. */
12884
+ /** Date and time at which the event was created. */
12863
12885
  created_at: string;
12864
- /** Time when the event occurred. */
12886
+ /** Date and time at which the event occurred. */
12865
12887
  occurred_at: string;
12866
12888
  /** ID of the device. */
12867
12889
  device_id: string;
@@ -12873,9 +12895,9 @@ export interface Routes {
12873
12895
  event_id: string;
12874
12896
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12875
12897
  workspace_id: string;
12876
- /** Time at which the event was created. */
12898
+ /** Date and time at which the event was created. */
12877
12899
  created_at: string;
12878
- /** Time when the event occurred. */
12900
+ /** Date and time at which the event occurred. */
12879
12901
  occurred_at: string;
12880
12902
  /** ID of the device. */
12881
12903
  device_id: string;
@@ -12887,9 +12909,9 @@ export interface Routes {
12887
12909
  event_id: string;
12888
12910
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12889
12911
  workspace_id: string;
12890
- /** Time at which the event was created. */
12912
+ /** Date and time at which the event was created. */
12891
12913
  created_at: string;
12892
- /** Time when the event occurred. */
12914
+ /** Date and time at which the event occurred. */
12893
12915
  occurred_at: string;
12894
12916
  /** ID of the device. */
12895
12917
  device_id: string;
@@ -12901,9 +12923,9 @@ export interface Routes {
12901
12923
  event_id: string;
12902
12924
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12903
12925
  workspace_id: string;
12904
- /** Time at which the event was created. */
12926
+ /** Date and time at which the event was created. */
12905
12927
  created_at: string;
12906
- /** Time when the event occurred. */
12928
+ /** Date and time at which the event occurred. */
12907
12929
  occurred_at: string;
12908
12930
  /** ID of the device. */
12909
12931
  device_id: string;
@@ -12915,9 +12937,9 @@ export interface Routes {
12915
12937
  event_id: string;
12916
12938
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12917
12939
  workspace_id: string;
12918
- /** Time at which the event was created. */
12940
+ /** Date and time at which the event was created. */
12919
12941
  created_at: string;
12920
- /** Time when the event occurred. */
12942
+ /** Date and time at which the event occurred. */
12921
12943
  occurred_at: string;
12922
12944
  /** ID of the device. */
12923
12945
  device_id: string;
@@ -12929,9 +12951,9 @@ export interface Routes {
12929
12951
  event_id: string;
12930
12952
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12931
12953
  workspace_id: string;
12932
- /** Time at which the event was created. */
12954
+ /** Date and time at which the event was created. */
12933
12955
  created_at: string;
12934
- /** Time when the event occurred. */
12956
+ /** Date and time at which the event occurred. */
12935
12957
  occurred_at: string;
12936
12958
  /** ID of the device. */
12937
12959
  device_id: string;
@@ -12943,9 +12965,9 @@ export interface Routes {
12943
12965
  event_id: string;
12944
12966
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12945
12967
  workspace_id: string;
12946
- /** Time at which the event was created. */
12968
+ /** Date and time at which the event was created. */
12947
12969
  created_at: string;
12948
- /** Time when the event occurred. */
12970
+ /** Date and time at which the event occurred. */
12949
12971
  occurred_at: string;
12950
12972
  /** ID of the device. */
12951
12973
  device_id: string;
@@ -12969,9 +12991,9 @@ export interface Routes {
12969
12991
  event_id: string;
12970
12992
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12971
12993
  workspace_id: string;
12972
- /** Time at which the event was created. */
12994
+ /** Date and time at which the event was created. */
12973
12995
  created_at: string;
12974
- /** Time when the event occurred. */
12996
+ /** Date and time at which the event occurred. */
12975
12997
  occurred_at: string;
12976
12998
  /** ID of the device. */
12977
12999
  device_id: string;
@@ -12982,16 +13004,16 @@ export interface Routes {
12982
13004
  access_code_id?: string | undefined;
12983
13005
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
12984
13006
  action_attempt_id?: string | undefined;
12985
- /** 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. */
13007
+ /** 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. */
12986
13008
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
12987
13009
  } | {
12988
13010
  /** ID of the event. */
12989
13011
  event_id: string;
12990
13012
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
12991
13013
  workspace_id: string;
12992
- /** Time at which the event was created. */
13014
+ /** Date and time at which the event was created. */
12993
13015
  created_at: string;
12994
- /** Time when the event occurred. */
13016
+ /** Date and time at which the event occurred. */
12995
13017
  occurred_at: string;
12996
13018
  /** ID of the device. */
12997
13019
  device_id: string;
@@ -13002,16 +13024,16 @@ export interface Routes {
13002
13024
  access_code_id?: string | undefined;
13003
13025
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
13004
13026
  action_attempt_id?: string | undefined;
13005
- /** 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. */
13027
+ /** 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. */
13006
13028
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
13007
13029
  } | {
13008
13030
  /** ID of the event. */
13009
13031
  event_id: string;
13010
13032
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13011
13033
  workspace_id: string;
13012
- /** Time at which the event was created. */
13034
+ /** Date and time at which the event was created. */
13013
13035
  created_at: string;
13014
- /** Time when the event occurred. */
13036
+ /** Date and time at which the event occurred. */
13015
13037
  occurred_at: string;
13016
13038
  /** ID of the device. */
13017
13039
  device_id: string;
@@ -13025,9 +13047,9 @@ export interface Routes {
13025
13047
  event_id: string;
13026
13048
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13027
13049
  workspace_id: string;
13028
- /** Time at which the event was created. */
13050
+ /** Date and time at which the event was created. */
13029
13051
  created_at: string;
13030
- /** Time when the event occurred. */
13052
+ /** Date and time at which the event occurred. */
13031
13053
  occurred_at: string;
13032
13054
  /** ID of the device. */
13033
13055
  device_id: string;
@@ -13038,23 +13060,23 @@ export interface Routes {
13038
13060
  thermostat_schedule_id: string | null;
13039
13061
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
13040
13062
  climate_preset_key: string;
13041
- /** 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. */
13063
+ /** 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). */
13042
13064
  is_fallback_climate_preset: boolean;
13043
13065
  } | {
13044
13066
  /** ID of the event. */
13045
13067
  event_id: string;
13046
13068
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13047
13069
  workspace_id: string;
13048
- /** Time at which the event was created. */
13070
+ /** Date and time at which the event was created. */
13049
13071
  created_at: string;
13050
- /** Time when the event occurred. */
13072
+ /** Date and time at which the event occurred. */
13051
13073
  occurred_at: string;
13052
13074
  /** ID of the device. */
13053
13075
  device_id: string;
13054
13076
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13055
13077
  connected_account_id: string;
13056
13078
  event_type: 'thermostat.manually_adjusted';
13057
- /** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
13079
+ /** 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). */
13058
13080
  method: 'seam' | 'external';
13059
13081
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
13060
13082
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
@@ -13073,18 +13095,18 @@ export interface Routes {
13073
13095
  event_id: string;
13074
13096
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13075
13097
  workspace_id: string;
13076
- /** Time at which the event was created. */
13098
+ /** Date and time at which the event was created. */
13077
13099
  created_at: string;
13078
- /** Time when the event occurred. */
13100
+ /** Date and time at which the event occurred. */
13079
13101
  occurred_at: string;
13080
13102
  /** ID of the device. */
13081
13103
  device_id: string;
13082
13104
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13083
13105
  connected_account_id: string;
13084
13106
  event_type: 'thermostat.temperature_threshold_exceeded';
13085
- /** Temperature, in °C, reported by the thermostat. */
13107
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
13086
13108
  temperature_celsius: number;
13087
- /** Temperature, in °F, reported by the thermostat. */
13109
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
13088
13110
  temperature_fahrenheit: number;
13089
13111
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
13090
13112
  upper_limit_celsius: number | null;
@@ -13099,18 +13121,18 @@ export interface Routes {
13099
13121
  event_id: string;
13100
13122
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13101
13123
  workspace_id: string;
13102
- /** Time at which the event was created. */
13124
+ /** Date and time at which the event was created. */
13103
13125
  created_at: string;
13104
- /** Time when the event occurred. */
13126
+ /** Date and time at which the event occurred. */
13105
13127
  occurred_at: string;
13106
13128
  /** ID of the device. */
13107
13129
  device_id: string;
13108
13130
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13109
13131
  connected_account_id: string;
13110
13132
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded';
13111
- /** Temperature, in °C, reported by the thermostat. */
13133
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
13112
13134
  temperature_celsius: number;
13113
- /** Temperature, in °F, reported by the thermostat. */
13135
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
13114
13136
  temperature_fahrenheit: number;
13115
13137
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
13116
13138
  upper_limit_celsius: number | null;
@@ -13125,11 +13147,11 @@ export interface Routes {
13125
13147
  event_id: string;
13126
13148
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13127
13149
  workspace_id: string;
13128
- /** Time at which the event was created. */
13150
+ /** Date and time at which the event was created. */
13129
13151
  created_at: string;
13130
- /** Time when the event occurred. */
13152
+ /** Date and time at which the event occurred. */
13131
13153
  occurred_at: string;
13132
- /** ID of the enrollment automation. */
13154
+ /** 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). */
13133
13155
  enrollment_automation_id: string;
13134
13156
  event_type: 'enrollment_automation.deleted';
13135
13157
  } | {
@@ -13137,11 +13159,11 @@ export interface Routes {
13137
13159
  event_id: string;
13138
13160
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13139
13161
  workspace_id: string;
13140
- /** Time at which the event was created. */
13162
+ /** Date and time at which the event was created. */
13141
13163
  created_at: string;
13142
- /** Time when the event occurred. */
13164
+ /** Date and time at which the event occurred. */
13143
13165
  occurred_at: string;
13144
- /** ID of the device. */
13166
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13145
13167
  device_id: string;
13146
13168
  event_type: 'phone.deactivated';
13147
13169
  }) | undefined;
@@ -13176,15 +13198,15 @@ export interface Routes {
13176
13198
  event_id: string;
13177
13199
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13178
13200
  workspace_id: string;
13179
- /** Time at which the event was created. */
13201
+ /** Date and time at which the event was created. */
13180
13202
  created_at: string;
13181
- /** Time when the event occurred. */
13203
+ /** Date and time at which the event occurred. */
13182
13204
  occurred_at: string;
13183
- /** The ID of the access code. */
13205
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13184
13206
  access_code_id: string;
13185
- /** The ID of the device. */
13207
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13186
13208
  device_id: string;
13187
- /** The ID of the connected account. */
13209
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13188
13210
  connected_account_id: string;
13189
13211
  event_type: 'access_code.created';
13190
13212
  } | {
@@ -13192,15 +13214,15 @@ export interface Routes {
13192
13214
  event_id: string;
13193
13215
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13194
13216
  workspace_id: string;
13195
- /** Time at which the event was created. */
13217
+ /** Date and time at which the event was created. */
13196
13218
  created_at: string;
13197
- /** Time when the event occurred. */
13219
+ /** Date and time at which the event occurred. */
13198
13220
  occurred_at: string;
13199
- /** The ID of the access code. */
13221
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13200
13222
  access_code_id: string;
13201
- /** The ID of the device. */
13223
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13202
13224
  device_id: string;
13203
- /** The ID of the connected account. */
13225
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13204
13226
  connected_account_id: string;
13205
13227
  event_type: 'access_code.changed';
13206
13228
  } | {
@@ -13208,51 +13230,51 @@ export interface Routes {
13208
13230
  event_id: string;
13209
13231
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13210
13232
  workspace_id: string;
13211
- /** Time at which the event was created. */
13233
+ /** Date and time at which the event was created. */
13212
13234
  created_at: string;
13213
- /** Time when the event occurred. */
13235
+ /** Date and time at which the event occurred. */
13214
13236
  occurred_at: string;
13215
- /** The ID of the access code. */
13237
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13216
13238
  access_code_id: string;
13217
- /** The ID of the device. */
13239
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13218
13240
  device_id: string;
13219
- /** The ID of the connected account. */
13241
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13220
13242
  connected_account_id: string;
13221
13243
  event_type: 'access_code.scheduled_on_device';
13222
- /** The code of the access code. */
13244
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13223
13245
  code: string;
13224
13246
  } | {
13225
13247
  /** ID of the event. */
13226
13248
  event_id: string;
13227
13249
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13228
13250
  workspace_id: string;
13229
- /** Time at which the event was created. */
13251
+ /** Date and time at which the event was created. */
13230
13252
  created_at: string;
13231
- /** Time when the event occurred. */
13253
+ /** Date and time at which the event occurred. */
13232
13254
  occurred_at: string;
13233
- /** The ID of the access code. */
13255
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13234
13256
  access_code_id: string;
13235
- /** The ID of the device. */
13257
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13236
13258
  device_id: string;
13237
- /** The ID of the connected account. */
13259
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13238
13260
  connected_account_id: string;
13239
13261
  event_type: 'access_code.set_on_device';
13240
- /** The code of the access code. */
13262
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13241
13263
  code: string;
13242
13264
  } | {
13243
13265
  /** ID of the event. */
13244
13266
  event_id: string;
13245
13267
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13246
13268
  workspace_id: string;
13247
- /** Time at which the event was created. */
13269
+ /** Date and time at which the event was created. */
13248
13270
  created_at: string;
13249
- /** Time when the event occurred. */
13271
+ /** Date and time at which the event occurred. */
13250
13272
  occurred_at: string;
13251
- /** The ID of the access code. */
13273
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13252
13274
  access_code_id: string;
13253
- /** The ID of the device. */
13275
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13254
13276
  device_id: string;
13255
- /** The ID of the connected account. */
13277
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13256
13278
  connected_account_id: string;
13257
13279
  event_type: 'access_code.removed_from_device';
13258
13280
  } | {
@@ -13260,15 +13282,15 @@ export interface Routes {
13260
13282
  event_id: string;
13261
13283
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13262
13284
  workspace_id: string;
13263
- /** Time at which the event was created. */
13285
+ /** Date and time at which the event was created. */
13264
13286
  created_at: string;
13265
- /** Time when the event occurred. */
13287
+ /** Date and time at which the event occurred. */
13266
13288
  occurred_at: string;
13267
- /** The ID of the access code. */
13289
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13268
13290
  access_code_id: string;
13269
- /** The ID of the device. */
13291
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13270
13292
  device_id: string;
13271
- /** The ID of the connected account. */
13293
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13272
13294
  connected_account_id: string;
13273
13295
  event_type: 'access_code.delay_in_setting_on_device';
13274
13296
  } | {
@@ -13276,15 +13298,15 @@ export interface Routes {
13276
13298
  event_id: string;
13277
13299
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13278
13300
  workspace_id: string;
13279
- /** Time at which the event was created. */
13301
+ /** Date and time at which the event was created. */
13280
13302
  created_at: string;
13281
- /** Time when the event occurred. */
13303
+ /** Date and time at which the event occurred. */
13282
13304
  occurred_at: string;
13283
- /** The ID of the access code. */
13305
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13284
13306
  access_code_id: string;
13285
- /** The ID of the device. */
13307
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13286
13308
  device_id: string;
13287
- /** The ID of the connected account. */
13309
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13288
13310
  connected_account_id: string;
13289
13311
  event_type: 'access_code.failed_to_set_on_device';
13290
13312
  } | {
@@ -13292,33 +13314,33 @@ export interface Routes {
13292
13314
  event_id: string;
13293
13315
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13294
13316
  workspace_id: string;
13295
- /** Time at which the event was created. */
13317
+ /** Date and time at which the event was created. */
13296
13318
  created_at: string;
13297
- /** Time when the event occurred. */
13319
+ /** Date and time at which the event occurred. */
13298
13320
  occurred_at: string;
13299
- /** The ID of the access code. */
13321
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13300
13322
  access_code_id: string;
13301
- /** The ID of the device. */
13323
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13302
13324
  device_id: string;
13303
- /** The ID of the connected account. */
13325
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13304
13326
  connected_account_id: string;
13305
13327
  event_type: 'access_code.deleted';
13306
- /** The code of the access code. */
13328
+ /** Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13307
13329
  code: string | null;
13308
13330
  } | {
13309
13331
  /** ID of the event. */
13310
13332
  event_id: string;
13311
13333
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13312
13334
  workspace_id: string;
13313
- /** Time at which the event was created. */
13335
+ /** Date and time at which the event was created. */
13314
13336
  created_at: string;
13315
- /** Time when the event occurred. */
13337
+ /** Date and time at which the event occurred. */
13316
13338
  occurred_at: string;
13317
- /** The ID of the access code. */
13339
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13318
13340
  access_code_id: string;
13319
- /** The ID of the device. */
13341
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13320
13342
  device_id: string;
13321
- /** The ID of the connected account. */
13343
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13322
13344
  connected_account_id: string;
13323
13345
  event_type: 'access_code.delay_in_removing_from_device';
13324
13346
  } | {
@@ -13326,15 +13348,15 @@ export interface Routes {
13326
13348
  event_id: string;
13327
13349
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13328
13350
  workspace_id: string;
13329
- /** Time at which the event was created. */
13351
+ /** Date and time at which the event was created. */
13330
13352
  created_at: string;
13331
- /** Time when the event occurred. */
13353
+ /** Date and time at which the event occurred. */
13332
13354
  occurred_at: string;
13333
- /** The ID of the access code. */
13355
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13334
13356
  access_code_id: string;
13335
- /** The ID of the device. */
13357
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13336
13358
  device_id: string;
13337
- /** The ID of the connected account. */
13359
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13338
13360
  connected_account_id: string;
13339
13361
  event_type: 'access_code.failed_to_remove_from_device';
13340
13362
  } | {
@@ -13342,15 +13364,15 @@ export interface Routes {
13342
13364
  event_id: string;
13343
13365
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13344
13366
  workspace_id: string;
13345
- /** Time at which the event was created. */
13367
+ /** Date and time at which the event was created. */
13346
13368
  created_at: string;
13347
- /** Time when the event occurred. */
13369
+ /** Date and time at which the event occurred. */
13348
13370
  occurred_at: string;
13349
- /** The ID of the access code. */
13371
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13350
13372
  access_code_id: string;
13351
- /** The ID of the device. */
13373
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13352
13374
  device_id: string;
13353
- /** The ID of the connected account. */
13375
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13354
13376
  connected_account_id: string;
13355
13377
  event_type: 'access_code.modified_external_to_seam';
13356
13378
  } | {
@@ -13358,15 +13380,15 @@ export interface Routes {
13358
13380
  event_id: string;
13359
13381
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13360
13382
  workspace_id: string;
13361
- /** Time at which the event was created. */
13383
+ /** Date and time at which the event was created. */
13362
13384
  created_at: string;
13363
- /** Time when the event occurred. */
13385
+ /** Date and time at which the event occurred. */
13364
13386
  occurred_at: string;
13365
- /** The ID of the access code. */
13387
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13366
13388
  access_code_id: string;
13367
- /** The ID of the device. */
13389
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13368
13390
  device_id: string;
13369
- /** The ID of the connected account. */
13391
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13370
13392
  connected_account_id: string;
13371
13393
  event_type: 'access_code.deleted_external_to_seam';
13372
13394
  } | {
@@ -13374,15 +13396,15 @@ export interface Routes {
13374
13396
  event_id: string;
13375
13397
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13376
13398
  workspace_id: string;
13377
- /** Time at which the event was created. */
13399
+ /** Date and time at which the event was created. */
13378
13400
  created_at: string;
13379
- /** Time when the event occurred. */
13401
+ /** Date and time at which the event occurred. */
13380
13402
  occurred_at: string;
13381
- /** The ID of the access code. */
13403
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13382
13404
  access_code_id: string;
13383
- /** The ID of the device. */
13405
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13384
13406
  device_id: string;
13385
- /** The ID of the connected account. */
13407
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13386
13408
  connected_account_id: string;
13387
13409
  event_type: 'access_code.backup_access_code_pulled';
13388
13410
  backup_access_code_id: string;
@@ -13391,15 +13413,15 @@ export interface Routes {
13391
13413
  event_id: string;
13392
13414
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13393
13415
  workspace_id: string;
13394
- /** Time at which the event was created. */
13416
+ /** Date and time at which the event was created. */
13395
13417
  created_at: string;
13396
- /** Time when the event occurred. */
13418
+ /** Date and time at which the event occurred. */
13397
13419
  occurred_at: string;
13398
- /** The ID of the access code. */
13420
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13399
13421
  access_code_id: string;
13400
- /** The ID of the device. */
13422
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13401
13423
  device_id: string;
13402
- /** The ID of the connected account. */
13424
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13403
13425
  connected_account_id: string;
13404
13426
  event_type: 'access_code.unmanaged.converted_to_managed';
13405
13427
  } | {
@@ -13407,15 +13429,15 @@ export interface Routes {
13407
13429
  event_id: string;
13408
13430
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13409
13431
  workspace_id: string;
13410
- /** Time at which the event was created. */
13432
+ /** Date and time at which the event was created. */
13411
13433
  created_at: string;
13412
- /** Time when the event occurred. */
13434
+ /** Date and time at which the event occurred. */
13413
13435
  occurred_at: string;
13414
- /** The ID of the access code. */
13436
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13415
13437
  access_code_id: string;
13416
- /** The ID of the device. */
13438
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13417
13439
  device_id: string;
13418
- /** The ID of the connected account. */
13440
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13419
13441
  connected_account_id: string;
13420
13442
  event_type: 'access_code.unmanaged.failed_to_convert_to_managed';
13421
13443
  } | {
@@ -13423,15 +13445,15 @@ export interface Routes {
13423
13445
  event_id: string;
13424
13446
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13425
13447
  workspace_id: string;
13426
- /** Time at which the event was created. */
13448
+ /** Date and time at which the event was created. */
13427
13449
  created_at: string;
13428
- /** Time when the event occurred. */
13450
+ /** Date and time at which the event occurred. */
13429
13451
  occurred_at: string;
13430
- /** The ID of the access code. */
13452
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13431
13453
  access_code_id: string;
13432
- /** The ID of the device. */
13454
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13433
13455
  device_id: string;
13434
- /** The ID of the connected account. */
13456
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13435
13457
  connected_account_id: string;
13436
13458
  event_type: 'access_code.unmanaged.created';
13437
13459
  } | {
@@ -13439,15 +13461,15 @@ export interface Routes {
13439
13461
  event_id: string;
13440
13462
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13441
13463
  workspace_id: string;
13442
- /** Time at which the event was created. */
13464
+ /** Date and time at which the event was created. */
13443
13465
  created_at: string;
13444
- /** Time when the event occurred. */
13466
+ /** Date and time at which the event occurred. */
13445
13467
  occurred_at: string;
13446
- /** The ID of the access code. */
13468
+ /** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes). */
13447
13469
  access_code_id: string;
13448
- /** The ID of the device. */
13470
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
13449
13471
  device_id: string;
13450
- /** The ID of the connected account. */
13472
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13451
13473
  connected_account_id: string;
13452
13474
  event_type: 'access_code.unmanaged.removed';
13453
13475
  } | {
@@ -13455,13 +13477,13 @@ export interface Routes {
13455
13477
  event_id: string;
13456
13478
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13457
13479
  workspace_id: string;
13458
- /** Time at which the event was created. */
13480
+ /** Date and time at which the event was created. */
13459
13481
  created_at: string;
13460
- /** Time when the event occurred. */
13482
+ /** Date and time at which the event occurred. */
13461
13483
  occurred_at: string;
13462
- /** ID of the connected account. */
13484
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13463
13485
  connected_account_id?: string | undefined;
13464
- /** ID of the ACS system. */
13486
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13465
13487
  acs_system_id: string;
13466
13488
  event_type: 'acs_system.connected';
13467
13489
  } | {
@@ -13469,13 +13491,13 @@ export interface Routes {
13469
13491
  event_id: string;
13470
13492
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13471
13493
  workspace_id: string;
13472
- /** Time at which the event was created. */
13494
+ /** Date and time at which the event was created. */
13473
13495
  created_at: string;
13474
- /** Time when the event occurred. */
13496
+ /** Date and time at which the event occurred. */
13475
13497
  occurred_at: string;
13476
- /** ID of the connected account. */
13498
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13477
13499
  connected_account_id?: string | undefined;
13478
- /** ID of the ACS system. */
13500
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13479
13501
  acs_system_id: string;
13480
13502
  event_type: 'acs_system.added';
13481
13503
  } | {
@@ -13483,13 +13505,13 @@ export interface Routes {
13483
13505
  event_id: string;
13484
13506
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13485
13507
  workspace_id: string;
13486
- /** Time at which the event was created. */
13508
+ /** Date and time at which the event was created. */
13487
13509
  created_at: string;
13488
- /** Time when the event occurred. */
13510
+ /** Date and time at which the event occurred. */
13489
13511
  occurred_at: string;
13490
- /** ID of the connected account. */
13512
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13491
13513
  connected_account_id?: string | undefined;
13492
- /** ID of the ACS system. */
13514
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13493
13515
  acs_system_id: string;
13494
13516
  event_type: 'acs_system.disconnected';
13495
13517
  } | {
@@ -13497,13 +13519,13 @@ export interface Routes {
13497
13519
  event_id: string;
13498
13520
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13499
13521
  workspace_id: string;
13500
- /** Time at which the event was created. */
13522
+ /** Date and time at which the event was created. */
13501
13523
  created_at: string;
13502
- /** Time when the event occurred. */
13524
+ /** Date and time at which the event occurred. */
13503
13525
  occurred_at: string;
13504
- /** ID of the connected account. */
13526
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13505
13527
  connected_account_id?: string | undefined;
13506
- /** ID of the ACS system. */
13528
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13507
13529
  acs_system_id: string;
13508
13530
  acs_credential_id: string;
13509
13531
  event_type: 'acs_credential.deleted';
@@ -13512,13 +13534,13 @@ export interface Routes {
13512
13534
  event_id: string;
13513
13535
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13514
13536
  workspace_id: string;
13515
- /** Time at which the event was created. */
13537
+ /** Date and time at which the event was created. */
13516
13538
  created_at: string;
13517
- /** Time when the event occurred. */
13539
+ /** Date and time at which the event occurred. */
13518
13540
  occurred_at: string;
13519
- /** ID of the connected account. */
13541
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13520
13542
  connected_account_id?: string | undefined;
13521
- /** ID of the ACS system. */
13543
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13522
13544
  acs_system_id: string;
13523
13545
  acs_credential_id: string;
13524
13546
  event_type: 'acs_credential.issued';
@@ -13527,13 +13549,13 @@ export interface Routes {
13527
13549
  event_id: string;
13528
13550
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13529
13551
  workspace_id: string;
13530
- /** Time at which the event was created. */
13552
+ /** Date and time at which the event was created. */
13531
13553
  created_at: string;
13532
- /** Time when the event occurred. */
13554
+ /** Date and time at which the event occurred. */
13533
13555
  occurred_at: string;
13534
- /** ID of the connected account. */
13556
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13535
13557
  connected_account_id?: string | undefined;
13536
- /** ID of the ACS system. */
13558
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13537
13559
  acs_system_id: string;
13538
13560
  acs_user_id: string;
13539
13561
  event_type: 'acs_user.deleted';
@@ -13542,15 +13564,15 @@ export interface Routes {
13542
13564
  event_id: string;
13543
13565
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13544
13566
  workspace_id: string;
13545
- /** Time at which the event was created. */
13567
+ /** Date and time at which the event was created. */
13546
13568
  created_at: string;
13547
- /** Time when the event occurred. */
13569
+ /** Date and time at which the event occurred. */
13548
13570
  occurred_at: string;
13549
- /** ID of the connected account. */
13571
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13550
13572
  connected_account_id?: string | undefined;
13551
- /** ID of the ACS system. */
13573
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13552
13574
  acs_system_id: string;
13553
- /** ID of the ACS encoder. */
13575
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
13554
13576
  acs_encoder_id: string;
13555
13577
  event_type: 'acs_encoder.added';
13556
13578
  } | {
@@ -13558,15 +13580,15 @@ export interface Routes {
13558
13580
  event_id: string;
13559
13581
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13560
13582
  workspace_id: string;
13561
- /** Time at which the event was created. */
13583
+ /** Date and time at which the event was created. */
13562
13584
  created_at: string;
13563
- /** Time when the event occurred. */
13585
+ /** Date and time at which the event occurred. */
13564
13586
  occurred_at: string;
13565
- /** ID of the connected account. */
13587
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13566
13588
  connected_account_id?: string | undefined;
13567
- /** ID of the ACS system. */
13589
+ /** ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems). */
13568
13590
  acs_system_id: string;
13569
- /** ID of the ACS encoder. */
13591
+ /** ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners). */
13570
13592
  acs_encoder_id: string;
13571
13593
  event_type: 'acs_encoder.removed';
13572
13594
  } | {
@@ -13574,11 +13596,11 @@ export interface Routes {
13574
13596
  event_id: string;
13575
13597
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13576
13598
  workspace_id: string;
13577
- /** Time at which the event was created. */
13599
+ /** Date and time at which the event was created. */
13578
13600
  created_at: string;
13579
- /** Time when the event occurred. */
13601
+ /** Date and time at which the event occurred. */
13580
13602
  occurred_at: string;
13581
- /** ID of the client session. */
13603
+ /** ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens). */
13582
13604
  client_session_id: string;
13583
13605
  event_type: 'client_session.deleted';
13584
13606
  } | {
@@ -13586,53 +13608,53 @@ export interface Routes {
13586
13608
  event_id: string;
13587
13609
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13588
13610
  workspace_id: string;
13589
- /** Time at which the event was created. */
13611
+ /** Date and time at which the event was created. */
13590
13612
  created_at: string;
13591
- /** Time when the event occurred. */
13613
+ /** Date and time at which the event occurred. */
13592
13614
  occurred_at: string;
13593
- /** ID of the connected account. */
13615
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13594
13616
  connected_account_id: string;
13595
13617
  event_type: 'connected_account.connected';
13596
- /** ID of the connect webview. */
13618
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
13597
13619
  connect_webview_id: string;
13598
13620
  } | {
13599
13621
  /** ID of the event. */
13600
13622
  event_id: string;
13601
13623
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13602
13624
  workspace_id: string;
13603
- /** Time at which the event was created. */
13625
+ /** Date and time at which the event was created. */
13604
13626
  created_at: string;
13605
- /** Time when the event occurred. */
13627
+ /** Date and time at which the event occurred. */
13606
13628
  occurred_at: string;
13607
- /** ID of the connected account. */
13629
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13608
13630
  connected_account_id: string;
13609
13631
  event_type: 'connected_account.created';
13610
- /** ID of the connect webview. */
13632
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
13611
13633
  connect_webview_id: string;
13612
13634
  } | {
13613
13635
  /** ID of the event. */
13614
13636
  event_id: string;
13615
13637
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13616
13638
  workspace_id: string;
13617
- /** Time at which the event was created. */
13639
+ /** Date and time at which the event was created. */
13618
13640
  created_at: string;
13619
- /** Time when the event occurred. */
13641
+ /** Date and time at which the event occurred. */
13620
13642
  occurred_at: string;
13621
- /** ID of the connected account. */
13643
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13622
13644
  connected_account_id: string;
13623
13645
  event_type: 'connected_account.successful_login';
13624
- /** ID of the connect webview. */
13646
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
13625
13647
  connect_webview_id: string;
13626
13648
  } | {
13627
13649
  /** ID of the event. */
13628
13650
  event_id: string;
13629
13651
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13630
13652
  workspace_id: string;
13631
- /** Time at which the event was created. */
13653
+ /** Date and time at which the event was created. */
13632
13654
  created_at: string;
13633
- /** Time when the event occurred. */
13655
+ /** Date and time at which the event occurred. */
13634
13656
  occurred_at: string;
13635
- /** ID of the connected account. */
13657
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13636
13658
  connected_account_id: string;
13637
13659
  event_type: 'connected_account.disconnected';
13638
13660
  } | {
@@ -13640,11 +13662,11 @@ export interface Routes {
13640
13662
  event_id: string;
13641
13663
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13642
13664
  workspace_id: string;
13643
- /** Time at which the event was created. */
13665
+ /** Date and time at which the event was created. */
13644
13666
  created_at: string;
13645
- /** Time when the event occurred. */
13667
+ /** Date and time at which the event occurred. */
13646
13668
  occurred_at: string;
13647
- /** ID of the connected account. */
13669
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13648
13670
  connected_account_id: string;
13649
13671
  event_type: 'connected_account.completed_first_sync';
13650
13672
  } | {
@@ -13652,11 +13674,11 @@ export interface Routes {
13652
13674
  event_id: string;
13653
13675
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13654
13676
  workspace_id: string;
13655
- /** Time at which the event was created. */
13677
+ /** Date and time at which the event was created. */
13656
13678
  created_at: string;
13657
- /** Time when the event occurred. */
13679
+ /** Date and time at which the event occurred. */
13658
13680
  occurred_at: string;
13659
- /** ID of the connected account. */
13681
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13660
13682
  connected_account_id: string;
13661
13683
  event_type: 'connected_account.deleted';
13662
13684
  } | {
@@ -13664,11 +13686,11 @@ export interface Routes {
13664
13686
  event_id: string;
13665
13687
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13666
13688
  workspace_id: string;
13667
- /** Time at which the event was created. */
13689
+ /** Date and time at which the event was created. */
13668
13690
  created_at: string;
13669
- /** Time when the event occurred. */
13691
+ /** Date and time at which the event occurred. */
13670
13692
  occurred_at: string;
13671
- /** ID of the connected account. */
13693
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13672
13694
  connected_account_id: string;
13673
13695
  event_type: 'connected_account.completed_first_sync_after_reconnection';
13674
13696
  } | {
@@ -13676,15 +13698,15 @@ export interface Routes {
13676
13698
  event_id: string;
13677
13699
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13678
13700
  workspace_id: string;
13679
- /** Time at which the event was created. */
13701
+ /** Date and time at which the event was created. */
13680
13702
  created_at: string;
13681
- /** Time when the event occurred. */
13703
+ /** Date and time at which the event occurred. */
13682
13704
  occurred_at: string;
13683
- /** The ID of the action attempt. */
13705
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
13684
13706
  action_attempt_id: string;
13685
- /** The type of action. */
13707
+ /** Type of action. */
13686
13708
  action_type: string;
13687
- /** The status of the action. */
13709
+ /** Status of the action. */
13688
13710
  status: string;
13689
13711
  event_type: 'action_attempt.lock_door.succeeded';
13690
13712
  } | {
@@ -13692,15 +13714,15 @@ export interface Routes {
13692
13714
  event_id: string;
13693
13715
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13694
13716
  workspace_id: string;
13695
- /** Time at which the event was created. */
13717
+ /** Date and time at which the event was created. */
13696
13718
  created_at: string;
13697
- /** Time when the event occurred. */
13719
+ /** Date and time at which the event occurred. */
13698
13720
  occurred_at: string;
13699
- /** The ID of the action attempt. */
13721
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
13700
13722
  action_attempt_id: string;
13701
- /** The type of action. */
13723
+ /** Type of action. */
13702
13724
  action_type: string;
13703
- /** The status of the action. */
13725
+ /** Status of the action. */
13704
13726
  status: string;
13705
13727
  event_type: 'action_attempt.lock_door.failed';
13706
13728
  } | {
@@ -13708,15 +13730,15 @@ export interface Routes {
13708
13730
  event_id: string;
13709
13731
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13710
13732
  workspace_id: string;
13711
- /** Time at which the event was created. */
13733
+ /** Date and time at which the event was created. */
13712
13734
  created_at: string;
13713
- /** Time when the event occurred. */
13735
+ /** Date and time at which the event occurred. */
13714
13736
  occurred_at: string;
13715
- /** The ID of the action attempt. */
13737
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
13716
13738
  action_attempt_id: string;
13717
- /** The type of action. */
13739
+ /** Type of action. */
13718
13740
  action_type: string;
13719
- /** The status of the action. */
13741
+ /** Status of the action. */
13720
13742
  status: string;
13721
13743
  event_type: 'action_attempt.unlock_door.succeeded';
13722
13744
  } | {
@@ -13724,15 +13746,15 @@ export interface Routes {
13724
13746
  event_id: string;
13725
13747
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13726
13748
  workspace_id: string;
13727
- /** Time at which the event was created. */
13749
+ /** Date and time at which the event was created. */
13728
13750
  created_at: string;
13729
- /** Time when the event occurred. */
13751
+ /** Date and time at which the event occurred. */
13730
13752
  occurred_at: string;
13731
- /** The ID of the action attempt. */
13753
+ /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts). */
13732
13754
  action_attempt_id: string;
13733
- /** The type of action. */
13755
+ /** Type of action. */
13734
13756
  action_type: string;
13735
- /** The status of the action. */
13757
+ /** Status of the action. */
13736
13758
  status: string;
13737
13759
  event_type: 'action_attempt.unlock_door.failed';
13738
13760
  } | {
@@ -13740,25 +13762,25 @@ export interface Routes {
13740
13762
  event_id: string;
13741
13763
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13742
13764
  workspace_id: string;
13743
- /** Time at which the event was created. */
13765
+ /** Date and time at which the event was created. */
13744
13766
  created_at: string;
13745
- /** Time when the event occurred. */
13767
+ /** Date and time at which the event occurred. */
13746
13768
  occurred_at: string;
13747
- /** ID of the connect webview. */
13769
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
13748
13770
  connect_webview_id: string;
13749
13771
  event_type: 'connect_webview.login_succeeded';
13750
- /** ID of the connected account. */
13772
+ /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
13751
13773
  connected_account_id: string;
13752
13774
  } | {
13753
13775
  /** ID of the event. */
13754
13776
  event_id: string;
13755
13777
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13756
13778
  workspace_id: string;
13757
- /** Time at which the event was created. */
13779
+ /** Date and time at which the event was created. */
13758
13780
  created_at: string;
13759
- /** Time when the event occurred. */
13781
+ /** Date and time at which the event occurred. */
13760
13782
  occurred_at: string;
13761
- /** ID of the connect webview. */
13783
+ /** ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews). */
13762
13784
  connect_webview_id: string;
13763
13785
  event_type: 'connect_webview.login_failed';
13764
13786
  } | {
@@ -13766,9 +13788,9 @@ export interface Routes {
13766
13788
  event_id: string;
13767
13789
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13768
13790
  workspace_id: string;
13769
- /** Time at which the event was created. */
13791
+ /** Date and time at which the event was created. */
13770
13792
  created_at: string;
13771
- /** Time when the event occurred. */
13793
+ /** Date and time at which the event occurred. */
13772
13794
  occurred_at: string;
13773
13795
  /** ID of the device. */
13774
13796
  device_id: string;
@@ -13780,9 +13802,9 @@ export interface Routes {
13780
13802
  event_id: string;
13781
13803
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13782
13804
  workspace_id: string;
13783
- /** Time at which the event was created. */
13805
+ /** Date and time at which the event was created. */
13784
13806
  created_at: string;
13785
- /** Time when the event occurred. */
13807
+ /** Date and time at which the event occurred. */
13786
13808
  occurred_at: string;
13787
13809
  /** ID of the device. */
13788
13810
  device_id: string;
@@ -13794,9 +13816,9 @@ export interface Routes {
13794
13816
  event_id: string;
13795
13817
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13796
13818
  workspace_id: string;
13797
- /** Time at which the event was created. */
13819
+ /** Date and time at which the event was created. */
13798
13820
  created_at: string;
13799
- /** Time when the event occurred. */
13821
+ /** Date and time at which the event occurred. */
13800
13822
  occurred_at: string;
13801
13823
  /** ID of the device. */
13802
13824
  device_id: string;
@@ -13808,9 +13830,9 @@ export interface Routes {
13808
13830
  event_id: string;
13809
13831
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13810
13832
  workspace_id: string;
13811
- /** Time at which the event was created. */
13833
+ /** Date and time at which the event was created. */
13812
13834
  created_at: string;
13813
- /** Time when the event occurred. */
13835
+ /** Date and time at which the event occurred. */
13814
13836
  occurred_at: string;
13815
13837
  /** ID of the device. */
13816
13838
  device_id: string;
@@ -13822,9 +13844,9 @@ export interface Routes {
13822
13844
  event_id: string;
13823
13845
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13824
13846
  workspace_id: string;
13825
- /** Time at which the event was created. */
13847
+ /** Date and time at which the event was created. */
13826
13848
  created_at: string;
13827
- /** Time when the event occurred. */
13849
+ /** Date and time at which the event occurred. */
13828
13850
  occurred_at: string;
13829
13851
  /** ID of the device. */
13830
13852
  device_id: string;
@@ -13836,9 +13858,9 @@ export interface Routes {
13836
13858
  event_id: string;
13837
13859
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13838
13860
  workspace_id: string;
13839
- /** Time at which the event was created. */
13861
+ /** Date and time at which the event was created. */
13840
13862
  created_at: string;
13841
- /** Time when the event occurred. */
13863
+ /** Date and time at which the event occurred. */
13842
13864
  occurred_at: string;
13843
13865
  /** ID of the device. */
13844
13866
  device_id: string;
@@ -13852,9 +13874,9 @@ export interface Routes {
13852
13874
  event_id: string;
13853
13875
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13854
13876
  workspace_id: string;
13855
- /** Time at which the event was created. */
13877
+ /** Date and time at which the event was created. */
13856
13878
  created_at: string;
13857
- /** Time when the event occurred. */
13879
+ /** Date and time at which the event occurred. */
13858
13880
  occurred_at: string;
13859
13881
  /** ID of the device. */
13860
13882
  device_id: string;
@@ -13868,9 +13890,9 @@ export interface Routes {
13868
13890
  event_id: string;
13869
13891
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13870
13892
  workspace_id: string;
13871
- /** Time at which the event was created. */
13893
+ /** Date and time at which the event was created. */
13872
13894
  created_at: string;
13873
- /** Time when the event occurred. */
13895
+ /** Date and time at which the event occurred. */
13874
13896
  occurred_at: string;
13875
13897
  /** ID of the device. */
13876
13898
  device_id: string;
@@ -13882,9 +13904,9 @@ export interface Routes {
13882
13904
  event_id: string;
13883
13905
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13884
13906
  workspace_id: string;
13885
- /** Time at which the event was created. */
13907
+ /** Date and time at which the event was created. */
13886
13908
  created_at: string;
13887
- /** Time when the event occurred. */
13909
+ /** Date and time at which the event occurred. */
13888
13910
  occurred_at: string;
13889
13911
  /** ID of the device. */
13890
13912
  device_id: string;
@@ -13898,9 +13920,9 @@ export interface Routes {
13898
13920
  event_id: string;
13899
13921
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13900
13922
  workspace_id: string;
13901
- /** Time at which the event was created. */
13923
+ /** Date and time at which the event was created. */
13902
13924
  created_at: string;
13903
- /** Time when the event occurred. */
13925
+ /** Date and time at which the event occurred. */
13904
13926
  occurred_at: string;
13905
13927
  /** ID of the device. */
13906
13928
  device_id: string;
@@ -13916,9 +13938,9 @@ export interface Routes {
13916
13938
  event_id: string;
13917
13939
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13918
13940
  workspace_id: string;
13919
- /** Time at which the event was created. */
13941
+ /** Date and time at which the event was created. */
13920
13942
  created_at: string;
13921
- /** Time when the event occurred. */
13943
+ /** Date and time at which the event occurred. */
13922
13944
  occurred_at: string;
13923
13945
  /** ID of the device. */
13924
13946
  device_id: string;
@@ -13930,9 +13952,9 @@ export interface Routes {
13930
13952
  event_id: string;
13931
13953
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13932
13954
  workspace_id: string;
13933
- /** Time at which the event was created. */
13955
+ /** Date and time at which the event was created. */
13934
13956
  created_at: string;
13935
- /** Time when the event occurred. */
13957
+ /** Date and time at which the event occurred. */
13936
13958
  occurred_at: string;
13937
13959
  /** ID of the device. */
13938
13960
  device_id: string;
@@ -13944,9 +13966,9 @@ export interface Routes {
13944
13966
  event_id: string;
13945
13967
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13946
13968
  workspace_id: string;
13947
- /** Time at which the event was created. */
13969
+ /** Date and time at which the event was created. */
13948
13970
  created_at: string;
13949
- /** Time when the event occurred. */
13971
+ /** Date and time at which the event occurred. */
13950
13972
  occurred_at: string;
13951
13973
  /** ID of the device. */
13952
13974
  device_id: string;
@@ -13958,9 +13980,9 @@ export interface Routes {
13958
13980
  event_id: string;
13959
13981
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13960
13982
  workspace_id: string;
13961
- /** Time at which the event was created. */
13983
+ /** Date and time at which the event was created. */
13962
13984
  created_at: string;
13963
- /** Time when the event occurred. */
13985
+ /** Date and time at which the event occurred. */
13964
13986
  occurred_at: string;
13965
13987
  /** ID of the device. */
13966
13988
  device_id: string;
@@ -13972,9 +13994,9 @@ export interface Routes {
13972
13994
  event_id: string;
13973
13995
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13974
13996
  workspace_id: string;
13975
- /** Time at which the event was created. */
13997
+ /** Date and time at which the event was created. */
13976
13998
  created_at: string;
13977
- /** Time when the event occurred. */
13999
+ /** Date and time at which the event occurred. */
13978
14000
  occurred_at: string;
13979
14001
  /** ID of the device. */
13980
14002
  device_id: string;
@@ -13986,9 +14008,9 @@ export interface Routes {
13986
14008
  event_id: string;
13987
14009
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
13988
14010
  workspace_id: string;
13989
- /** Time at which the event was created. */
14011
+ /** Date and time at which the event was created. */
13990
14012
  created_at: string;
13991
- /** Time when the event occurred. */
14013
+ /** Date and time at which the event occurred. */
13992
14014
  occurred_at: string;
13993
14015
  /** ID of the device. */
13994
14016
  device_id: string;
@@ -14000,9 +14022,9 @@ export interface Routes {
14000
14022
  event_id: string;
14001
14023
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14002
14024
  workspace_id: string;
14003
- /** Time at which the event was created. */
14025
+ /** Date and time at which the event was created. */
14004
14026
  created_at: string;
14005
- /** Time when the event occurred. */
14027
+ /** Date and time at which the event occurred. */
14006
14028
  occurred_at: string;
14007
14029
  /** ID of the device. */
14008
14030
  device_id: string;
@@ -14014,9 +14036,9 @@ export interface Routes {
14014
14036
  event_id: string;
14015
14037
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14016
14038
  workspace_id: string;
14017
- /** Time at which the event was created. */
14039
+ /** Date and time at which the event was created. */
14018
14040
  created_at: string;
14019
- /** Time when the event occurred. */
14041
+ /** Date and time at which the event occurred. */
14020
14042
  occurred_at: string;
14021
14043
  /** ID of the device. */
14022
14044
  device_id: string;
@@ -14028,9 +14050,9 @@ export interface Routes {
14028
14050
  event_id: string;
14029
14051
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14030
14052
  workspace_id: string;
14031
- /** Time at which the event was created. */
14053
+ /** Date and time at which the event was created. */
14032
14054
  created_at: string;
14033
- /** Time when the event occurred. */
14055
+ /** Date and time at which the event occurred. */
14034
14056
  occurred_at: string;
14035
14057
  /** ID of the device. */
14036
14058
  device_id: string;
@@ -14042,9 +14064,9 @@ export interface Routes {
14042
14064
  event_id: string;
14043
14065
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14044
14066
  workspace_id: string;
14045
- /** Time at which the event was created. */
14067
+ /** Date and time at which the event was created. */
14046
14068
  created_at: string;
14047
- /** Time when the event occurred. */
14069
+ /** Date and time at which the event occurred. */
14048
14070
  occurred_at: string;
14049
14071
  /** ID of the device. */
14050
14072
  device_id: string;
@@ -14056,9 +14078,9 @@ export interface Routes {
14056
14078
  event_id: string;
14057
14079
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14058
14080
  workspace_id: string;
14059
- /** Time at which the event was created. */
14081
+ /** Date and time at which the event was created. */
14060
14082
  created_at: string;
14061
- /** Time when the event occurred. */
14083
+ /** Date and time at which the event occurred. */
14062
14084
  occurred_at: string;
14063
14085
  /** ID of the device. */
14064
14086
  device_id: string;
@@ -14070,9 +14092,9 @@ export interface Routes {
14070
14092
  event_id: string;
14071
14093
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14072
14094
  workspace_id: string;
14073
- /** Time at which the event was created. */
14095
+ /** Date and time at which the event was created. */
14074
14096
  created_at: string;
14075
- /** Time when the event occurred. */
14097
+ /** Date and time at which the event occurred. */
14076
14098
  occurred_at: string;
14077
14099
  /** ID of the device. */
14078
14100
  device_id: string;
@@ -14084,9 +14106,9 @@ export interface Routes {
14084
14106
  event_id: string;
14085
14107
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14086
14108
  workspace_id: string;
14087
- /** Time at which the event was created. */
14109
+ /** Date and time at which the event was created. */
14088
14110
  created_at: string;
14089
- /** Time when the event occurred. */
14111
+ /** Date and time at which the event occurred. */
14090
14112
  occurred_at: string;
14091
14113
  /** ID of the device. */
14092
14114
  device_id: string;
@@ -14110,9 +14132,9 @@ export interface Routes {
14110
14132
  event_id: string;
14111
14133
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14112
14134
  workspace_id: string;
14113
- /** Time at which the event was created. */
14135
+ /** Date and time at which the event was created. */
14114
14136
  created_at: string;
14115
- /** Time when the event occurred. */
14137
+ /** Date and time at which the event occurred. */
14116
14138
  occurred_at: string;
14117
14139
  /** ID of the device. */
14118
14140
  device_id: string;
@@ -14123,16 +14145,16 @@ export interface Routes {
14123
14145
  access_code_id?: string | undefined;
14124
14146
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
14125
14147
  action_attempt_id?: string | undefined;
14126
- /** 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. */
14148
+ /** 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. */
14127
14149
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
14128
14150
  } | {
14129
14151
  /** ID of the event. */
14130
14152
  event_id: string;
14131
14153
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14132
14154
  workspace_id: string;
14133
- /** Time at which the event was created. */
14155
+ /** Date and time at which the event was created. */
14134
14156
  created_at: string;
14135
- /** Time when the event occurred. */
14157
+ /** Date and time at which the event occurred. */
14136
14158
  occurred_at: string;
14137
14159
  /** ID of the device. */
14138
14160
  device_id: string;
@@ -14143,16 +14165,16 @@ export interface Routes {
14143
14165
  access_code_id?: string | undefined;
14144
14166
  /** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
14145
14167
  action_attempt_id?: string | undefined;
14146
- /** 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. */
14168
+ /** 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. */
14147
14169
  method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi';
14148
14170
  } | {
14149
14171
  /** ID of the event. */
14150
14172
  event_id: string;
14151
14173
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14152
14174
  workspace_id: string;
14153
- /** Time at which the event was created. */
14175
+ /** Date and time at which the event was created. */
14154
14176
  created_at: string;
14155
- /** Time when the event occurred. */
14177
+ /** Date and time at which the event occurred. */
14156
14178
  occurred_at: string;
14157
14179
  /** ID of the device. */
14158
14180
  device_id: string;
@@ -14166,9 +14188,9 @@ export interface Routes {
14166
14188
  event_id: string;
14167
14189
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14168
14190
  workspace_id: string;
14169
- /** Time at which the event was created. */
14191
+ /** Date and time at which the event was created. */
14170
14192
  created_at: string;
14171
- /** Time when the event occurred. */
14193
+ /** Date and time at which the event occurred. */
14172
14194
  occurred_at: string;
14173
14195
  /** ID of the device. */
14174
14196
  device_id: string;
@@ -14179,23 +14201,23 @@ export interface Routes {
14179
14201
  thermostat_schedule_id: string | null;
14180
14202
  /** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
14181
14203
  climate_preset_key: string;
14182
- /** 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. */
14204
+ /** 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). */
14183
14205
  is_fallback_climate_preset: boolean;
14184
14206
  } | {
14185
14207
  /** ID of the event. */
14186
14208
  event_id: string;
14187
14209
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14188
14210
  workspace_id: string;
14189
- /** Time at which the event was created. */
14211
+ /** Date and time at which the event was created. */
14190
14212
  created_at: string;
14191
- /** Time when the event occurred. */
14213
+ /** Date and time at which the event occurred. */
14192
14214
  occurred_at: string;
14193
14215
  /** ID of the device. */
14194
14216
  device_id: string;
14195
14217
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14196
14218
  connected_account_id: string;
14197
14219
  event_type: 'thermostat.manually_adjusted';
14198
- /** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
14220
+ /** 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). */
14199
14221
  method: 'seam' | 'external';
14200
14222
  /** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
14201
14223
  fan_mode_setting?: (('auto' | 'on' | 'circulate') | undefined) | undefined;
@@ -14214,18 +14236,18 @@ export interface Routes {
14214
14236
  event_id: string;
14215
14237
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14216
14238
  workspace_id: string;
14217
- /** Time at which the event was created. */
14239
+ /** Date and time at which the event was created. */
14218
14240
  created_at: string;
14219
- /** Time when the event occurred. */
14241
+ /** Date and time at which the event occurred. */
14220
14242
  occurred_at: string;
14221
14243
  /** ID of the device. */
14222
14244
  device_id: string;
14223
14245
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14224
14246
  connected_account_id: string;
14225
14247
  event_type: 'thermostat.temperature_threshold_exceeded';
14226
- /** Temperature, in °C, reported by the thermostat. */
14248
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
14227
14249
  temperature_celsius: number;
14228
- /** Temperature, in °F, reported by the thermostat. */
14250
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
14229
14251
  temperature_fahrenheit: number;
14230
14252
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
14231
14253
  upper_limit_celsius: number | null;
@@ -14240,18 +14262,18 @@ export interface Routes {
14240
14262
  event_id: string;
14241
14263
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14242
14264
  workspace_id: string;
14243
- /** Time at which the event was created. */
14265
+ /** Date and time at which the event was created. */
14244
14266
  created_at: string;
14245
- /** Time when the event occurred. */
14267
+ /** Date and time at which the event occurred. */
14246
14268
  occurred_at: string;
14247
14269
  /** ID of the device. */
14248
14270
  device_id: string;
14249
14271
  /** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
14250
14272
  connected_account_id: string;
14251
14273
  event_type: 'thermostat.temperature_threshold_no_longer_exceeded';
14252
- /** Temperature, in °C, reported by the thermostat. */
14274
+ /** Temperature, in °C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
14253
14275
  temperature_celsius: number;
14254
- /** Temperature, in °F, reported by the thermostat. */
14276
+ /** Temperature, in °F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats). */
14255
14277
  temperature_fahrenheit: number;
14256
14278
  /** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
14257
14279
  upper_limit_celsius: number | null;
@@ -14266,11 +14288,11 @@ export interface Routes {
14266
14288
  event_id: string;
14267
14289
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14268
14290
  workspace_id: string;
14269
- /** Time at which the event was created. */
14291
+ /** Date and time at which the event was created. */
14270
14292
  created_at: string;
14271
- /** Time when the event occurred. */
14293
+ /** Date and time at which the event occurred. */
14272
14294
  occurred_at: string;
14273
- /** ID of the enrollment automation. */
14295
+ /** 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). */
14274
14296
  enrollment_automation_id: string;
14275
14297
  event_type: 'enrollment_automation.deleted';
14276
14298
  } | {
@@ -14278,11 +14300,11 @@ export interface Routes {
14278
14300
  event_id: string;
14279
14301
  /** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
14280
14302
  workspace_id: string;
14281
- /** Time at which the event was created. */
14303
+ /** Date and time at which the event was created. */
14282
14304
  created_at: string;
14283
- /** Time when the event occurred. */
14305
+ /** Date and time at which the event occurred. */
14284
14306
  occurred_at: string;
14285
- /** ID of the device. */
14307
+ /** ID of the [device](https://docs.seam.co/latest/core-concepts/devices). */
14286
14308
  device_id: string;
14287
14309
  event_type: 'phone.deactivated';
14288
14310
  }>;