@seamapi/types 1.323.0 → 1.324.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (52) hide show
  1. package/dist/connect.cjs +631 -719
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +500 -643
  4. package/lib/seam/connect/models/events/access-codes.js +32 -41
  5. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  6. package/lib/seam/connect/models/events/acs/common.js +9 -12
  7. package/lib/seam/connect/models/events/acs/common.js.map +1 -1
  8. package/lib/seam/connect/models/events/acs/credentials.js +2 -2
  9. package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
  10. package/lib/seam/connect/models/events/acs/encoders.js +6 -3
  11. package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
  12. package/lib/seam/connect/models/events/acs/systems.js +3 -3
  13. package/lib/seam/connect/models/events/acs/systems.js.map +1 -1
  14. package/lib/seam/connect/models/events/acs/users.js +5 -3
  15. package/lib/seam/connect/models/events/acs/users.js.map +1 -1
  16. package/lib/seam/connect/models/events/action-attempts.js +10 -22
  17. package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
  18. package/lib/seam/connect/models/events/client-sessions.js +5 -7
  19. package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
  20. package/lib/seam/connect/models/events/common.js +5 -2
  21. package/lib/seam/connect/models/events/common.js.map +1 -1
  22. package/lib/seam/connect/models/events/connect-webviews.js +10 -14
  23. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  24. package/lib/seam/connect/models/events/connected-accounts.js +15 -19
  25. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  26. package/lib/seam/connect/models/events/devices.js +43 -47
  27. package/lib/seam/connect/models/events/devices.js.map +1 -1
  28. package/lib/seam/connect/models/events/enrollment-automations.js +5 -7
  29. package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
  30. package/lib/seam/connect/models/events/phones.js +4 -6
  31. package/lib/seam/connect/models/events/phones.js.map +1 -1
  32. package/lib/seam/connect/openapi.d.ts +0 -143
  33. package/lib/seam/connect/openapi.js +316 -440
  34. package/lib/seam/connect/openapi.js.map +1 -1
  35. package/lib/seam/connect/route-types.d.ts +500 -500
  36. package/package.json +1 -1
  37. package/src/lib/seam/connect/models/events/access-codes.ts +64 -41
  38. package/src/lib/seam/connect/models/events/acs/common.ts +13 -12
  39. package/src/lib/seam/connect/models/events/acs/credentials.ts +6 -2
  40. package/src/lib/seam/connect/models/events/acs/encoders.ts +12 -3
  41. package/src/lib/seam/connect/models/events/acs/systems.ts +9 -3
  42. package/src/lib/seam/connect/models/events/acs/users.ts +10 -4
  43. package/src/lib/seam/connect/models/events/action-attempts.ts +20 -22
  44. package/src/lib/seam/connect/models/events/client-sessions.ts +9 -7
  45. package/src/lib/seam/connect/models/events/common.ts +5 -2
  46. package/src/lib/seam/connect/models/events/connect-webviews.ts +18 -14
  47. package/src/lib/seam/connect/models/events/connected-accounts.ts +25 -19
  48. package/src/lib/seam/connect/models/events/devices.ts +75 -47
  49. package/src/lib/seam/connect/models/events/enrollment-automations.ts +9 -7
  50. package/src/lib/seam/connect/models/events/phones.ts +6 -6
  51. package/src/lib/seam/connect/openapi.ts +454 -440
  52. package/src/lib/seam/connect/route-types.ts +500 -500
package/dist/connect.cjs CHANGED
@@ -2204,104 +2204,116 @@ var common_event = zod.z.object({
2204
2204
  workspace_id: zod.z.string().uuid().describe(
2205
2205
  "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces)."
2206
2206
  ),
2207
- created_at: zod.z.string().datetime().describe("Time at which the event was created."),
2208
- occurred_at: zod.z.string().datetime().describe("Time when the event occurred.")
2207
+ created_at: zod.z.string().datetime().describe("Date and time at which the event was created."),
2208
+ occurred_at: zod.z.string().datetime().describe("Date and time at which the event occurred.")
2209
2209
  });
2210
2210
 
2211
2211
  // src/lib/seam/connect/models/events/access-codes.ts
2212
2212
  var access_code_event = common_event.extend({
2213
- access_code_id: zod.z.string().uuid().describe(`
2214
- ---
2215
- title: Access Code ID
2216
- ---
2217
- The ID of the access code.
2218
- `),
2219
- device_id: zod.z.string().uuid().describe(`
2220
- ---
2221
- title: Device ID
2222
- ---
2223
- The ID of the device.
2224
- `),
2225
- connected_account_id: zod.z.string().uuid().describe(`
2226
- ---
2227
- title: Connected Account ID
2228
- ---
2229
- The ID of the connected account.
2230
- `)
2213
+ access_code_id: zod.z.string().uuid().describe(
2214
+ "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes)."
2215
+ ),
2216
+ device_id: zod.z.string().uuid().describe(
2217
+ "ID of the [device](https://docs.seam.co/latest/core-concepts/devices)."
2218
+ ),
2219
+ connected_account_id: zod.z.string().uuid().describe(
2220
+ "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2221
+ )
2231
2222
  });
2232
- var code = zod.z.string().describe(`
2233
- ---
2234
- title: Access Code
2235
- ---
2236
- The code of the access code.
2237
- `);
2223
+ var code = zod.z.string().describe(
2224
+ "Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes)."
2225
+ );
2238
2226
  var access_code_created_event = access_code_event.extend({
2239
2227
  event_type: zod.z.literal("access_code.created")
2240
- }).describe("An access code was created.");
2228
+ }).describe(
2229
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was created."
2230
+ );
2241
2231
  var access_code_changed_event = access_code_event.extend({
2242
2232
  event_type: zod.z.literal("access_code.changed")
2243
- }).describe("An access code was changed.");
2233
+ }).describe(
2234
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was changed."
2235
+ );
2244
2236
  var access_code_scheduled_on_device_event = access_code_event.extend({
2245
2237
  event_type: zod.z.literal("access_code.scheduled_on_device"),
2246
2238
  code
2247
- }).describe("An access code was natively scheduled on a device.");
2239
+ }).describe(
2240
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) on a device."
2241
+ );
2248
2242
  var access_code_set_on_device_event = access_code_event.extend({
2249
2243
  event_type: zod.z.literal("access_code.set_on_device"),
2250
2244
  code
2251
- }).describe("An access code was set on a device.");
2245
+ }).describe(
2246
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was set on a device."
2247
+ );
2252
2248
  var access_code_removed_from_device_event = access_code_event.extend({
2253
2249
  event_type: zod.z.literal("access_code.removed_from_device")
2254
- }).describe("An access code was removed from a device.");
2250
+ }).describe(
2251
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was removed from a device."
2252
+ );
2255
2253
  var access_code_delay_in_setting_on_device_event = access_code_event.extend({
2256
2254
  event_type: zod.z.literal("access_code.delay_in_setting_on_device")
2257
2255
  }).describe(
2258
- "There was an unusually long delay in setting an access code on a device."
2256
+ "There was an unusually long delay in setting an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) on a device."
2259
2257
  );
2260
2258
  var access_code_failed_to_set_on_device_event = access_code_event.extend({
2261
2259
  event_type: zod.z.literal("access_code.failed_to_set_on_device")
2262
- }).describe("An access code failed to be set on a device.");
2260
+ }).describe(
2261
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be set on a device."
2262
+ );
2263
2263
  var access_code_deleted_event = access_code_event.extend({
2264
2264
  event_type: zod.z.literal("access_code.deleted"),
2265
2265
  code: code.nullable()
2266
- }).describe("An access code was deleted.");
2266
+ }).describe(
2267
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted."
2268
+ );
2267
2269
  var access_code_delay_in_removing_from_device_event = access_code_event.extend({
2268
2270
  event_type: zod.z.literal("access_code.delay_in_removing_from_device")
2269
2271
  }).describe(
2270
- "There was an unusually long delay in removing an access code from a device."
2272
+ "There was an unusually long delay in removing an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) from a device."
2271
2273
  );
2272
2274
  var access_code_failed_to_remove_from_device_event = access_code_event.extend({
2273
2275
  event_type: zod.z.literal("access_code.failed_to_remove_from_device")
2274
- }).describe("An access code failed to be removed from a device.");
2276
+ }).describe(
2277
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be removed from a device."
2278
+ );
2275
2279
  var access_code_modified_external_to_seam_event = access_code_event.extend({
2276
2280
  event_type: zod.z.literal("access_code.modified_external_to_seam")
2277
- }).describe("An access code was modified external to Seam.");
2281
+ }).describe(
2282
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was modified outside of Seam."
2283
+ );
2278
2284
  var access_code_deleted_external_to_seam_event = access_code_event.extend({
2279
2285
  event_type: zod.z.literal("access_code.deleted_external_to_seam")
2280
- }).describe("An access code was deleted external to Seam.");
2286
+ }).describe(
2287
+ "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted outside of Seam."
2288
+ );
2281
2289
  var access_code_backup_access_code_pulled_event = access_code_event.extend({
2282
2290
  event_type: zod.z.literal("access_code.backup_access_code_pulled"),
2283
2291
  backup_access_code_id: zod.z.string()
2284
2292
  }).describe(
2285
- "A backup access code was pulled from the backup access code pool and set on a device."
2293
+ "A [backup access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device."
2286
2294
  );
2287
2295
  var unmanaged_access_code_converted_to_managed_event = access_code_event.extend({
2288
2296
  event_type: zod.z.literal("access_code.unmanaged.converted_to_managed")
2289
2297
  }).describe(
2290
- "An unmanaged access code was successfully converted to a managed access code."
2298
+ "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code."
2291
2299
  );
2292
2300
  var unmanaged_access_code_failed_to_convert_to_managed_event = access_code_event.extend({
2293
2301
  event_type: zod.z.literal(
2294
2302
  "access_code.unmanaged.failed_to_convert_to_managed"
2295
2303
  )
2296
2304
  }).describe(
2297
- "An unmanaged access code failed to be converted to a managed access code."
2305
+ "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code."
2298
2306
  );
2299
2307
  var unmanaged_access_code_created_event = access_code_event.extend({
2300
2308
  event_type: zod.z.literal("access_code.unmanaged.created")
2301
- }).describe("An unmanaged access code was created on a device.");
2309
+ }).describe(
2310
+ "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was created on a device."
2311
+ );
2302
2312
  var unmanaged_access_code_removed_event = access_code_event.extend({
2303
2313
  event_type: zod.z.literal("access_code.unmanaged.removed")
2304
- }).describe("An unmanaged access code was removed from a device.");
2314
+ }).describe(
2315
+ "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device."
2316
+ );
2305
2317
  var access_code_events = [
2306
2318
  access_code_created_event,
2307
2319
  access_code_changed_event,
@@ -2322,18 +2334,12 @@ var access_code_events = [
2322
2334
  unmanaged_access_code_removed_event
2323
2335
  ];
2324
2336
  var common_acs_event = common_event.extend({
2325
- connected_account_id: zod.z.string().uuid().optional().describe(`
2326
- ---
2327
- title: Connected Account ID
2328
- ---
2329
- ID of the connected account.
2330
- `),
2331
- acs_system_id: zod.z.string().uuid().describe(`
2332
- ---
2333
- title: ACS System ID
2334
- ---
2335
- ID of the ACS system.
2336
- `)
2337
+ connected_account_id: zod.z.string().uuid().optional().describe(
2338
+ "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2339
+ ),
2340
+ acs_system_id: zod.z.string().uuid().describe(
2341
+ "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems)."
2342
+ )
2337
2343
  });
2338
2344
 
2339
2345
  // src/lib/seam/connect/models/events/acs/credentials.ts
@@ -2342,23 +2348,33 @@ var acs_credential_event = common_acs_event.extend({
2342
2348
  });
2343
2349
  var acs_credential_deleted_event = acs_credential_event.extend({
2344
2350
  event_type: zod.z.literal("acs_credential.deleted")
2345
- }).describe("An ACS credential was deleted.");
2351
+ }).describe(
2352
+ "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was deleted."
2353
+ );
2346
2354
  var acs_credential_issued = acs_credential_event.extend({
2347
2355
  event_type: zod.z.literal("acs_credential.issued")
2348
- }).describe("An ACS credential was issued.");
2356
+ }).describe(
2357
+ "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued."
2358
+ );
2349
2359
  var acs_credential_events = [
2350
2360
  acs_credential_deleted_event,
2351
2361
  acs_credential_issued
2352
2362
  ];
2353
2363
  var acs_encoder_event = common_acs_event.extend({
2354
- acs_encoder_id: zod.z.string().uuid().describe("ID of the ACS encoder.")
2364
+ acs_encoder_id: zod.z.string().uuid().describe(
2365
+ "ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners)."
2366
+ )
2355
2367
  });
2356
2368
  var acs_encoder_added_event = acs_encoder_event.extend({
2357
2369
  event_type: zod.z.literal("acs_encoder.added")
2358
- }).describe("An ACS encoder was added.");
2370
+ }).describe(
2371
+ "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was added."
2372
+ );
2359
2373
  var acs_encoder_removed_event = acs_encoder_event.extend({
2360
2374
  event_type: zod.z.literal("acs_encoder.removed")
2361
- }).describe("An ACS encoder was removed.");
2375
+ }).describe(
2376
+ "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was removed."
2377
+ );
2362
2378
  var acs_encoder_events = [
2363
2379
  acs_encoder_added_event,
2364
2380
  acs_encoder_removed_event
@@ -2366,13 +2382,19 @@ var acs_encoder_events = [
2366
2382
  var acs_system_event = common_acs_event.extend({});
2367
2383
  var acs_system_connected_event = acs_system_event.extend({
2368
2384
  event_type: zod.z.literal("acs_system.connected")
2369
- }).describe("An ACS system was connected.");
2385
+ }).describe(
2386
+ "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was connected."
2387
+ );
2370
2388
  var acs_system_disconnected_event = acs_system_event.extend({
2371
2389
  event_type: zod.z.literal("acs_system.disconnected")
2372
- }).describe("An ACS system was disconnected.");
2390
+ }).describe(
2391
+ "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected."
2392
+ );
2373
2393
  var acs_system_added_event = acs_system_event.extend({
2374
2394
  event_type: zod.z.literal("acs_system.added")
2375
- }).describe("An ACS system was added.");
2395
+ }).describe(
2396
+ "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was added."
2397
+ );
2376
2398
  var acs_system_events = [
2377
2399
  acs_system_connected_event,
2378
2400
  acs_system_added_event,
@@ -2380,10 +2402,14 @@ var acs_system_events = [
2380
2402
  ];
2381
2403
  var acs_user_event = common_acs_event.extend({
2382
2404
  acs_user_id: zod.z.string().uuid()
2383
- });
2405
+ }).describe(
2406
+ "ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management)."
2407
+ );
2384
2408
  var acs_user_deleted_event = acs_user_event.extend({
2385
2409
  event_type: zod.z.literal("acs_user.deleted")
2386
- }).describe("An ACS user was deleted.");
2410
+ }).describe(
2411
+ "An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted."
2412
+ );
2387
2413
  var acs_user_events = [acs_user_deleted_event];
2388
2414
 
2389
2415
  // src/lib/seam/connect/models/events/acs/index.ts
@@ -2394,37 +2420,32 @@ var acs_events = [
2394
2420
  ...acs_encoder_events
2395
2421
  ];
2396
2422
  var action_attempt_event = common_event.extend({
2397
- action_attempt_id: zod.z.string().uuid().describe(`
2398
- ---
2399
- title: Action Attempt ID
2400
- ---
2401
- The ID of the action attempt.
2402
- `),
2403
- action_type: zod.z.string().describe(`
2404
- ---
2405
- title: Action Type
2406
- ---
2407
- The type of action.
2408
- `),
2409
- status: zod.z.string().describe(`
2410
- ---
2411
- title: Status
2412
- ---
2413
- The status of the action.
2414
- `)
2423
+ action_attempt_id: zod.z.string().uuid().describe(
2424
+ "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts)."
2425
+ ),
2426
+ action_type: zod.z.string().describe("Type of action."),
2427
+ status: zod.z.string().describe("Status of the action.")
2415
2428
  });
2416
2429
  var action_attempt_lock_door_succeeded_event = action_attempt_event.extend({
2417
2430
  event_type: zod.z.literal("action_attempt.lock_door.succeeded")
2418
- }).describe("A lock door action attempt succeeded.");
2431
+ }).describe(
2432
+ "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded."
2433
+ );
2419
2434
  var action_attempt_lock_door_failed_event = action_attempt_event.extend({
2420
2435
  event_type: zod.z.literal("action_attempt.lock_door.failed")
2421
- }).describe("A lock door action attempt failed.");
2436
+ }).describe(
2437
+ "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed."
2438
+ );
2422
2439
  var action_attempt_unlock_door_succeeded_event = action_attempt_event.extend({
2423
2440
  event_type: zod.z.literal("action_attempt.unlock_door.succeeded")
2424
- }).describe("An unlock door action attempt succeeded.");
2441
+ }).describe(
2442
+ "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded."
2443
+ );
2425
2444
  var action_attempt_unlock_door_failed_event = action_attempt_event.extend({
2426
2445
  event_type: zod.z.literal("action_attempt.unlock_door.failed")
2427
- }).describe("An unlock door action attempt failed.");
2446
+ }).describe(
2447
+ "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed."
2448
+ );
2428
2449
  var action_attempt_events = [
2429
2450
  action_attempt_lock_door_succeeded_event,
2430
2451
  action_attempt_lock_door_failed_event,
@@ -2432,66 +2453,59 @@ var action_attempt_events = [
2432
2453
  action_attempt_unlock_door_failed_event
2433
2454
  ];
2434
2455
  var client_session_event = common_event.extend({
2435
- client_session_id: zod.z.string().uuid().describe(`
2436
- ---
2437
- title: Client Session ID
2438
- ---
2439
- ID of the client session.
2440
- `)
2456
+ client_session_id: zod.z.string().uuid().describe(
2457
+ "ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens)."
2458
+ )
2441
2459
  });
2442
2460
  var client_session_deleted_event = client_session_event.extend({
2443
2461
  event_type: zod.z.literal("client_session.deleted")
2444
- }).describe("A client session was deleted.");
2462
+ }).describe(
2463
+ "A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted."
2464
+ );
2445
2465
  var client_session_events = [client_session_deleted_event];
2446
2466
  var connect_webview_event = common_event.extend({
2447
- connect_webview_id: zod.z.string().uuid().describe(`
2448
- ---
2449
- title: Connect Webview ID
2450
- ---
2451
- ID of the connect webview.
2452
- `)
2467
+ connect_webview_id: zod.z.string().uuid().describe(
2468
+ "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews)."
2469
+ )
2453
2470
  });
2454
- var connected_account_id = zod.z.string().uuid().describe(`
2455
- ---
2456
- title: Connected Account ID
2457
- ---
2458
- ID of the connected account.
2459
- `);
2471
+ var connected_account_id = zod.z.string().uuid().describe(
2472
+ "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2473
+ );
2460
2474
  var connect_webview_login_succeeded_event = connect_webview_event.extend({
2461
2475
  event_type: zod.z.literal("connect_webview.login_succeeded"),
2462
2476
  connected_account_id
2463
- }).describe("A connect webview had a successful login.");
2477
+ }).describe(
2478
+ "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login succeeded."
2479
+ );
2464
2480
  var connect_webview_login_failed_event = connect_webview_event.extend({
2465
2481
  event_type: zod.z.literal("connect_webview.login_failed")
2466
- }).describe("A connect webview had a failed login.");
2482
+ }).describe(
2483
+ "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login failed."
2484
+ );
2467
2485
  var connect_webview_events = [
2468
2486
  connect_webview_login_succeeded_event,
2469
2487
  connect_webview_login_failed_event
2470
2488
  ];
2471
2489
  var connected_account_event = common_event.extend({
2472
- connected_account_id: zod.z.string().uuid().describe(`
2473
- ---
2474
- title: Connected Account ID
2475
- ---
2476
- ID of the connected account.
2477
- `)
2490
+ connected_account_id: zod.z.string().uuid().describe(
2491
+ "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2492
+ )
2478
2493
  });
2479
- var connect_webview_id = zod.z.string().uuid().describe(`
2480
- ---
2481
- title: Connect Webview ID
2482
- ---
2483
- ID of the connect webview.
2484
- `);
2494
+ var connect_webview_id = zod.z.string().uuid().describe(
2495
+ "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews)."
2496
+ );
2485
2497
  var connected_account_connected_event = connected_account_event.extend({
2486
2498
  event_type: zod.z.literal("connected_account.connected"),
2487
2499
  connect_webview_id
2488
2500
  }).describe(
2489
- "A connected account was connected for the first time, was reconnected after being disconnected."
2501
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was connected for the first time or was reconnected after being disconnected."
2490
2502
  );
2491
2503
  var connected_account_created_event = connected_account_event.extend({
2492
2504
  event_type: zod.z.literal("connected_account.created"),
2493
2505
  connect_webview_id
2494
- }).describe("A connected account was created.");
2506
+ }).describe(
2507
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was created."
2508
+ );
2495
2509
  var connected_account_successful_login_event = connected_account_event.extend({
2496
2510
  event_type: zod.z.literal("connected_account.successful_login"),
2497
2511
  connect_webview_id
@@ -2499,24 +2513,28 @@ var connected_account_successful_login_event = connected_account_event.extend({
2499
2513
  ---
2500
2514
  deprecated: Use \`connect_webview.login_succeeded\`.
2501
2515
  ---
2502
- A connected account had a successful connect webview login.`);
2516
+ A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) had a successful login using a [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).`);
2503
2517
  var connected_account_disconnected_event = connected_account_event.extend({
2504
2518
  event_type: zod.z.literal("connected_account.disconnected")
2505
- }).describe("A connected account was disconnected.");
2519
+ }).describe(
2520
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected."
2521
+ );
2506
2522
  var connected_account_completed_first_sync_event = connected_account_event.extend({
2507
2523
  event_type: zod.z.literal("connected_account.completed_first_sync")
2508
2524
  }).describe(
2509
- "A connected account completed the first sync with Seam and devices are now available."
2525
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available."
2510
2526
  );
2511
2527
  var connected_account_deleted_event = connected_account_event.extend({
2512
2528
  event_type: zod.z.literal("connected_account.deleted")
2513
- }).describe("A connected account was deleted.");
2529
+ }).describe(
2530
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted."
2531
+ );
2514
2532
  var connected_account_completed_first_sync_after_reconnection_event = connected_account_event.extend({
2515
2533
  event_type: zod.z.literal(
2516
2534
  "connected_account.completed_first_sync_after_reconnection"
2517
2535
  )
2518
2536
  }).describe(
2519
- "A connected account completed the first sync after reconnection with Seam and devices are now available."
2537
+ "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available."
2520
2538
  );
2521
2539
  var connected_account_events = [
2522
2540
  connected_account_connected_event,
@@ -2541,14 +2559,18 @@ var device_battery_status = zod.z.enum(["critical", "low", "good", "full"]).desc
2541
2559
  );
2542
2560
  var disconnection_error_code = zod.z.enum(["account_disconnected", "hub_disconnected", "device_disconnected"]).describe("Error code associated with the disconnection event, if any.");
2543
2561
  var lock_method = zod.z.enum(["keycode", "manual", "automatic", "unknown", "seamapi"]).describe(
2544
- "Method by which a lock device was locked or 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."
2562
+ "Method by which a [lock device](https://docs.seam.co/latest/capability-guides/smart-locks) was locked or 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."
2545
2563
  );
2546
2564
  var device_connected_event = device_event.extend({
2547
2565
  event_type: zod.z.literal("device.connected")
2548
- }).describe("A new device was connected to Seam.");
2566
+ }).describe(
2567
+ "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices."
2568
+ );
2549
2569
  var device_added_event = device_event.extend({
2550
2570
  event_type: zod.z.literal("device.added")
2551
- }).describe("A device was added or reconnected to Seam.");
2571
+ }).describe(
2572
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed."
2573
+ );
2552
2574
  var device_converted_to_unmanaged_event = device_event.extend({
2553
2575
  event_type: zod.z.literal("device.converted_to_unmanaged")
2554
2576
  }).describe(
@@ -2562,86 +2584,100 @@ var unmanaged_device_converted_to_managed_event = device_event.extend({
2562
2584
  var unmanaged_device_connected_event = device_event.extend({
2563
2585
  event_type: zod.z.literal("device.unmanaged.connected")
2564
2586
  }).describe(
2565
- "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam."
2587
+ "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`."
2566
2588
  );
2567
2589
  var device_disconnected_event = device_event.extend({
2568
2590
  event_type: zod.z.literal("device.disconnected"),
2569
2591
  error_code: disconnection_error_code
2570
- }).describe("A device was disconnected from Seam.");
2592
+ }).describe(
2593
+ "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`."
2594
+ );
2571
2595
  var unmanaged_device_disconnected_event = device_event.extend({
2572
2596
  event_type: zod.z.literal("device.unmanaged.disconnected"),
2573
2597
  error_code: disconnection_error_code
2574
2598
  }).describe(
2575
- "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam."
2599
+ "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`."
2576
2600
  );
2577
2601
  var device_tampered_event = device_event.extend({
2578
2602
  event_type: zod.z.literal("device.tampered")
2579
2603
  }).describe(
2580
- "A device detected that it was tampered with, for example, opened or moved."
2604
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved."
2581
2605
  );
2582
2606
  var device_low_battery_event = device_event.extend({
2583
2607
  event_type: zod.z.literal("device.low_battery"),
2584
2608
  battery_level
2585
- }).describe("A device battery level dropped below the low threshold.");
2609
+ }).describe(
2610
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) battery level dropped below the low threshold."
2611
+ );
2586
2612
  var device_battery_status_changed_event = device_event.extend({
2587
2613
  event_type: zod.z.literal("device.battery_status_changed"),
2588
2614
  battery_status: device_battery_status,
2589
2615
  battery_level
2590
2616
  }).describe(
2591
- "A device battery status changed since the last `battery_status_changed` event."
2617
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) battery status changed since the last `battery_status_changed` event."
2592
2618
  );
2593
2619
  var device_removed_event = device_event.extend({
2594
2620
  event_type: zod.z.literal("device.removed")
2595
2621
  }).describe(
2596
- "A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2622
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
2597
2623
  );
2598
2624
  var device_deleted_event = device_event.extend({
2599
2625
  event_type: zod.z.literal("device.deleted")
2600
2626
  }).describe(
2601
- "A device was [deleted](https://docs.seam.co/latest/api/devices/delete)."
2627
+ "A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted."
2602
2628
  );
2603
2629
  var device_third_party_integration_detected_event = device_event.extend({
2604
2630
  event_type: zod.z.literal("device.third_party_integration_detected")
2605
2631
  }).describe(
2606
- "Seam detected that a device is using a third-party integration that will interfere with Seam device management."
2632
+ "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management."
2607
2633
  );
2608
2634
  var device_third_party_integration_no_longer_detected_event = device_event.extend({
2609
2635
  event_type: zod.z.literal(
2610
2636
  "device.third_party_integration_no_longer_detected"
2611
2637
  )
2612
2638
  }).describe(
2613
- "Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management."
2639
+ "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management."
2614
2640
  );
2615
2641
  var device_salto_privacy_mode_activated_event = device_event.extend({
2616
2642
  event_type: zod.z.literal("device.salto.privacy_mode_activated")
2617
- }).describe("A Salto device activated privacy mode.");
2643
+ }).describe(
2644
+ "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode."
2645
+ );
2618
2646
  var device_salto_privacy_mode_deactivated_event = device_event.extend({
2619
2647
  event_type: zod.z.literal("device.salto.privacy_mode_deactivated")
2620
- }).describe("A Salto device deactivated privacy mode.");
2648
+ }).describe(
2649
+ "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode."
2650
+ );
2621
2651
  var device_connection_became_flaky_event = device_event.extend({
2622
2652
  event_type: zod.z.literal("device.connection_became_flaky")
2623
- }).describe("Seam detected a flaky device connection.");
2653
+ }).describe(
2654
+ "Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection."
2655
+ );
2624
2656
  var device_connection_stabilized_event = device_event.extend({
2625
2657
  event_type: zod.z.literal("device.connection_stabilized")
2626
2658
  }).describe(
2627
- "Seam detected that a previously-flaky device connection stabilized."
2659
+ "Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized."
2628
2660
  );
2629
2661
  var device_error_subscription_required_event = device_event.extend({
2630
2662
  event_type: zod.z.literal("device.error.subscription_required")
2631
2663
  }).describe(
2632
- "A third-party subscription is required to use all device features."
2664
+ "A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features."
2633
2665
  );
2634
2666
  var device_error_subscription_required_resolved_event = device_event.extend({
2635
2667
  event_type: zod.z.literal("device.error.subscription_required.resolved")
2636
2668
  }).describe(
2637
- "A third-party subscription is active or no longer required to use all device features."
2669
+ "A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features."
2638
2670
  );
2639
2671
  var device_accessory_keypad_connected_event = device_event.extend({
2640
2672
  event_type: zod.z.literal("device.accessory_keypad_connected")
2641
- }).describe("An accessory keypad was connected to a device.");
2673
+ }).describe(
2674
+ "An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices)."
2675
+ );
2642
2676
  var device_accessory_keypad_disconnected_event = device_event.extend({
2643
2677
  event_type: zod.z.literal("device.accessory_keypad_disconnected")
2644
- }).describe("An accessory keypad was disconnected from a device.");
2678
+ }).describe(
2679
+ "An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices)."
2680
+ );
2645
2681
  var noise_sensor_noise_threshold_triggered_event = device_event.extend({
2646
2682
  event_type: zod.z.literal("noise_sensor.noise_threshold_triggered"),
2647
2683
  noise_level_decibels: zod.z.number().optional().describe("Detected noise level in decibels."),
@@ -2653,18 +2689,8 @@ var noise_sensor_noise_threshold_triggered_event = device_event.extend({
2653
2689
  "Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered."
2654
2690
  ),
2655
2691
  // TODO: remove metadata from this event
2656
- noiseaware_metadata: zod.z.record(zod.z.unknown()).optional().describe(`
2657
- ---
2658
- title: Noiseaware Metadata
2659
- ---
2660
- Metadata from Noiseaware.
2661
- `),
2662
- minut_metadata: zod.z.record(zod.z.unknown()).optional().describe(`
2663
- ---
2664
- title: Minut Metadata
2665
- ---
2666
- Metadata from Minut.
2667
- `)
2692
+ noiseaware_metadata: zod.z.record(zod.z.unknown()).optional().describe("Metadata from Noiseaware."),
2693
+ minut_metadata: zod.z.record(zod.z.unknown()).optional().describe("Metadata from Minut.")
2668
2694
  }).describe(
2669
2695
  "Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected."
2670
2696
  );
@@ -2677,9 +2703,11 @@ var lock_locked_event = device_event.extend({
2677
2703
  "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action."
2678
2704
  ),
2679
2705
  method: lock_method.describe(
2680
- "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."
2706
+ "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."
2681
2707
  )
2682
- }).describe("A lock was locked.");
2708
+ }).describe(
2709
+ "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was locked."
2710
+ );
2683
2711
  var lock_unlocked_event = device_event.extend({
2684
2712
  event_type: zod.z.literal("lock.unlocked"),
2685
2713
  access_code_id: zod.z.string().uuid().optional().describe(
@@ -2689,16 +2717,18 @@ var lock_unlocked_event = device_event.extend({
2689
2717
  "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action."
2690
2718
  ),
2691
2719
  method: lock_method.describe(
2692
- "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."
2720
+ "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."
2693
2721
  )
2694
- }).describe("A lock was unlocked.");
2722
+ }).describe(
2723
+ "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked."
2724
+ );
2695
2725
  var lock_access_denied_event = device_event.extend({
2696
2726
  event_type: zod.z.literal("lock.access_denied"),
2697
2727
  access_code_id: zod.z.string().uuid().optional().describe(
2698
2728
  "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts."
2699
2729
  )
2700
2730
  }).describe(
2701
- "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device."
2731
+ "The [lock](https://docs.seam.co/latest/capability-guides/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device."
2702
2732
  );
2703
2733
  var thermostat_climate_preset_activated_event = device_event.extend({
2704
2734
  event_type: zod.z.literal("thermostat.climate_preset_activated"),
@@ -2709,13 +2739,13 @@ var thermostat_climate_preset_activated_event = device_event.extend({
2709
2739
  "Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated."
2710
2740
  ),
2711
2741
  is_fallback_climate_preset: zod.z.boolean().describe(
2712
- "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."
2742
+ "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)."
2713
2743
  )
2714
2744
  }).describe(
2715
2745
  "A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated."
2716
2746
  );
2717
2747
  var thermostat_manually_adjusted_method = zod.z.enum(["seam", "external"]).describe(
2718
- "Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat."
2748
+ "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)."
2719
2749
  );
2720
2750
  var thermostat_manually_adjusted_event = device_event.extend({
2721
2751
  event_type: zod.z.literal("thermostat.manually_adjusted"),
@@ -2729,11 +2759,17 @@ var thermostat_manually_adjusted_event = device_event.extend({
2729
2759
  cooling_set_point_fahrenheit: true,
2730
2760
  heating_set_point_fahrenheit: true
2731
2761
  })
2732
- ).describe("A thermostat was adjusted manually.");
2762
+ ).describe(
2763
+ "A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually."
2764
+ );
2733
2765
  var temperature_threshold_exceeded_event = device_event.extend({
2734
2766
  event_type: zod.z.literal("thermostat.temperature_threshold_exceeded"),
2735
- temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the thermostat."),
2736
- temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the thermostat."),
2767
+ temperature_celsius: zod.z.number().describe(
2768
+ "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
2769
+ ),
2770
+ temperature_fahrenheit: zod.z.number().describe(
2771
+ "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
2772
+ ),
2737
2773
  upper_limit_celsius: zod.z.number().nullable().describe(
2738
2774
  "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2739
2775
  ),
@@ -2747,14 +2783,18 @@ var temperature_threshold_exceeded_event = device_event.extend({
2747
2783
  "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2748
2784
  )
2749
2785
  }).describe(
2750
- "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2786
+ "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2751
2787
  );
2752
2788
  var temperature_threshold_no_longer_exceeded_event = device_event.extend({
2753
2789
  event_type: zod.z.literal(
2754
2790
  "thermostat.temperature_threshold_no_longer_exceeded"
2755
2791
  ),
2756
- temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the thermostat."),
2757
- temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the thermostat."),
2792
+ temperature_celsius: zod.z.number().describe(
2793
+ "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
2794
+ ),
2795
+ temperature_fahrenheit: zod.z.number().describe(
2796
+ "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
2797
+ ),
2758
2798
  upper_limit_celsius: zod.z.number().nullable().describe(
2759
2799
  "Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2760
2800
  ),
@@ -2768,7 +2808,7 @@ var temperature_threshold_no_longer_exceeded_event = device_event.extend({
2768
2808
  "Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2769
2809
  )
2770
2810
  }).describe(
2771
- "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2811
+ "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
2772
2812
  );
2773
2813
  var device_events = [
2774
2814
  device_connected_event,
@@ -2803,26 +2843,22 @@ var device_events = [
2803
2843
  temperature_threshold_no_longer_exceeded_event
2804
2844
  ];
2805
2845
  var enrollment_automation_event = common_event.extend({
2806
- enrollment_automation_id: zod.z.string().uuid().describe(`
2807
- ---
2808
- title: Enrollment Automation ID
2809
- ---
2810
- ID of the enrollment automation.
2811
- `)
2846
+ enrollment_automation_id: zod.z.string().uuid().describe(
2847
+ "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)."
2848
+ )
2812
2849
  });
2813
2850
  var enrollment_automation_deleted_event = enrollment_automation_event.extend({
2814
2851
  event_type: zod.z.literal("enrollment_automation.deleted")
2815
- }).describe("An enrollment automation was deleted.");
2852
+ }).describe(
2853
+ "An [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) was deleted."
2854
+ );
2816
2855
  var enrollment_automation_events = [
2817
2856
  enrollment_automation_deleted_event
2818
2857
  ];
2819
2858
  var phone_event = common_event.extend({
2820
- device_id: zod.z.string().uuid().describe(`
2821
- ---
2822
- title: Device ID
2823
- ---
2824
- ID of the device.
2825
- `)
2859
+ device_id: zod.z.string().uuid().describe(
2860
+ "ID of the [device](https://docs.seam.co/latest/core-concepts/devices)."
2861
+ )
2826
2862
  });
2827
2863
  var phone_deactivated_event = phone_event.extend({
2828
2864
  event_type: zod.z.literal("phone.deactivated")
@@ -8404,30 +8440,27 @@ var openapi_default = {
8404
8440
  discriminator: { propertyName: "event_type" },
8405
8441
  oneOf: [
8406
8442
  {
8407
- description: "An access code was created.",
8443
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was created.",
8408
8444
  properties: {
8409
8445
  access_code_id: {
8410
- description: "The ID of the access code.",
8446
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8411
8447
  format: "uuid",
8412
- type: "string",
8413
- "x-title": "Access Code ID"
8448
+ type: "string"
8414
8449
  },
8415
8450
  connected_account_id: {
8416
- description: "The ID of the connected account.",
8451
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8417
8452
  format: "uuid",
8418
- type: "string",
8419
- "x-title": "Connected Account ID"
8453
+ type: "string"
8420
8454
  },
8421
8455
  created_at: {
8422
- description: "Time at which the event was created.",
8456
+ description: "Date and time at which the event was created.",
8423
8457
  format: "date-time",
8424
8458
  type: "string"
8425
8459
  },
8426
8460
  device_id: {
8427
- description: "The ID of the device.",
8461
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8428
8462
  format: "uuid",
8429
- type: "string",
8430
- "x-title": "Device ID"
8463
+ type: "string"
8431
8464
  },
8432
8465
  event_id: {
8433
8466
  description: "ID of the event.",
@@ -8436,7 +8469,7 @@ var openapi_default = {
8436
8469
  },
8437
8470
  event_type: { enum: ["access_code.created"], type: "string" },
8438
8471
  occurred_at: {
8439
- description: "Time when the event occurred.",
8472
+ description: "Date and time at which the event occurred.",
8440
8473
  format: "date-time",
8441
8474
  type: "string"
8442
8475
  },
@@ -8459,30 +8492,27 @@ var openapi_default = {
8459
8492
  type: "object"
8460
8493
  },
8461
8494
  {
8462
- description: "An access code was changed.",
8495
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was changed.",
8463
8496
  properties: {
8464
8497
  access_code_id: {
8465
- description: "The ID of the access code.",
8498
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8466
8499
  format: "uuid",
8467
- type: "string",
8468
- "x-title": "Access Code ID"
8500
+ type: "string"
8469
8501
  },
8470
8502
  connected_account_id: {
8471
- description: "The ID of the connected account.",
8503
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8472
8504
  format: "uuid",
8473
- type: "string",
8474
- "x-title": "Connected Account ID"
8505
+ type: "string"
8475
8506
  },
8476
8507
  created_at: {
8477
- description: "Time at which the event was created.",
8508
+ description: "Date and time at which the event was created.",
8478
8509
  format: "date-time",
8479
8510
  type: "string"
8480
8511
  },
8481
8512
  device_id: {
8482
- description: "The ID of the device.",
8513
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8483
8514
  format: "uuid",
8484
- type: "string",
8485
- "x-title": "Device ID"
8515
+ type: "string"
8486
8516
  },
8487
8517
  event_id: {
8488
8518
  description: "ID of the event.",
@@ -8491,7 +8521,7 @@ var openapi_default = {
8491
8521
  },
8492
8522
  event_type: { enum: ["access_code.changed"], type: "string" },
8493
8523
  occurred_at: {
8494
- description: "Time when the event occurred.",
8524
+ description: "Date and time at which the event occurred.",
8495
8525
  format: "date-time",
8496
8526
  type: "string"
8497
8527
  },
@@ -8514,35 +8544,31 @@ var openapi_default = {
8514
8544
  type: "object"
8515
8545
  },
8516
8546
  {
8517
- description: "An access code was natively scheduled on a device.",
8547
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) on a device.",
8518
8548
  properties: {
8519
8549
  access_code_id: {
8520
- description: "The ID of the access code.",
8550
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8521
8551
  format: "uuid",
8522
- type: "string",
8523
- "x-title": "Access Code ID"
8552
+ type: "string"
8524
8553
  },
8525
8554
  code: {
8526
- description: "The code of the access code.",
8527
- type: "string",
8528
- "x-title": "Access Code"
8555
+ description: "Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8556
+ type: "string"
8529
8557
  },
8530
8558
  connected_account_id: {
8531
- description: "The ID of the connected account.",
8559
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8532
8560
  format: "uuid",
8533
- type: "string",
8534
- "x-title": "Connected Account ID"
8561
+ type: "string"
8535
8562
  },
8536
8563
  created_at: {
8537
- description: "Time at which the event was created.",
8564
+ description: "Date and time at which the event was created.",
8538
8565
  format: "date-time",
8539
8566
  type: "string"
8540
8567
  },
8541
8568
  device_id: {
8542
- description: "The ID of the device.",
8569
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8543
8570
  format: "uuid",
8544
- type: "string",
8545
- "x-title": "Device ID"
8571
+ type: "string"
8546
8572
  },
8547
8573
  event_id: {
8548
8574
  description: "ID of the event.",
@@ -8554,7 +8580,7 @@ var openapi_default = {
8554
8580
  type: "string"
8555
8581
  },
8556
8582
  occurred_at: {
8557
- description: "Time when the event occurred.",
8583
+ description: "Date and time at which the event occurred.",
8558
8584
  format: "date-time",
8559
8585
  type: "string"
8560
8586
  },
@@ -8578,35 +8604,31 @@ var openapi_default = {
8578
8604
  type: "object"
8579
8605
  },
8580
8606
  {
8581
- description: "An access code was set on a device.",
8607
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was set on a device.",
8582
8608
  properties: {
8583
8609
  access_code_id: {
8584
- description: "The ID of the access code.",
8610
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8585
8611
  format: "uuid",
8586
- type: "string",
8587
- "x-title": "Access Code ID"
8612
+ type: "string"
8588
8613
  },
8589
8614
  code: {
8590
- description: "The code of the access code.",
8591
- type: "string",
8592
- "x-title": "Access Code"
8615
+ description: "Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8616
+ type: "string"
8593
8617
  },
8594
8618
  connected_account_id: {
8595
- description: "The ID of the connected account.",
8619
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8596
8620
  format: "uuid",
8597
- type: "string",
8598
- "x-title": "Connected Account ID"
8621
+ type: "string"
8599
8622
  },
8600
8623
  created_at: {
8601
- description: "Time at which the event was created.",
8624
+ description: "Date and time at which the event was created.",
8602
8625
  format: "date-time",
8603
8626
  type: "string"
8604
8627
  },
8605
8628
  device_id: {
8606
- description: "The ID of the device.",
8629
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8607
8630
  format: "uuid",
8608
- type: "string",
8609
- "x-title": "Device ID"
8631
+ type: "string"
8610
8632
  },
8611
8633
  event_id: {
8612
8634
  description: "ID of the event.",
@@ -8618,7 +8640,7 @@ var openapi_default = {
8618
8640
  type: "string"
8619
8641
  },
8620
8642
  occurred_at: {
8621
- description: "Time when the event occurred.",
8643
+ description: "Date and time at which the event occurred.",
8622
8644
  format: "date-time",
8623
8645
  type: "string"
8624
8646
  },
@@ -8642,30 +8664,27 @@ var openapi_default = {
8642
8664
  type: "object"
8643
8665
  },
8644
8666
  {
8645
- description: "An access code was removed from a device.",
8667
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was removed from a device.",
8646
8668
  properties: {
8647
8669
  access_code_id: {
8648
- description: "The ID of the access code.",
8670
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8649
8671
  format: "uuid",
8650
- type: "string",
8651
- "x-title": "Access Code ID"
8672
+ type: "string"
8652
8673
  },
8653
8674
  connected_account_id: {
8654
- description: "The ID of the connected account.",
8675
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8655
8676
  format: "uuid",
8656
- type: "string",
8657
- "x-title": "Connected Account ID"
8677
+ type: "string"
8658
8678
  },
8659
8679
  created_at: {
8660
- description: "Time at which the event was created.",
8680
+ description: "Date and time at which the event was created.",
8661
8681
  format: "date-time",
8662
8682
  type: "string"
8663
8683
  },
8664
8684
  device_id: {
8665
- description: "The ID of the device.",
8685
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8666
8686
  format: "uuid",
8667
- type: "string",
8668
- "x-title": "Device ID"
8687
+ type: "string"
8669
8688
  },
8670
8689
  event_id: {
8671
8690
  description: "ID of the event.",
@@ -8677,7 +8696,7 @@ var openapi_default = {
8677
8696
  type: "string"
8678
8697
  },
8679
8698
  occurred_at: {
8680
- description: "Time when the event occurred.",
8699
+ description: "Date and time at which the event occurred.",
8681
8700
  format: "date-time",
8682
8701
  type: "string"
8683
8702
  },
@@ -8700,30 +8719,27 @@ var openapi_default = {
8700
8719
  type: "object"
8701
8720
  },
8702
8721
  {
8703
- description: "There was an unusually long delay in setting an access code on a device.",
8722
+ description: "There was an unusually long delay in setting an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) on a device.",
8704
8723
  properties: {
8705
8724
  access_code_id: {
8706
- description: "The ID of the access code.",
8725
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8707
8726
  format: "uuid",
8708
- type: "string",
8709
- "x-title": "Access Code ID"
8727
+ type: "string"
8710
8728
  },
8711
8729
  connected_account_id: {
8712
- description: "The ID of the connected account.",
8730
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8713
8731
  format: "uuid",
8714
- type: "string",
8715
- "x-title": "Connected Account ID"
8732
+ type: "string"
8716
8733
  },
8717
8734
  created_at: {
8718
- description: "Time at which the event was created.",
8735
+ description: "Date and time at which the event was created.",
8719
8736
  format: "date-time",
8720
8737
  type: "string"
8721
8738
  },
8722
8739
  device_id: {
8723
- description: "The ID of the device.",
8740
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8724
8741
  format: "uuid",
8725
- type: "string",
8726
- "x-title": "Device ID"
8742
+ type: "string"
8727
8743
  },
8728
8744
  event_id: {
8729
8745
  description: "ID of the event.",
@@ -8735,7 +8751,7 @@ var openapi_default = {
8735
8751
  type: "string"
8736
8752
  },
8737
8753
  occurred_at: {
8738
- description: "Time when the event occurred.",
8754
+ description: "Date and time at which the event occurred.",
8739
8755
  format: "date-time",
8740
8756
  type: "string"
8741
8757
  },
@@ -8758,30 +8774,27 @@ var openapi_default = {
8758
8774
  type: "object"
8759
8775
  },
8760
8776
  {
8761
- description: "An access code failed to be set on a device.",
8777
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be set on a device.",
8762
8778
  properties: {
8763
8779
  access_code_id: {
8764
- description: "The ID of the access code.",
8780
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8765
8781
  format: "uuid",
8766
- type: "string",
8767
- "x-title": "Access Code ID"
8782
+ type: "string"
8768
8783
  },
8769
8784
  connected_account_id: {
8770
- description: "The ID of the connected account.",
8785
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8771
8786
  format: "uuid",
8772
- type: "string",
8773
- "x-title": "Connected Account ID"
8787
+ type: "string"
8774
8788
  },
8775
8789
  created_at: {
8776
- description: "Time at which the event was created.",
8790
+ description: "Date and time at which the event was created.",
8777
8791
  format: "date-time",
8778
8792
  type: "string"
8779
8793
  },
8780
8794
  device_id: {
8781
- description: "The ID of the device.",
8795
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8782
8796
  format: "uuid",
8783
- type: "string",
8784
- "x-title": "Device ID"
8797
+ type: "string"
8785
8798
  },
8786
8799
  event_id: {
8787
8800
  description: "ID of the event.",
@@ -8793,7 +8806,7 @@ var openapi_default = {
8793
8806
  type: "string"
8794
8807
  },
8795
8808
  occurred_at: {
8796
- description: "Time when the event occurred.",
8809
+ description: "Date and time at which the event occurred.",
8797
8810
  format: "date-time",
8798
8811
  type: "string"
8799
8812
  },
@@ -8816,36 +8829,32 @@ var openapi_default = {
8816
8829
  type: "object"
8817
8830
  },
8818
8831
  {
8819
- description: "An access code was deleted.",
8832
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted.",
8820
8833
  properties: {
8821
8834
  access_code_id: {
8822
- description: "The ID of the access code.",
8835
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8823
8836
  format: "uuid",
8824
- type: "string",
8825
- "x-title": "Access Code ID"
8837
+ type: "string"
8826
8838
  },
8827
8839
  code: {
8828
- description: "The code of the access code.",
8840
+ description: "Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8829
8841
  nullable: true,
8830
- type: "string",
8831
- "x-title": "Access Code"
8842
+ type: "string"
8832
8843
  },
8833
8844
  connected_account_id: {
8834
- description: "The ID of the connected account.",
8845
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8835
8846
  format: "uuid",
8836
- type: "string",
8837
- "x-title": "Connected Account ID"
8847
+ type: "string"
8838
8848
  },
8839
8849
  created_at: {
8840
- description: "Time at which the event was created.",
8850
+ description: "Date and time at which the event was created.",
8841
8851
  format: "date-time",
8842
8852
  type: "string"
8843
8853
  },
8844
8854
  device_id: {
8845
- description: "The ID of the device.",
8855
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8846
8856
  format: "uuid",
8847
- type: "string",
8848
- "x-title": "Device ID"
8857
+ type: "string"
8849
8858
  },
8850
8859
  event_id: {
8851
8860
  description: "ID of the event.",
@@ -8854,7 +8863,7 @@ var openapi_default = {
8854
8863
  },
8855
8864
  event_type: { enum: ["access_code.deleted"], type: "string" },
8856
8865
  occurred_at: {
8857
- description: "Time when the event occurred.",
8866
+ description: "Date and time at which the event occurred.",
8858
8867
  format: "date-time",
8859
8868
  type: "string"
8860
8869
  },
@@ -8878,30 +8887,27 @@ var openapi_default = {
8878
8887
  type: "object"
8879
8888
  },
8880
8889
  {
8881
- description: "There was an unusually long delay in removing an access code from a device.",
8890
+ description: "There was an unusually long delay in removing an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) from a device.",
8882
8891
  properties: {
8883
8892
  access_code_id: {
8884
- description: "The ID of the access code.",
8893
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8885
8894
  format: "uuid",
8886
- type: "string",
8887
- "x-title": "Access Code ID"
8895
+ type: "string"
8888
8896
  },
8889
8897
  connected_account_id: {
8890
- description: "The ID of the connected account.",
8898
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8891
8899
  format: "uuid",
8892
- type: "string",
8893
- "x-title": "Connected Account ID"
8900
+ type: "string"
8894
8901
  },
8895
8902
  created_at: {
8896
- description: "Time at which the event was created.",
8903
+ description: "Date and time at which the event was created.",
8897
8904
  format: "date-time",
8898
8905
  type: "string"
8899
8906
  },
8900
8907
  device_id: {
8901
- description: "The ID of the device.",
8908
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8902
8909
  format: "uuid",
8903
- type: "string",
8904
- "x-title": "Device ID"
8910
+ type: "string"
8905
8911
  },
8906
8912
  event_id: {
8907
8913
  description: "ID of the event.",
@@ -8913,7 +8919,7 @@ var openapi_default = {
8913
8919
  type: "string"
8914
8920
  },
8915
8921
  occurred_at: {
8916
- description: "Time when the event occurred.",
8922
+ description: "Date and time at which the event occurred.",
8917
8923
  format: "date-time",
8918
8924
  type: "string"
8919
8925
  },
@@ -8936,30 +8942,27 @@ var openapi_default = {
8936
8942
  type: "object"
8937
8943
  },
8938
8944
  {
8939
- description: "An access code failed to be removed from a device.",
8945
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be removed from a device.",
8940
8946
  properties: {
8941
8947
  access_code_id: {
8942
- description: "The ID of the access code.",
8948
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
8943
8949
  format: "uuid",
8944
- type: "string",
8945
- "x-title": "Access Code ID"
8950
+ type: "string"
8946
8951
  },
8947
8952
  connected_account_id: {
8948
- description: "The ID of the connected account.",
8953
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
8949
8954
  format: "uuid",
8950
- type: "string",
8951
- "x-title": "Connected Account ID"
8955
+ type: "string"
8952
8956
  },
8953
8957
  created_at: {
8954
- description: "Time at which the event was created.",
8958
+ description: "Date and time at which the event was created.",
8955
8959
  format: "date-time",
8956
8960
  type: "string"
8957
8961
  },
8958
8962
  device_id: {
8959
- description: "The ID of the device.",
8963
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
8960
8964
  format: "uuid",
8961
- type: "string",
8962
- "x-title": "Device ID"
8965
+ type: "string"
8963
8966
  },
8964
8967
  event_id: {
8965
8968
  description: "ID of the event.",
@@ -8971,7 +8974,7 @@ var openapi_default = {
8971
8974
  type: "string"
8972
8975
  },
8973
8976
  occurred_at: {
8974
- description: "Time when the event occurred.",
8977
+ description: "Date and time at which the event occurred.",
8975
8978
  format: "date-time",
8976
8979
  type: "string"
8977
8980
  },
@@ -8994,30 +8997,27 @@ var openapi_default = {
8994
8997
  type: "object"
8995
8998
  },
8996
8999
  {
8997
- description: "An access code was modified external to Seam.",
9000
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was modified outside of Seam.",
8998
9001
  properties: {
8999
9002
  access_code_id: {
9000
- description: "The ID of the access code.",
9003
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9001
9004
  format: "uuid",
9002
- type: "string",
9003
- "x-title": "Access Code ID"
9005
+ type: "string"
9004
9006
  },
9005
9007
  connected_account_id: {
9006
- description: "The ID of the connected account.",
9008
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9007
9009
  format: "uuid",
9008
- type: "string",
9009
- "x-title": "Connected Account ID"
9010
+ type: "string"
9010
9011
  },
9011
9012
  created_at: {
9012
- description: "Time at which the event was created.",
9013
+ description: "Date and time at which the event was created.",
9013
9014
  format: "date-time",
9014
9015
  type: "string"
9015
9016
  },
9016
9017
  device_id: {
9017
- description: "The ID of the device.",
9018
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9018
9019
  format: "uuid",
9019
- type: "string",
9020
- "x-title": "Device ID"
9020
+ type: "string"
9021
9021
  },
9022
9022
  event_id: {
9023
9023
  description: "ID of the event.",
@@ -9029,7 +9029,7 @@ var openapi_default = {
9029
9029
  type: "string"
9030
9030
  },
9031
9031
  occurred_at: {
9032
- description: "Time when the event occurred.",
9032
+ description: "Date and time at which the event occurred.",
9033
9033
  format: "date-time",
9034
9034
  type: "string"
9035
9035
  },
@@ -9052,30 +9052,27 @@ var openapi_default = {
9052
9052
  type: "object"
9053
9053
  },
9054
9054
  {
9055
- description: "An access code was deleted external to Seam.",
9055
+ description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted outside of Seam.",
9056
9056
  properties: {
9057
9057
  access_code_id: {
9058
- description: "The ID of the access code.",
9058
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9059
9059
  format: "uuid",
9060
- type: "string",
9061
- "x-title": "Access Code ID"
9060
+ type: "string"
9062
9061
  },
9063
9062
  connected_account_id: {
9064
- description: "The ID of the connected account.",
9063
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9065
9064
  format: "uuid",
9066
- type: "string",
9067
- "x-title": "Connected Account ID"
9065
+ type: "string"
9068
9066
  },
9069
9067
  created_at: {
9070
- description: "Time at which the event was created.",
9068
+ description: "Date and time at which the event was created.",
9071
9069
  format: "date-time",
9072
9070
  type: "string"
9073
9071
  },
9074
9072
  device_id: {
9075
- description: "The ID of the device.",
9073
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9076
9074
  format: "uuid",
9077
- type: "string",
9078
- "x-title": "Device ID"
9075
+ type: "string"
9079
9076
  },
9080
9077
  event_id: {
9081
9078
  description: "ID of the event.",
@@ -9087,7 +9084,7 @@ var openapi_default = {
9087
9084
  type: "string"
9088
9085
  },
9089
9086
  occurred_at: {
9090
- description: "Time when the event occurred.",
9087
+ description: "Date and time at which the event occurred.",
9091
9088
  format: "date-time",
9092
9089
  type: "string"
9093
9090
  },
@@ -9110,31 +9107,28 @@ var openapi_default = {
9110
9107
  type: "object"
9111
9108
  },
9112
9109
  {
9113
- description: "A backup access code was pulled from the backup access code pool and set on a device.",
9110
+ description: "A [backup access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.",
9114
9111
  properties: {
9115
9112
  access_code_id: {
9116
- description: "The ID of the access code.",
9113
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9117
9114
  format: "uuid",
9118
- type: "string",
9119
- "x-title": "Access Code ID"
9115
+ type: "string"
9120
9116
  },
9121
9117
  backup_access_code_id: { type: "string" },
9122
9118
  connected_account_id: {
9123
- description: "The ID of the connected account.",
9119
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9124
9120
  format: "uuid",
9125
- type: "string",
9126
- "x-title": "Connected Account ID"
9121
+ type: "string"
9127
9122
  },
9128
9123
  created_at: {
9129
- description: "Time at which the event was created.",
9124
+ description: "Date and time at which the event was created.",
9130
9125
  format: "date-time",
9131
9126
  type: "string"
9132
9127
  },
9133
9128
  device_id: {
9134
- description: "The ID of the device.",
9129
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9135
9130
  format: "uuid",
9136
- type: "string",
9137
- "x-title": "Device ID"
9131
+ type: "string"
9138
9132
  },
9139
9133
  event_id: {
9140
9134
  description: "ID of the event.",
@@ -9146,7 +9140,7 @@ var openapi_default = {
9146
9140
  type: "string"
9147
9141
  },
9148
9142
  occurred_at: {
9149
- description: "Time when the event occurred.",
9143
+ description: "Date and time at which the event occurred.",
9150
9144
  format: "date-time",
9151
9145
  type: "string"
9152
9146
  },
@@ -9170,30 +9164,27 @@ var openapi_default = {
9170
9164
  type: "object"
9171
9165
  },
9172
9166
  {
9173
- description: "An unmanaged access code was successfully converted to a managed access code.",
9167
+ description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.",
9174
9168
  properties: {
9175
9169
  access_code_id: {
9176
- description: "The ID of the access code.",
9170
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9177
9171
  format: "uuid",
9178
- type: "string",
9179
- "x-title": "Access Code ID"
9172
+ type: "string"
9180
9173
  },
9181
9174
  connected_account_id: {
9182
- description: "The ID of the connected account.",
9175
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9183
9176
  format: "uuid",
9184
- type: "string",
9185
- "x-title": "Connected Account ID"
9177
+ type: "string"
9186
9178
  },
9187
9179
  created_at: {
9188
- description: "Time at which the event was created.",
9180
+ description: "Date and time at which the event was created.",
9189
9181
  format: "date-time",
9190
9182
  type: "string"
9191
9183
  },
9192
9184
  device_id: {
9193
- description: "The ID of the device.",
9185
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9194
9186
  format: "uuid",
9195
- type: "string",
9196
- "x-title": "Device ID"
9187
+ type: "string"
9197
9188
  },
9198
9189
  event_id: {
9199
9190
  description: "ID of the event.",
@@ -9205,7 +9196,7 @@ var openapi_default = {
9205
9196
  type: "string"
9206
9197
  },
9207
9198
  occurred_at: {
9208
- description: "Time when the event occurred.",
9199
+ description: "Date and time at which the event occurred.",
9209
9200
  format: "date-time",
9210
9201
  type: "string"
9211
9202
  },
@@ -9228,30 +9219,27 @@ var openapi_default = {
9228
9219
  type: "object"
9229
9220
  },
9230
9221
  {
9231
- description: "An unmanaged access code failed to be converted to a managed access code.",
9222
+ description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.",
9232
9223
  properties: {
9233
9224
  access_code_id: {
9234
- description: "The ID of the access code.",
9225
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9235
9226
  format: "uuid",
9236
- type: "string",
9237
- "x-title": "Access Code ID"
9227
+ type: "string"
9238
9228
  },
9239
9229
  connected_account_id: {
9240
- description: "The ID of the connected account.",
9230
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9241
9231
  format: "uuid",
9242
- type: "string",
9243
- "x-title": "Connected Account ID"
9232
+ type: "string"
9244
9233
  },
9245
9234
  created_at: {
9246
- description: "Time at which the event was created.",
9235
+ description: "Date and time at which the event was created.",
9247
9236
  format: "date-time",
9248
9237
  type: "string"
9249
9238
  },
9250
9239
  device_id: {
9251
- description: "The ID of the device.",
9240
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9252
9241
  format: "uuid",
9253
- type: "string",
9254
- "x-title": "Device ID"
9242
+ type: "string"
9255
9243
  },
9256
9244
  event_id: {
9257
9245
  description: "ID of the event.",
@@ -9263,7 +9251,7 @@ var openapi_default = {
9263
9251
  type: "string"
9264
9252
  },
9265
9253
  occurred_at: {
9266
- description: "Time when the event occurred.",
9254
+ description: "Date and time at which the event occurred.",
9267
9255
  format: "date-time",
9268
9256
  type: "string"
9269
9257
  },
@@ -9286,30 +9274,27 @@ var openapi_default = {
9286
9274
  type: "object"
9287
9275
  },
9288
9276
  {
9289
- description: "An unmanaged access code was created on a device.",
9277
+ description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.",
9290
9278
  properties: {
9291
9279
  access_code_id: {
9292
- description: "The ID of the access code.",
9280
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9293
9281
  format: "uuid",
9294
- type: "string",
9295
- "x-title": "Access Code ID"
9282
+ type: "string"
9296
9283
  },
9297
9284
  connected_account_id: {
9298
- description: "The ID of the connected account.",
9285
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9299
9286
  format: "uuid",
9300
- type: "string",
9301
- "x-title": "Connected Account ID"
9287
+ type: "string"
9302
9288
  },
9303
9289
  created_at: {
9304
- description: "Time at which the event was created.",
9290
+ description: "Date and time at which the event was created.",
9305
9291
  format: "date-time",
9306
9292
  type: "string"
9307
9293
  },
9308
9294
  device_id: {
9309
- description: "The ID of the device.",
9295
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9310
9296
  format: "uuid",
9311
- type: "string",
9312
- "x-title": "Device ID"
9297
+ type: "string"
9313
9298
  },
9314
9299
  event_id: {
9315
9300
  description: "ID of the event.",
@@ -9321,7 +9306,7 @@ var openapi_default = {
9321
9306
  type: "string"
9322
9307
  },
9323
9308
  occurred_at: {
9324
- description: "Time when the event occurred.",
9309
+ description: "Date and time at which the event occurred.",
9325
9310
  format: "date-time",
9326
9311
  type: "string"
9327
9312
  },
@@ -9344,30 +9329,27 @@ var openapi_default = {
9344
9329
  type: "object"
9345
9330
  },
9346
9331
  {
9347
- description: "An unmanaged access code was removed from a device.",
9332
+ description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.",
9348
9333
  properties: {
9349
9334
  access_code_id: {
9350
- description: "The ID of the access code.",
9335
+ description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes).",
9351
9336
  format: "uuid",
9352
- type: "string",
9353
- "x-title": "Access Code ID"
9337
+ type: "string"
9354
9338
  },
9355
9339
  connected_account_id: {
9356
- description: "The ID of the connected account.",
9340
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9357
9341
  format: "uuid",
9358
- type: "string",
9359
- "x-title": "Connected Account ID"
9342
+ type: "string"
9360
9343
  },
9361
9344
  created_at: {
9362
- description: "Time at which the event was created.",
9345
+ description: "Date and time at which the event was created.",
9363
9346
  format: "date-time",
9364
9347
  type: "string"
9365
9348
  },
9366
9349
  device_id: {
9367
- description: "The ID of the device.",
9350
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
9368
9351
  format: "uuid",
9369
- type: "string",
9370
- "x-title": "Device ID"
9352
+ type: "string"
9371
9353
  },
9372
9354
  event_id: {
9373
9355
  description: "ID of the event.",
@@ -9379,7 +9361,7 @@ var openapi_default = {
9379
9361
  type: "string"
9380
9362
  },
9381
9363
  occurred_at: {
9382
- description: "Time when the event occurred.",
9364
+ description: "Date and time at which the event occurred.",
9383
9365
  format: "date-time",
9384
9366
  type: "string"
9385
9367
  },
@@ -9402,22 +9384,20 @@ var openapi_default = {
9402
9384
  type: "object"
9403
9385
  },
9404
9386
  {
9405
- description: "An ACS system was connected.",
9387
+ description: "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.",
9406
9388
  properties: {
9407
9389
  acs_system_id: {
9408
- description: "ID of the ACS system.",
9390
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9409
9391
  format: "uuid",
9410
- type: "string",
9411
- "x-title": "ACS System ID"
9392
+ type: "string"
9412
9393
  },
9413
9394
  connected_account_id: {
9414
- description: "ID of the connected account.",
9395
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9415
9396
  format: "uuid",
9416
- type: "string",
9417
- "x-title": "Connected Account ID"
9397
+ type: "string"
9418
9398
  },
9419
9399
  created_at: {
9420
- description: "Time at which the event was created.",
9400
+ description: "Date and time at which the event was created.",
9421
9401
  format: "date-time",
9422
9402
  type: "string"
9423
9403
  },
@@ -9428,7 +9408,7 @@ var openapi_default = {
9428
9408
  },
9429
9409
  event_type: { enum: ["acs_system.connected"], type: "string" },
9430
9410
  occurred_at: {
9431
- description: "Time when the event occurred.",
9411
+ description: "Date and time at which the event occurred.",
9432
9412
  format: "date-time",
9433
9413
  type: "string"
9434
9414
  },
@@ -9449,22 +9429,20 @@ var openapi_default = {
9449
9429
  type: "object"
9450
9430
  },
9451
9431
  {
9452
- description: "An ACS system was added.",
9432
+ description: "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was added.",
9453
9433
  properties: {
9454
9434
  acs_system_id: {
9455
- description: "ID of the ACS system.",
9435
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9456
9436
  format: "uuid",
9457
- type: "string",
9458
- "x-title": "ACS System ID"
9437
+ type: "string"
9459
9438
  },
9460
9439
  connected_account_id: {
9461
- description: "ID of the connected account.",
9440
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9462
9441
  format: "uuid",
9463
- type: "string",
9464
- "x-title": "Connected Account ID"
9442
+ type: "string"
9465
9443
  },
9466
9444
  created_at: {
9467
- description: "Time at which the event was created.",
9445
+ description: "Date and time at which the event was created.",
9468
9446
  format: "date-time",
9469
9447
  type: "string"
9470
9448
  },
@@ -9475,7 +9453,7 @@ var openapi_default = {
9475
9453
  },
9476
9454
  event_type: { enum: ["acs_system.added"], type: "string" },
9477
9455
  occurred_at: {
9478
- description: "Time when the event occurred.",
9456
+ description: "Date and time at which the event occurred.",
9479
9457
  format: "date-time",
9480
9458
  type: "string"
9481
9459
  },
@@ -9496,22 +9474,20 @@ var openapi_default = {
9496
9474
  type: "object"
9497
9475
  },
9498
9476
  {
9499
- description: "An ACS system was disconnected.",
9477
+ description: "An [ACS system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected.",
9500
9478
  properties: {
9501
9479
  acs_system_id: {
9502
- description: "ID of the ACS system.",
9480
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9503
9481
  format: "uuid",
9504
- type: "string",
9505
- "x-title": "ACS System ID"
9482
+ type: "string"
9506
9483
  },
9507
9484
  connected_account_id: {
9508
- description: "ID of the connected account.",
9485
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9509
9486
  format: "uuid",
9510
- type: "string",
9511
- "x-title": "Connected Account ID"
9487
+ type: "string"
9512
9488
  },
9513
9489
  created_at: {
9514
- description: "Time at which the event was created.",
9490
+ description: "Date and time at which the event was created.",
9515
9491
  format: "date-time",
9516
9492
  type: "string"
9517
9493
  },
@@ -9522,7 +9498,7 @@ var openapi_default = {
9522
9498
  },
9523
9499
  event_type: { enum: ["acs_system.disconnected"], type: "string" },
9524
9500
  occurred_at: {
9525
- description: "Time when the event occurred.",
9501
+ description: "Date and time at which the event occurred.",
9526
9502
  format: "date-time",
9527
9503
  type: "string"
9528
9504
  },
@@ -9543,23 +9519,21 @@ var openapi_default = {
9543
9519
  type: "object"
9544
9520
  },
9545
9521
  {
9546
- description: "An ACS credential was deleted.",
9522
+ description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was deleted.",
9547
9523
  properties: {
9548
9524
  acs_credential_id: { format: "uuid", type: "string" },
9549
9525
  acs_system_id: {
9550
- description: "ID of the ACS system.",
9526
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9551
9527
  format: "uuid",
9552
- type: "string",
9553
- "x-title": "ACS System ID"
9528
+ type: "string"
9554
9529
  },
9555
9530
  connected_account_id: {
9556
- description: "ID of the connected account.",
9531
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9557
9532
  format: "uuid",
9558
- type: "string",
9559
- "x-title": "Connected Account ID"
9533
+ type: "string"
9560
9534
  },
9561
9535
  created_at: {
9562
- description: "Time at which the event was created.",
9536
+ description: "Date and time at which the event was created.",
9563
9537
  format: "date-time",
9564
9538
  type: "string"
9565
9539
  },
@@ -9570,7 +9544,7 @@ var openapi_default = {
9570
9544
  },
9571
9545
  event_type: { enum: ["acs_credential.deleted"], type: "string" },
9572
9546
  occurred_at: {
9573
- description: "Time when the event occurred.",
9547
+ description: "Date and time at which the event occurred.",
9574
9548
  format: "date-time",
9575
9549
  type: "string"
9576
9550
  },
@@ -9592,23 +9566,21 @@ var openapi_default = {
9592
9566
  type: "object"
9593
9567
  },
9594
9568
  {
9595
- description: "An ACS credential was issued.",
9569
+ description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.",
9596
9570
  properties: {
9597
9571
  acs_credential_id: { format: "uuid", type: "string" },
9598
9572
  acs_system_id: {
9599
- description: "ID of the ACS system.",
9573
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9600
9574
  format: "uuid",
9601
- type: "string",
9602
- "x-title": "ACS System ID"
9575
+ type: "string"
9603
9576
  },
9604
9577
  connected_account_id: {
9605
- description: "ID of the connected account.",
9578
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9606
9579
  format: "uuid",
9607
- type: "string",
9608
- "x-title": "Connected Account ID"
9580
+ type: "string"
9609
9581
  },
9610
9582
  created_at: {
9611
- description: "Time at which the event was created.",
9583
+ description: "Date and time at which the event was created.",
9612
9584
  format: "date-time",
9613
9585
  type: "string"
9614
9586
  },
@@ -9619,7 +9591,7 @@ var openapi_default = {
9619
9591
  },
9620
9592
  event_type: { enum: ["acs_credential.issued"], type: "string" },
9621
9593
  occurred_at: {
9622
- description: "Time when the event occurred.",
9594
+ description: "Date and time at which the event occurred.",
9623
9595
  format: "date-time",
9624
9596
  type: "string"
9625
9597
  },
@@ -9641,23 +9613,21 @@ var openapi_default = {
9641
9613
  type: "object"
9642
9614
  },
9643
9615
  {
9644
- description: "An ACS user was deleted.",
9616
+ description: "An [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.",
9645
9617
  properties: {
9646
9618
  acs_system_id: {
9647
- description: "ID of the ACS system.",
9619
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9648
9620
  format: "uuid",
9649
- type: "string",
9650
- "x-title": "ACS System ID"
9621
+ type: "string"
9651
9622
  },
9652
9623
  acs_user_id: { format: "uuid", type: "string" },
9653
9624
  connected_account_id: {
9654
- description: "ID of the connected account.",
9625
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9655
9626
  format: "uuid",
9656
- type: "string",
9657
- "x-title": "Connected Account ID"
9627
+ type: "string"
9658
9628
  },
9659
9629
  created_at: {
9660
- description: "Time at which the event was created.",
9630
+ description: "Date and time at which the event was created.",
9661
9631
  format: "date-time",
9662
9632
  type: "string"
9663
9633
  },
@@ -9668,7 +9638,7 @@ var openapi_default = {
9668
9638
  },
9669
9639
  event_type: { enum: ["acs_user.deleted"], type: "string" },
9670
9640
  occurred_at: {
9671
- description: "Time when the event occurred.",
9641
+ description: "Date and time at which the event occurred.",
9672
9642
  format: "date-time",
9673
9643
  type: "string"
9674
9644
  },
@@ -9690,27 +9660,25 @@ var openapi_default = {
9690
9660
  type: "object"
9691
9661
  },
9692
9662
  {
9693
- description: "An ACS encoder was added.",
9663
+ description: "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was added.",
9694
9664
  properties: {
9695
9665
  acs_encoder_id: {
9696
- description: "ID of the ACS encoder.",
9666
+ description: "ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).",
9697
9667
  format: "uuid",
9698
9668
  type: "string"
9699
9669
  },
9700
9670
  acs_system_id: {
9701
- description: "ID of the ACS system.",
9671
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9702
9672
  format: "uuid",
9703
- type: "string",
9704
- "x-title": "ACS System ID"
9673
+ type: "string"
9705
9674
  },
9706
9675
  connected_account_id: {
9707
- description: "ID of the connected account.",
9676
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9708
9677
  format: "uuid",
9709
- type: "string",
9710
- "x-title": "Connected Account ID"
9678
+ type: "string"
9711
9679
  },
9712
9680
  created_at: {
9713
- description: "Time at which the event was created.",
9681
+ description: "Date and time at which the event was created.",
9714
9682
  format: "date-time",
9715
9683
  type: "string"
9716
9684
  },
@@ -9721,7 +9689,7 @@ var openapi_default = {
9721
9689
  },
9722
9690
  event_type: { enum: ["acs_encoder.added"], type: "string" },
9723
9691
  occurred_at: {
9724
- description: "Time when the event occurred.",
9692
+ description: "Date and time at which the event occurred.",
9725
9693
  format: "date-time",
9726
9694
  type: "string"
9727
9695
  },
@@ -9743,27 +9711,25 @@ var openapi_default = {
9743
9711
  type: "object"
9744
9712
  },
9745
9713
  {
9746
- description: "An ACS encoder was removed.",
9714
+ description: "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was removed.",
9747
9715
  properties: {
9748
9716
  acs_encoder_id: {
9749
- description: "ID of the ACS encoder.",
9717
+ description: "ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners).",
9750
9718
  format: "uuid",
9751
9719
  type: "string"
9752
9720
  },
9753
9721
  acs_system_id: {
9754
- description: "ID of the ACS system.",
9722
+ description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
9755
9723
  format: "uuid",
9756
- type: "string",
9757
- "x-title": "ACS System ID"
9724
+ type: "string"
9758
9725
  },
9759
9726
  connected_account_id: {
9760
- description: "ID of the connected account.",
9727
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9761
9728
  format: "uuid",
9762
- type: "string",
9763
- "x-title": "Connected Account ID"
9729
+ type: "string"
9764
9730
  },
9765
9731
  created_at: {
9766
- description: "Time at which the event was created.",
9732
+ description: "Date and time at which the event was created.",
9767
9733
  format: "date-time",
9768
9734
  type: "string"
9769
9735
  },
@@ -9774,7 +9740,7 @@ var openapi_default = {
9774
9740
  },
9775
9741
  event_type: { enum: ["acs_encoder.removed"], type: "string" },
9776
9742
  occurred_at: {
9777
- description: "Time when the event occurred.",
9743
+ description: "Date and time at which the event occurred.",
9778
9744
  format: "date-time",
9779
9745
  type: "string"
9780
9746
  },
@@ -9796,16 +9762,15 @@ var openapi_default = {
9796
9762
  type: "object"
9797
9763
  },
9798
9764
  {
9799
- description: "A client session was deleted.",
9765
+ description: "A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.",
9800
9766
  properties: {
9801
9767
  client_session_id: {
9802
- description: "ID of the client session.",
9768
+ description: "ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens).",
9803
9769
  format: "uuid",
9804
- type: "string",
9805
- "x-title": "Client Session ID"
9770
+ type: "string"
9806
9771
  },
9807
9772
  created_at: {
9808
- description: "Time at which the event was created.",
9773
+ description: "Date and time at which the event was created.",
9809
9774
  format: "date-time",
9810
9775
  type: "string"
9811
9776
  },
@@ -9816,7 +9781,7 @@ var openapi_default = {
9816
9781
  },
9817
9782
  event_type: { enum: ["client_session.deleted"], type: "string" },
9818
9783
  occurred_at: {
9819
- description: "Time when the event occurred.",
9784
+ description: "Date and time at which the event occurred.",
9820
9785
  format: "date-time",
9821
9786
  type: "string"
9822
9787
  },
@@ -9837,22 +9802,20 @@ var openapi_default = {
9837
9802
  type: "object"
9838
9803
  },
9839
9804
  {
9840
- description: "A connected account was connected for the first time, was reconnected after being disconnected.",
9805
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was connected for the first time or was reconnected after being disconnected.",
9841
9806
  properties: {
9842
9807
  connect_webview_id: {
9843
- description: "ID of the connect webview.",
9808
+ description: "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
9844
9809
  format: "uuid",
9845
- type: "string",
9846
- "x-title": "Connect Webview ID"
9810
+ type: "string"
9847
9811
  },
9848
9812
  connected_account_id: {
9849
- description: "ID of the connected account.",
9813
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9850
9814
  format: "uuid",
9851
- type: "string",
9852
- "x-title": "Connected Account ID"
9815
+ type: "string"
9853
9816
  },
9854
9817
  created_at: {
9855
- description: "Time at which the event was created.",
9818
+ description: "Date and time at which the event was created.",
9856
9819
  format: "date-time",
9857
9820
  type: "string"
9858
9821
  },
@@ -9866,7 +9829,7 @@ var openapi_default = {
9866
9829
  type: "string"
9867
9830
  },
9868
9831
  occurred_at: {
9869
- description: "Time when the event occurred.",
9832
+ description: "Date and time at which the event occurred.",
9870
9833
  format: "date-time",
9871
9834
  type: "string"
9872
9835
  },
@@ -9888,22 +9851,20 @@ var openapi_default = {
9888
9851
  type: "object"
9889
9852
  },
9890
9853
  {
9891
- description: "A connected account was created.",
9854
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was created.",
9892
9855
  properties: {
9893
9856
  connect_webview_id: {
9894
- description: "ID of the connect webview.",
9857
+ description: "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
9895
9858
  format: "uuid",
9896
- type: "string",
9897
- "x-title": "Connect Webview ID"
9859
+ type: "string"
9898
9860
  },
9899
9861
  connected_account_id: {
9900
- description: "ID of the connected account.",
9862
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9901
9863
  format: "uuid",
9902
- type: "string",
9903
- "x-title": "Connected Account ID"
9864
+ type: "string"
9904
9865
  },
9905
9866
  created_at: {
9906
- description: "Time at which the event was created.",
9867
+ description: "Date and time at which the event was created.",
9907
9868
  format: "date-time",
9908
9869
  type: "string"
9909
9870
  },
@@ -9917,7 +9878,7 @@ var openapi_default = {
9917
9878
  type: "string"
9918
9879
  },
9919
9880
  occurred_at: {
9920
- description: "Time when the event occurred.",
9881
+ description: "Date and time at which the event occurred.",
9921
9882
  format: "date-time",
9922
9883
  type: "string"
9923
9884
  },
@@ -9940,22 +9901,20 @@ var openapi_default = {
9940
9901
  },
9941
9902
  {
9942
9903
  deprecated: true,
9943
- description: "A connected account had a successful connect webview login.",
9904
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) had a successful login using a [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
9944
9905
  properties: {
9945
9906
  connect_webview_id: {
9946
- description: "ID of the connect webview.",
9907
+ description: "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
9947
9908
  format: "uuid",
9948
- type: "string",
9949
- "x-title": "Connect Webview ID"
9909
+ type: "string"
9950
9910
  },
9951
9911
  connected_account_id: {
9952
- description: "ID of the connected account.",
9912
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9953
9913
  format: "uuid",
9954
- type: "string",
9955
- "x-title": "Connected Account ID"
9914
+ type: "string"
9956
9915
  },
9957
9916
  created_at: {
9958
- description: "Time at which the event was created.",
9917
+ description: "Date and time at which the event was created.",
9959
9918
  format: "date-time",
9960
9919
  type: "string"
9961
9920
  },
@@ -9969,7 +9928,7 @@ var openapi_default = {
9969
9928
  type: "string"
9970
9929
  },
9971
9930
  occurred_at: {
9972
- description: "Time when the event occurred.",
9931
+ description: "Date and time at which the event occurred.",
9973
9932
  format: "date-time",
9974
9933
  type: "string"
9975
9934
  },
@@ -9992,16 +9951,15 @@ var openapi_default = {
9992
9951
  "x-deprecated": "Use `connect_webview.login_succeeded`."
9993
9952
  },
9994
9953
  {
9995
- description: "A connected account was disconnected.",
9954
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.",
9996
9955
  properties: {
9997
9956
  connected_account_id: {
9998
- description: "ID of the connected account.",
9957
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
9999
9958
  format: "uuid",
10000
- type: "string",
10001
- "x-title": "Connected Account ID"
9959
+ type: "string"
10002
9960
  },
10003
9961
  created_at: {
10004
- description: "Time at which the event was created.",
9962
+ description: "Date and time at which the event was created.",
10005
9963
  format: "date-time",
10006
9964
  type: "string"
10007
9965
  },
@@ -10015,7 +9973,7 @@ var openapi_default = {
10015
9973
  type: "string"
10016
9974
  },
10017
9975
  occurred_at: {
10018
- description: "Time when the event occurred.",
9976
+ description: "Date and time at which the event occurred.",
10019
9977
  format: "date-time",
10020
9978
  type: "string"
10021
9979
  },
@@ -10036,16 +9994,15 @@ var openapi_default = {
10036
9994
  type: "object"
10037
9995
  },
10038
9996
  {
10039
- description: "A connected account completed the first sync with Seam and devices are now available.",
9997
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available.",
10040
9998
  properties: {
10041
9999
  connected_account_id: {
10042
- description: "ID of the connected account.",
10000
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10043
10001
  format: "uuid",
10044
- type: "string",
10045
- "x-title": "Connected Account ID"
10002
+ type: "string"
10046
10003
  },
10047
10004
  created_at: {
10048
- description: "Time at which the event was created.",
10005
+ description: "Date and time at which the event was created.",
10049
10006
  format: "date-time",
10050
10007
  type: "string"
10051
10008
  },
@@ -10059,7 +10016,7 @@ var openapi_default = {
10059
10016
  type: "string"
10060
10017
  },
10061
10018
  occurred_at: {
10062
- description: "Time when the event occurred.",
10019
+ description: "Date and time at which the event occurred.",
10063
10020
  format: "date-time",
10064
10021
  type: "string"
10065
10022
  },
@@ -10080,16 +10037,15 @@ var openapi_default = {
10080
10037
  type: "object"
10081
10038
  },
10082
10039
  {
10083
- description: "A connected account was deleted.",
10040
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.",
10084
10041
  properties: {
10085
10042
  connected_account_id: {
10086
- description: "ID of the connected account.",
10043
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10087
10044
  format: "uuid",
10088
- type: "string",
10089
- "x-title": "Connected Account ID"
10045
+ type: "string"
10090
10046
  },
10091
10047
  created_at: {
10092
- description: "Time at which the event was created.",
10048
+ description: "Date and time at which the event was created.",
10093
10049
  format: "date-time",
10094
10050
  type: "string"
10095
10051
  },
@@ -10103,7 +10059,7 @@ var openapi_default = {
10103
10059
  type: "string"
10104
10060
  },
10105
10061
  occurred_at: {
10106
- description: "Time when the event occurred.",
10062
+ description: "Date and time at which the event occurred.",
10107
10063
  format: "date-time",
10108
10064
  type: "string"
10109
10065
  },
@@ -10124,16 +10080,15 @@ var openapi_default = {
10124
10080
  type: "object"
10125
10081
  },
10126
10082
  {
10127
- description: "A connected account completed the first sync after reconnection with Seam and devices are now available.",
10083
+ description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available.",
10128
10084
  properties: {
10129
10085
  connected_account_id: {
10130
- description: "ID of the connected account.",
10086
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10131
10087
  format: "uuid",
10132
- type: "string",
10133
- "x-title": "Connected Account ID"
10088
+ type: "string"
10134
10089
  },
10135
10090
  created_at: {
10136
- description: "Time at which the event was created.",
10091
+ description: "Date and time at which the event was created.",
10137
10092
  format: "date-time",
10138
10093
  type: "string"
10139
10094
  },
@@ -10149,7 +10104,7 @@ var openapi_default = {
10149
10104
  type: "string"
10150
10105
  },
10151
10106
  occurred_at: {
10152
- description: "Time when the event occurred.",
10107
+ description: "Date and time at which the event occurred.",
10153
10108
  format: "date-time",
10154
10109
  type: "string"
10155
10110
  },
@@ -10170,21 +10125,16 @@ var openapi_default = {
10170
10125
  type: "object"
10171
10126
  },
10172
10127
  {
10173
- description: "A lock door action attempt succeeded.",
10128
+ description: "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.",
10174
10129
  properties: {
10175
10130
  action_attempt_id: {
10176
- description: "The ID of the action attempt.",
10131
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).",
10177
10132
  format: "uuid",
10178
- type: "string",
10179
- "x-title": "Action Attempt ID"
10180
- },
10181
- action_type: {
10182
- description: "The type of action.",
10183
- type: "string",
10184
- "x-title": "Action Type"
10133
+ type: "string"
10185
10134
  },
10135
+ action_type: { description: "Type of action.", type: "string" },
10186
10136
  created_at: {
10187
- description: "Time at which the event was created.",
10137
+ description: "Date and time at which the event was created.",
10188
10138
  format: "date-time",
10189
10139
  type: "string"
10190
10140
  },
@@ -10198,15 +10148,11 @@ var openapi_default = {
10198
10148
  type: "string"
10199
10149
  },
10200
10150
  occurred_at: {
10201
- description: "Time when the event occurred.",
10151
+ description: "Date and time at which the event occurred.",
10202
10152
  format: "date-time",
10203
10153
  type: "string"
10204
10154
  },
10205
- status: {
10206
- description: "The status of the action.",
10207
- type: "string",
10208
- "x-title": "Status"
10209
- },
10155
+ status: { description: "Status of the action.", type: "string" },
10210
10156
  workspace_id: {
10211
10157
  description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10212
10158
  format: "uuid",
@@ -10226,21 +10172,16 @@ var openapi_default = {
10226
10172
  type: "object"
10227
10173
  },
10228
10174
  {
10229
- description: "A lock door action attempt failed.",
10175
+ description: "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.",
10230
10176
  properties: {
10231
10177
  action_attempt_id: {
10232
- description: "The ID of the action attempt.",
10178
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).",
10233
10179
  format: "uuid",
10234
- type: "string",
10235
- "x-title": "Action Attempt ID"
10236
- },
10237
- action_type: {
10238
- description: "The type of action.",
10239
- type: "string",
10240
- "x-title": "Action Type"
10180
+ type: "string"
10241
10181
  },
10182
+ action_type: { description: "Type of action.", type: "string" },
10242
10183
  created_at: {
10243
- description: "Time at which the event was created.",
10184
+ description: "Date and time at which the event was created.",
10244
10185
  format: "date-time",
10245
10186
  type: "string"
10246
10187
  },
@@ -10254,15 +10195,11 @@ var openapi_default = {
10254
10195
  type: "string"
10255
10196
  },
10256
10197
  occurred_at: {
10257
- description: "Time when the event occurred.",
10198
+ description: "Date and time at which the event occurred.",
10258
10199
  format: "date-time",
10259
10200
  type: "string"
10260
10201
  },
10261
- status: {
10262
- description: "The status of the action.",
10263
- type: "string",
10264
- "x-title": "Status"
10265
- },
10202
+ status: { description: "Status of the action.", type: "string" },
10266
10203
  workspace_id: {
10267
10204
  description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10268
10205
  format: "uuid",
@@ -10282,21 +10219,16 @@ var openapi_default = {
10282
10219
  type: "object"
10283
10220
  },
10284
10221
  {
10285
- description: "An unlock door action attempt succeeded.",
10222
+ description: "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.",
10286
10223
  properties: {
10287
10224
  action_attempt_id: {
10288
- description: "The ID of the action attempt.",
10225
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).",
10289
10226
  format: "uuid",
10290
- type: "string",
10291
- "x-title": "Action Attempt ID"
10292
- },
10293
- action_type: {
10294
- description: "The type of action.",
10295
- type: "string",
10296
- "x-title": "Action Type"
10227
+ type: "string"
10297
10228
  },
10229
+ action_type: { description: "Type of action.", type: "string" },
10298
10230
  created_at: {
10299
- description: "Time at which the event was created.",
10231
+ description: "Date and time at which the event was created.",
10300
10232
  format: "date-time",
10301
10233
  type: "string"
10302
10234
  },
@@ -10310,15 +10242,11 @@ var openapi_default = {
10310
10242
  type: "string"
10311
10243
  },
10312
10244
  occurred_at: {
10313
- description: "Time when the event occurred.",
10245
+ description: "Date and time at which the event occurred.",
10314
10246
  format: "date-time",
10315
10247
  type: "string"
10316
10248
  },
10317
- status: {
10318
- description: "The status of the action.",
10319
- type: "string",
10320
- "x-title": "Status"
10321
- },
10249
+ status: { description: "Status of the action.", type: "string" },
10322
10250
  workspace_id: {
10323
10251
  description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10324
10252
  format: "uuid",
@@ -10338,21 +10266,16 @@ var openapi_default = {
10338
10266
  type: "object"
10339
10267
  },
10340
10268
  {
10341
- description: "An unlock door action attempt failed.",
10269
+ description: "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.",
10342
10270
  properties: {
10343
10271
  action_attempt_id: {
10344
- description: "The ID of the action attempt.",
10272
+ description: "ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts).",
10345
10273
  format: "uuid",
10346
- type: "string",
10347
- "x-title": "Action Attempt ID"
10348
- },
10349
- action_type: {
10350
- description: "The type of action.",
10351
- type: "string",
10352
- "x-title": "Action Type"
10274
+ type: "string"
10353
10275
  },
10276
+ action_type: { description: "Type of action.", type: "string" },
10354
10277
  created_at: {
10355
- description: "Time at which the event was created.",
10278
+ description: "Date and time at which the event was created.",
10356
10279
  format: "date-time",
10357
10280
  type: "string"
10358
10281
  },
@@ -10366,15 +10289,11 @@ var openapi_default = {
10366
10289
  type: "string"
10367
10290
  },
10368
10291
  occurred_at: {
10369
- description: "Time when the event occurred.",
10292
+ description: "Date and time at which the event occurred.",
10370
10293
  format: "date-time",
10371
10294
  type: "string"
10372
10295
  },
10373
- status: {
10374
- description: "The status of the action.",
10375
- type: "string",
10376
- "x-title": "Status"
10377
- },
10296
+ status: { description: "Status of the action.", type: "string" },
10378
10297
  workspace_id: {
10379
10298
  description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
10380
10299
  format: "uuid",
@@ -10394,22 +10313,20 @@ var openapi_default = {
10394
10313
  type: "object"
10395
10314
  },
10396
10315
  {
10397
- description: "A connect webview had a successful login.",
10316
+ description: "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login succeeded.",
10398
10317
  properties: {
10399
10318
  connect_webview_id: {
10400
- description: "ID of the connect webview.",
10319
+ description: "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
10401
10320
  format: "uuid",
10402
- type: "string",
10403
- "x-title": "Connect Webview ID"
10321
+ type: "string"
10404
10322
  },
10405
10323
  connected_account_id: {
10406
- description: "ID of the connected account.",
10324
+ description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10407
10325
  format: "uuid",
10408
- type: "string",
10409
- "x-title": "Connected Account ID"
10326
+ type: "string"
10410
10327
  },
10411
10328
  created_at: {
10412
- description: "Time at which the event was created.",
10329
+ description: "Date and time at which the event was created.",
10413
10330
  format: "date-time",
10414
10331
  type: "string"
10415
10332
  },
@@ -10423,7 +10340,7 @@ var openapi_default = {
10423
10340
  type: "string"
10424
10341
  },
10425
10342
  occurred_at: {
10426
- description: "Time when the event occurred.",
10343
+ description: "Date and time at which the event occurred.",
10427
10344
  format: "date-time",
10428
10345
  type: "string"
10429
10346
  },
@@ -10445,16 +10362,15 @@ var openapi_default = {
10445
10362
  type: "object"
10446
10363
  },
10447
10364
  {
10448
- description: "A connect webview had a failed login.",
10365
+ description: "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login failed.",
10449
10366
  properties: {
10450
10367
  connect_webview_id: {
10451
- description: "ID of the connect webview.",
10368
+ description: "ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
10452
10369
  format: "uuid",
10453
- type: "string",
10454
- "x-title": "Connect Webview ID"
10370
+ type: "string"
10455
10371
  },
10456
10372
  created_at: {
10457
- description: "Time at which the event was created.",
10373
+ description: "Date and time at which the event was created.",
10458
10374
  format: "date-time",
10459
10375
  type: "string"
10460
10376
  },
@@ -10468,7 +10384,7 @@ var openapi_default = {
10468
10384
  type: "string"
10469
10385
  },
10470
10386
  occurred_at: {
10471
- description: "Time when the event occurred.",
10387
+ description: "Date and time at which the event occurred.",
10472
10388
  format: "date-time",
10473
10389
  type: "string"
10474
10390
  },
@@ -10489,7 +10405,7 @@ var openapi_default = {
10489
10405
  type: "object"
10490
10406
  },
10491
10407
  {
10492
- description: "A new device was connected to Seam.",
10408
+ description: "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices.",
10493
10409
  properties: {
10494
10410
  connected_account_id: {
10495
10411
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10497,7 +10413,7 @@ var openapi_default = {
10497
10413
  type: "string"
10498
10414
  },
10499
10415
  created_at: {
10500
- description: "Time at which the event was created.",
10416
+ description: "Date and time at which the event was created.",
10501
10417
  format: "date-time",
10502
10418
  type: "string"
10503
10419
  },
@@ -10513,7 +10429,7 @@ var openapi_default = {
10513
10429
  },
10514
10430
  event_type: { enum: ["device.connected"], type: "string" },
10515
10431
  occurred_at: {
10516
- description: "Time when the event occurred.",
10432
+ description: "Date and time at which the event occurred.",
10517
10433
  format: "date-time",
10518
10434
  type: "string"
10519
10435
  },
@@ -10535,7 +10451,7 @@ var openapi_default = {
10535
10451
  type: "object"
10536
10452
  },
10537
10453
  {
10538
- description: "A device was added or reconnected to Seam.",
10454
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.",
10539
10455
  properties: {
10540
10456
  connected_account_id: {
10541
10457
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10543,7 +10459,7 @@ var openapi_default = {
10543
10459
  type: "string"
10544
10460
  },
10545
10461
  created_at: {
10546
- description: "Time at which the event was created.",
10462
+ description: "Date and time at which the event was created.",
10547
10463
  format: "date-time",
10548
10464
  type: "string"
10549
10465
  },
@@ -10559,7 +10475,7 @@ var openapi_default = {
10559
10475
  },
10560
10476
  event_type: { enum: ["device.added"], type: "string" },
10561
10477
  occurred_at: {
10562
- description: "Time when the event occurred.",
10478
+ description: "Date and time at which the event occurred.",
10563
10479
  format: "date-time",
10564
10480
  type: "string"
10565
10481
  },
@@ -10589,7 +10505,7 @@ var openapi_default = {
10589
10505
  type: "string"
10590
10506
  },
10591
10507
  created_at: {
10592
- description: "Time at which the event was created.",
10508
+ description: "Date and time at which the event was created.",
10593
10509
  format: "date-time",
10594
10510
  type: "string"
10595
10511
  },
@@ -10608,7 +10524,7 @@ var openapi_default = {
10608
10524
  type: "string"
10609
10525
  },
10610
10526
  occurred_at: {
10611
- description: "Time when the event occurred.",
10527
+ description: "Date and time at which the event occurred.",
10612
10528
  format: "date-time",
10613
10529
  type: "string"
10614
10530
  },
@@ -10638,7 +10554,7 @@ var openapi_default = {
10638
10554
  type: "string"
10639
10555
  },
10640
10556
  created_at: {
10641
- description: "Time at which the event was created.",
10557
+ description: "Date and time at which the event was created.",
10642
10558
  format: "date-time",
10643
10559
  type: "string"
10644
10560
  },
@@ -10657,7 +10573,7 @@ var openapi_default = {
10657
10573
  type: "string"
10658
10574
  },
10659
10575
  occurred_at: {
10660
- description: "Time when the event occurred.",
10576
+ description: "Date and time at which the event occurred.",
10661
10577
  format: "date-time",
10662
10578
  type: "string"
10663
10579
  },
@@ -10679,7 +10595,7 @@ var openapi_default = {
10679
10595
  type: "object"
10680
10596
  },
10681
10597
  {
10682
- description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam.",
10598
+ description: "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.",
10683
10599
  properties: {
10684
10600
  connected_account_id: {
10685
10601
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10687,7 +10603,7 @@ var openapi_default = {
10687
10603
  type: "string"
10688
10604
  },
10689
10605
  created_at: {
10690
- description: "Time at which the event was created.",
10606
+ description: "Date and time at which the event was created.",
10691
10607
  format: "date-time",
10692
10608
  type: "string"
10693
10609
  },
@@ -10706,7 +10622,7 @@ var openapi_default = {
10706
10622
  type: "string"
10707
10623
  },
10708
10624
  occurred_at: {
10709
- description: "Time when the event occurred.",
10625
+ description: "Date and time at which the event occurred.",
10710
10626
  format: "date-time",
10711
10627
  type: "string"
10712
10628
  },
@@ -10728,7 +10644,7 @@ var openapi_default = {
10728
10644
  type: "object"
10729
10645
  },
10730
10646
  {
10731
- description: "A device was disconnected from Seam.",
10647
+ description: "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.",
10732
10648
  properties: {
10733
10649
  connected_account_id: {
10734
10650
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10736,7 +10652,7 @@ var openapi_default = {
10736
10652
  type: "string"
10737
10653
  },
10738
10654
  created_at: {
10739
- description: "Time at which the event was created.",
10655
+ description: "Date and time at which the event was created.",
10740
10656
  format: "date-time",
10741
10657
  type: "string"
10742
10658
  },
@@ -10761,7 +10677,7 @@ var openapi_default = {
10761
10677
  },
10762
10678
  event_type: { enum: ["device.disconnected"], type: "string" },
10763
10679
  occurred_at: {
10764
- description: "Time when the event occurred.",
10680
+ description: "Date and time at which the event occurred.",
10765
10681
  format: "date-time",
10766
10682
  type: "string"
10767
10683
  },
@@ -10784,7 +10700,7 @@ var openapi_default = {
10784
10700
  type: "object"
10785
10701
  },
10786
10702
  {
10787
- description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam.",
10703
+ description: "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.",
10788
10704
  properties: {
10789
10705
  connected_account_id: {
10790
10706
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10792,7 +10708,7 @@ var openapi_default = {
10792
10708
  type: "string"
10793
10709
  },
10794
10710
  created_at: {
10795
- description: "Time at which the event was created.",
10711
+ description: "Date and time at which the event was created.",
10796
10712
  format: "date-time",
10797
10713
  type: "string"
10798
10714
  },
@@ -10820,7 +10736,7 @@ var openapi_default = {
10820
10736
  type: "string"
10821
10737
  },
10822
10738
  occurred_at: {
10823
- description: "Time when the event occurred.",
10739
+ description: "Date and time at which the event occurred.",
10824
10740
  format: "date-time",
10825
10741
  type: "string"
10826
10742
  },
@@ -10843,7 +10759,7 @@ var openapi_default = {
10843
10759
  type: "object"
10844
10760
  },
10845
10761
  {
10846
- description: "A device detected that it was tampered with, for example, opened or moved.",
10762
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.",
10847
10763
  properties: {
10848
10764
  connected_account_id: {
10849
10765
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -10851,7 +10767,7 @@ var openapi_default = {
10851
10767
  type: "string"
10852
10768
  },
10853
10769
  created_at: {
10854
- description: "Time at which the event was created.",
10770
+ description: "Date and time at which the event was created.",
10855
10771
  format: "date-time",
10856
10772
  type: "string"
10857
10773
  },
@@ -10867,7 +10783,7 @@ var openapi_default = {
10867
10783
  },
10868
10784
  event_type: { enum: ["device.tampered"], type: "string" },
10869
10785
  occurred_at: {
10870
- description: "Time when the event occurred.",
10786
+ description: "Date and time at which the event occurred.",
10871
10787
  format: "date-time",
10872
10788
  type: "string"
10873
10789
  },
@@ -10889,7 +10805,7 @@ var openapi_default = {
10889
10805
  type: "object"
10890
10806
  },
10891
10807
  {
10892
- description: "A device battery level dropped below the low threshold.",
10808
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) battery level dropped below the low threshold.",
10893
10809
  properties: {
10894
10810
  battery_level: {
10895
10811
  description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
@@ -10904,7 +10820,7 @@ var openapi_default = {
10904
10820
  type: "string"
10905
10821
  },
10906
10822
  created_at: {
10907
- description: "Time at which the event was created.",
10823
+ description: "Date and time at which the event was created.",
10908
10824
  format: "date-time",
10909
10825
  type: "string"
10910
10826
  },
@@ -10920,7 +10836,7 @@ var openapi_default = {
10920
10836
  },
10921
10837
  event_type: { enum: ["device.low_battery"], type: "string" },
10922
10838
  occurred_at: {
10923
- description: "Time when the event occurred.",
10839
+ description: "Date and time at which the event occurred.",
10924
10840
  format: "date-time",
10925
10841
  type: "string"
10926
10842
  },
@@ -10943,7 +10859,7 @@ var openapi_default = {
10943
10859
  type: "object"
10944
10860
  },
10945
10861
  {
10946
- description: "A device battery status changed since the last `battery_status_changed` event.",
10862
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) battery status changed since the last `battery_status_changed` event.",
10947
10863
  properties: {
10948
10864
  battery_level: {
10949
10865
  description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
@@ -10963,7 +10879,7 @@ var openapi_default = {
10963
10879
  type: "string"
10964
10880
  },
10965
10881
  created_at: {
10966
- description: "Time at which the event was created.",
10882
+ description: "Date and time at which the event was created.",
10967
10883
  format: "date-time",
10968
10884
  type: "string"
10969
10885
  },
@@ -10982,7 +10898,7 @@ var openapi_default = {
10982
10898
  type: "string"
10983
10899
  },
10984
10900
  occurred_at: {
10985
- description: "Time when the event occurred.",
10901
+ description: "Date and time at which the event occurred.",
10986
10902
  format: "date-time",
10987
10903
  type: "string"
10988
10904
  },
@@ -11006,7 +10922,7 @@ var openapi_default = {
11006
10922
  type: "object"
11007
10923
  },
11008
10924
  {
11009
- description: "A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
10925
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
11010
10926
  properties: {
11011
10927
  connected_account_id: {
11012
10928
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11014,7 +10930,7 @@ var openapi_default = {
11014
10930
  type: "string"
11015
10931
  },
11016
10932
  created_at: {
11017
- description: "Time at which the event was created.",
10933
+ description: "Date and time at which the event was created.",
11018
10934
  format: "date-time",
11019
10935
  type: "string"
11020
10936
  },
@@ -11030,7 +10946,7 @@ var openapi_default = {
11030
10946
  },
11031
10947
  event_type: { enum: ["device.removed"], type: "string" },
11032
10948
  occurred_at: {
11033
- description: "Time when the event occurred.",
10949
+ description: "Date and time at which the event occurred.",
11034
10950
  format: "date-time",
11035
10951
  type: "string"
11036
10952
  },
@@ -11052,7 +10968,7 @@ var openapi_default = {
11052
10968
  type: "object"
11053
10969
  },
11054
10970
  {
11055
- description: "A device was [deleted](https://docs.seam.co/latest/api/devices/delete).",
10971
+ description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.",
11056
10972
  properties: {
11057
10973
  connected_account_id: {
11058
10974
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11060,7 +10976,7 @@ var openapi_default = {
11060
10976
  type: "string"
11061
10977
  },
11062
10978
  created_at: {
11063
- description: "Time at which the event was created.",
10979
+ description: "Date and time at which the event was created.",
11064
10980
  format: "date-time",
11065
10981
  type: "string"
11066
10982
  },
@@ -11076,7 +10992,7 @@ var openapi_default = {
11076
10992
  },
11077
10993
  event_type: { enum: ["device.deleted"], type: "string" },
11078
10994
  occurred_at: {
11079
- description: "Time when the event occurred.",
10995
+ description: "Date and time at which the event occurred.",
11080
10996
  format: "date-time",
11081
10997
  type: "string"
11082
10998
  },
@@ -11098,7 +11014,7 @@ var openapi_default = {
11098
11014
  type: "object"
11099
11015
  },
11100
11016
  {
11101
- description: "Seam detected that a device is using a third-party integration that will interfere with Seam device management.",
11017
+ description: "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management.",
11102
11018
  properties: {
11103
11019
  connected_account_id: {
11104
11020
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11106,7 +11022,7 @@ var openapi_default = {
11106
11022
  type: "string"
11107
11023
  },
11108
11024
  created_at: {
11109
- description: "Time at which the event was created.",
11025
+ description: "Date and time at which the event was created.",
11110
11026
  format: "date-time",
11111
11027
  type: "string"
11112
11028
  },
@@ -11125,7 +11041,7 @@ var openapi_default = {
11125
11041
  type: "string"
11126
11042
  },
11127
11043
  occurred_at: {
11128
- description: "Time when the event occurred.",
11044
+ description: "Date and time at which the event occurred.",
11129
11045
  format: "date-time",
11130
11046
  type: "string"
11131
11047
  },
@@ -11147,7 +11063,7 @@ var openapi_default = {
11147
11063
  type: "object"
11148
11064
  },
11149
11065
  {
11150
- description: "Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.",
11066
+ description: "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management.",
11151
11067
  properties: {
11152
11068
  connected_account_id: {
11153
11069
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11155,7 +11071,7 @@ var openapi_default = {
11155
11071
  type: "string"
11156
11072
  },
11157
11073
  created_at: {
11158
- description: "Time at which the event was created.",
11074
+ description: "Date and time at which the event was created.",
11159
11075
  format: "date-time",
11160
11076
  type: "string"
11161
11077
  },
@@ -11174,7 +11090,7 @@ var openapi_default = {
11174
11090
  type: "string"
11175
11091
  },
11176
11092
  occurred_at: {
11177
- description: "Time when the event occurred.",
11093
+ description: "Date and time at which the event occurred.",
11178
11094
  format: "date-time",
11179
11095
  type: "string"
11180
11096
  },
@@ -11196,7 +11112,7 @@ var openapi_default = {
11196
11112
  type: "object"
11197
11113
  },
11198
11114
  {
11199
- description: "A Salto device activated privacy mode.",
11115
+ description: "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.",
11200
11116
  properties: {
11201
11117
  connected_account_id: {
11202
11118
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11204,7 +11120,7 @@ var openapi_default = {
11204
11120
  type: "string"
11205
11121
  },
11206
11122
  created_at: {
11207
- description: "Time at which the event was created.",
11123
+ description: "Date and time at which the event was created.",
11208
11124
  format: "date-time",
11209
11125
  type: "string"
11210
11126
  },
@@ -11223,7 +11139,7 @@ var openapi_default = {
11223
11139
  type: "string"
11224
11140
  },
11225
11141
  occurred_at: {
11226
- description: "Time when the event occurred.",
11142
+ description: "Date and time at which the event occurred.",
11227
11143
  format: "date-time",
11228
11144
  type: "string"
11229
11145
  },
@@ -11245,7 +11161,7 @@ var openapi_default = {
11245
11161
  type: "object"
11246
11162
  },
11247
11163
  {
11248
- description: "A Salto device deactivated privacy mode.",
11164
+ description: "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.",
11249
11165
  properties: {
11250
11166
  connected_account_id: {
11251
11167
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11253,7 +11169,7 @@ var openapi_default = {
11253
11169
  type: "string"
11254
11170
  },
11255
11171
  created_at: {
11256
- description: "Time at which the event was created.",
11172
+ description: "Date and time at which the event was created.",
11257
11173
  format: "date-time",
11258
11174
  type: "string"
11259
11175
  },
@@ -11272,7 +11188,7 @@ var openapi_default = {
11272
11188
  type: "string"
11273
11189
  },
11274
11190
  occurred_at: {
11275
- description: "Time when the event occurred.",
11191
+ description: "Date and time at which the event occurred.",
11276
11192
  format: "date-time",
11277
11193
  type: "string"
11278
11194
  },
@@ -11294,7 +11210,7 @@ var openapi_default = {
11294
11210
  type: "object"
11295
11211
  },
11296
11212
  {
11297
- description: "Seam detected a flaky device connection.",
11213
+ description: "Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.",
11298
11214
  properties: {
11299
11215
  connected_account_id: {
11300
11216
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11302,7 +11218,7 @@ var openapi_default = {
11302
11218
  type: "string"
11303
11219
  },
11304
11220
  created_at: {
11305
- description: "Time at which the event was created.",
11221
+ description: "Date and time at which the event was created.",
11306
11222
  format: "date-time",
11307
11223
  type: "string"
11308
11224
  },
@@ -11321,7 +11237,7 @@ var openapi_default = {
11321
11237
  type: "string"
11322
11238
  },
11323
11239
  occurred_at: {
11324
- description: "Time when the event occurred.",
11240
+ description: "Date and time at which the event occurred.",
11325
11241
  format: "date-time",
11326
11242
  type: "string"
11327
11243
  },
@@ -11343,7 +11259,7 @@ var openapi_default = {
11343
11259
  type: "object"
11344
11260
  },
11345
11261
  {
11346
- description: "Seam detected that a previously-flaky device connection stabilized.",
11262
+ description: "Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.",
11347
11263
  properties: {
11348
11264
  connected_account_id: {
11349
11265
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11351,7 +11267,7 @@ var openapi_default = {
11351
11267
  type: "string"
11352
11268
  },
11353
11269
  created_at: {
11354
- description: "Time at which the event was created.",
11270
+ description: "Date and time at which the event was created.",
11355
11271
  format: "date-time",
11356
11272
  type: "string"
11357
11273
  },
@@ -11370,7 +11286,7 @@ var openapi_default = {
11370
11286
  type: "string"
11371
11287
  },
11372
11288
  occurred_at: {
11373
- description: "Time when the event occurred.",
11289
+ description: "Date and time at which the event occurred.",
11374
11290
  format: "date-time",
11375
11291
  type: "string"
11376
11292
  },
@@ -11392,7 +11308,7 @@ var openapi_default = {
11392
11308
  type: "object"
11393
11309
  },
11394
11310
  {
11395
- description: "A third-party subscription is required to use all device features.",
11311
+ description: "A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.",
11396
11312
  properties: {
11397
11313
  connected_account_id: {
11398
11314
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11400,7 +11316,7 @@ var openapi_default = {
11400
11316
  type: "string"
11401
11317
  },
11402
11318
  created_at: {
11403
- description: "Time at which the event was created.",
11319
+ description: "Date and time at which the event was created.",
11404
11320
  format: "date-time",
11405
11321
  type: "string"
11406
11322
  },
@@ -11419,7 +11335,7 @@ var openapi_default = {
11419
11335
  type: "string"
11420
11336
  },
11421
11337
  occurred_at: {
11422
- description: "Time when the event occurred.",
11338
+ description: "Date and time at which the event occurred.",
11423
11339
  format: "date-time",
11424
11340
  type: "string"
11425
11341
  },
@@ -11441,7 +11357,7 @@ var openapi_default = {
11441
11357
  type: "object"
11442
11358
  },
11443
11359
  {
11444
- description: "A third-party subscription is active or no longer required to use all device features.",
11360
+ description: "A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.",
11445
11361
  properties: {
11446
11362
  connected_account_id: {
11447
11363
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11449,7 +11365,7 @@ var openapi_default = {
11449
11365
  type: "string"
11450
11366
  },
11451
11367
  created_at: {
11452
- description: "Time at which the event was created.",
11368
+ description: "Date and time at which the event was created.",
11453
11369
  format: "date-time",
11454
11370
  type: "string"
11455
11371
  },
@@ -11468,7 +11384,7 @@ var openapi_default = {
11468
11384
  type: "string"
11469
11385
  },
11470
11386
  occurred_at: {
11471
- description: "Time when the event occurred.",
11387
+ description: "Date and time at which the event occurred.",
11472
11388
  format: "date-time",
11473
11389
  type: "string"
11474
11390
  },
@@ -11490,7 +11406,7 @@ var openapi_default = {
11490
11406
  type: "object"
11491
11407
  },
11492
11408
  {
11493
- description: "An accessory keypad was connected to a device.",
11409
+ description: "An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).",
11494
11410
  properties: {
11495
11411
  connected_account_id: {
11496
11412
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11498,7 +11414,7 @@ var openapi_default = {
11498
11414
  type: "string"
11499
11415
  },
11500
11416
  created_at: {
11501
- description: "Time at which the event was created.",
11417
+ description: "Date and time at which the event was created.",
11502
11418
  format: "date-time",
11503
11419
  type: "string"
11504
11420
  },
@@ -11517,7 +11433,7 @@ var openapi_default = {
11517
11433
  type: "string"
11518
11434
  },
11519
11435
  occurred_at: {
11520
- description: "Time when the event occurred.",
11436
+ description: "Date and time at which the event occurred.",
11521
11437
  format: "date-time",
11522
11438
  type: "string"
11523
11439
  },
@@ -11539,7 +11455,7 @@ var openapi_default = {
11539
11455
  type: "object"
11540
11456
  },
11541
11457
  {
11542
- description: "An accessory keypad was disconnected from a device.",
11458
+ description: "An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).",
11543
11459
  properties: {
11544
11460
  connected_account_id: {
11545
11461
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11547,7 +11463,7 @@ var openapi_default = {
11547
11463
  type: "string"
11548
11464
  },
11549
11465
  created_at: {
11550
- description: "Time at which the event was created.",
11466
+ description: "Date and time at which the event was created.",
11551
11467
  format: "date-time",
11552
11468
  type: "string"
11553
11469
  },
@@ -11566,7 +11482,7 @@ var openapi_default = {
11566
11482
  type: "string"
11567
11483
  },
11568
11484
  occurred_at: {
11569
- description: "Time when the event occurred.",
11485
+ description: "Date and time at which the event occurred.",
11570
11486
  format: "date-time",
11571
11487
  type: "string"
11572
11488
  },
@@ -11596,7 +11512,7 @@ var openapi_default = {
11596
11512
  type: "string"
11597
11513
  },
11598
11514
  created_at: {
11599
- description: "Time at which the event was created.",
11515
+ description: "Date and time at which the event was created.",
11600
11516
  format: "date-time",
11601
11517
  type: "string"
11602
11518
  },
@@ -11617,8 +11533,7 @@ var openapi_default = {
11617
11533
  minut_metadata: {
11618
11534
  additionalProperties: {},
11619
11535
  description: "Metadata from Minut.",
11620
- type: "object",
11621
- "x-title": "Minut Metadata"
11536
+ type: "object"
11622
11537
  },
11623
11538
  noise_level_decibels: {
11624
11539
  description: "Detected noise level in decibels.",
@@ -11642,11 +11557,10 @@ var openapi_default = {
11642
11557
  noiseaware_metadata: {
11643
11558
  additionalProperties: {},
11644
11559
  description: "Metadata from Noiseaware.",
11645
- type: "object",
11646
- "x-title": "Noiseaware Metadata"
11560
+ type: "object"
11647
11561
  },
11648
11562
  occurred_at: {
11649
- description: "Time when the event occurred.",
11563
+ description: "Date and time at which the event occurred.",
11650
11564
  format: "date-time",
11651
11565
  type: "string"
11652
11566
  },
@@ -11668,7 +11582,7 @@ var openapi_default = {
11668
11582
  type: "object"
11669
11583
  },
11670
11584
  {
11671
- description: "A lock was locked.",
11585
+ description: "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was locked.",
11672
11586
  properties: {
11673
11587
  access_code_id: {
11674
11588
  description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device.",
@@ -11686,7 +11600,7 @@ var openapi_default = {
11686
11600
  type: "string"
11687
11601
  },
11688
11602
  created_at: {
11689
- description: "Time at which the event was created.",
11603
+ description: "Date and time at which the event was created.",
11690
11604
  format: "date-time",
11691
11605
  type: "string"
11692
11606
  },
@@ -11702,12 +11616,12 @@ var openapi_default = {
11702
11616
  },
11703
11617
  event_type: { enum: ["lock.locked"], type: "string" },
11704
11618
  method: {
11705
- description: "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.",
11619
+ description: "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.",
11706
11620
  enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
11707
11621
  type: "string"
11708
11622
  },
11709
11623
  occurred_at: {
11710
- description: "Time when the event occurred.",
11624
+ description: "Date and time at which the event occurred.",
11711
11625
  format: "date-time",
11712
11626
  type: "string"
11713
11627
  },
@@ -11730,7 +11644,7 @@ var openapi_default = {
11730
11644
  type: "object"
11731
11645
  },
11732
11646
  {
11733
- description: "A lock was unlocked.",
11647
+ description: "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked.",
11734
11648
  properties: {
11735
11649
  access_code_id: {
11736
11650
  description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device.",
@@ -11748,7 +11662,7 @@ var openapi_default = {
11748
11662
  type: "string"
11749
11663
  },
11750
11664
  created_at: {
11751
- description: "Time at which the event was created.",
11665
+ description: "Date and time at which the event was created.",
11752
11666
  format: "date-time",
11753
11667
  type: "string"
11754
11668
  },
@@ -11764,12 +11678,12 @@ var openapi_default = {
11764
11678
  },
11765
11679
  event_type: { enum: ["lock.unlocked"], type: "string" },
11766
11680
  method: {
11767
- description: "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.",
11681
+ description: "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.",
11768
11682
  enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
11769
11683
  type: "string"
11770
11684
  },
11771
11685
  occurred_at: {
11772
- description: "Time when the event occurred.",
11686
+ description: "Date and time at which the event occurred.",
11773
11687
  format: "date-time",
11774
11688
  type: "string"
11775
11689
  },
@@ -11792,7 +11706,7 @@ var openapi_default = {
11792
11706
  type: "object"
11793
11707
  },
11794
11708
  {
11795
- description: "The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.",
11709
+ description: "The [lock](https://docs.seam.co/latest/capability-guides/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.",
11796
11710
  properties: {
11797
11711
  access_code_id: {
11798
11712
  description: "ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts.",
@@ -11805,7 +11719,7 @@ var openapi_default = {
11805
11719
  type: "string"
11806
11720
  },
11807
11721
  created_at: {
11808
- description: "Time at which the event was created.",
11722
+ description: "Date and time at which the event was created.",
11809
11723
  format: "date-time",
11810
11724
  type: "string"
11811
11725
  },
@@ -11821,7 +11735,7 @@ var openapi_default = {
11821
11735
  },
11822
11736
  event_type: { enum: ["lock.access_denied"], type: "string" },
11823
11737
  occurred_at: {
11824
- description: "Time when the event occurred.",
11738
+ description: "Date and time at which the event occurred.",
11825
11739
  format: "date-time",
11826
11740
  type: "string"
11827
11741
  },
@@ -11855,7 +11769,7 @@ var openapi_default = {
11855
11769
  type: "string"
11856
11770
  },
11857
11771
  created_at: {
11858
- description: "Time at which the event was created.",
11772
+ description: "Date and time at which the event was created.",
11859
11773
  format: "date-time",
11860
11774
  type: "string"
11861
11775
  },
@@ -11874,11 +11788,11 @@ var openapi_default = {
11874
11788
  type: "string"
11875
11789
  },
11876
11790
  is_fallback_climate_preset: {
11877
- description: "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.",
11791
+ description: "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).",
11878
11792
  type: "boolean"
11879
11793
  },
11880
11794
  occurred_at: {
11881
- description: "Time when the event occurred.",
11795
+ description: "Date and time at which the event occurred.",
11882
11796
  format: "date-time",
11883
11797
  type: "string"
11884
11798
  },
@@ -11909,7 +11823,7 @@ var openapi_default = {
11909
11823
  type: "object"
11910
11824
  },
11911
11825
  {
11912
- description: "A thermostat was adjusted manually.",
11826
+ description: "A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.",
11913
11827
  properties: {
11914
11828
  connected_account_id: {
11915
11829
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -11927,7 +11841,7 @@ var openapi_default = {
11927
11841
  type: "number"
11928
11842
  },
11929
11843
  created_at: {
11930
- description: "Time at which the event was created.",
11844
+ description: "Date and time at which the event was created.",
11931
11845
  format: "date-time",
11932
11846
  type: "string"
11933
11847
  },
@@ -11966,12 +11880,12 @@ var openapi_default = {
11966
11880
  type: "string"
11967
11881
  },
11968
11882
  method: {
11969
- description: "Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.",
11883
+ description: "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).",
11970
11884
  enum: ["seam", "external"],
11971
11885
  type: "string"
11972
11886
  },
11973
11887
  occurred_at: {
11974
- description: "Time when the event occurred.",
11888
+ description: "Date and time at which the event occurred.",
11975
11889
  format: "date-time",
11976
11890
  type: "string"
11977
11891
  },
@@ -11994,7 +11908,7 @@ var openapi_default = {
11994
11908
  type: "object"
11995
11909
  },
11996
11910
  {
11997
- description: "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
11911
+ description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
11998
11912
  properties: {
11999
11913
  connected_account_id: {
12000
11914
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -12002,7 +11916,7 @@ var openapi_default = {
12002
11916
  type: "string"
12003
11917
  },
12004
11918
  created_at: {
12005
- description: "Time at which the event was created.",
11919
+ description: "Date and time at which the event was created.",
12006
11920
  format: "date-time",
12007
11921
  type: "string"
12008
11922
  },
@@ -12033,17 +11947,17 @@ var openapi_default = {
12033
11947
  type: "number"
12034
11948
  },
12035
11949
  occurred_at: {
12036
- description: "Time when the event occurred.",
11950
+ description: "Date and time at which the event occurred.",
12037
11951
  format: "date-time",
12038
11952
  type: "string"
12039
11953
  },
12040
11954
  temperature_celsius: {
12041
- description: "Temperature, in \xB0C, reported by the thermostat.",
11955
+ description: "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
12042
11956
  format: "float",
12043
11957
  type: "number"
12044
11958
  },
12045
11959
  temperature_fahrenheit: {
12046
- description: "Temperature, in \xB0F, reported by the thermostat.",
11960
+ description: "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
12047
11961
  format: "float",
12048
11962
  type: "number"
12049
11963
  },
@@ -12083,7 +11997,7 @@ var openapi_default = {
12083
11997
  type: "object"
12084
11998
  },
12085
11999
  {
12086
- description: "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12000
+ description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
12087
12001
  properties: {
12088
12002
  connected_account_id: {
12089
12003
  description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
@@ -12091,7 +12005,7 @@ var openapi_default = {
12091
12005
  type: "string"
12092
12006
  },
12093
12007
  created_at: {
12094
- description: "Time at which the event was created.",
12008
+ description: "Date and time at which the event was created.",
12095
12009
  format: "date-time",
12096
12010
  type: "string"
12097
12011
  },
@@ -12122,17 +12036,17 @@ var openapi_default = {
12122
12036
  type: "number"
12123
12037
  },
12124
12038
  occurred_at: {
12125
- description: "Time when the event occurred.",
12039
+ description: "Date and time at which the event occurred.",
12126
12040
  format: "date-time",
12127
12041
  type: "string"
12128
12042
  },
12129
12043
  temperature_celsius: {
12130
- description: "Temperature, in \xB0C, reported by the thermostat.",
12044
+ description: "Temperature, in \xB0C, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
12131
12045
  format: "float",
12132
12046
  type: "number"
12133
12047
  },
12134
12048
  temperature_fahrenheit: {
12135
- description: "Temperature, in \xB0F, reported by the thermostat.",
12049
+ description: "Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats).",
12136
12050
  format: "float",
12137
12051
  type: "number"
12138
12052
  },
@@ -12172,18 +12086,17 @@ var openapi_default = {
12172
12086
  type: "object"
12173
12087
  },
12174
12088
  {
12175
- description: "An enrollment automation was deleted.",
12089
+ description: "An [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) was deleted.",
12176
12090
  properties: {
12177
12091
  created_at: {
12178
- description: "Time at which the event was created.",
12092
+ description: "Date and time at which the event was created.",
12179
12093
  format: "date-time",
12180
12094
  type: "string"
12181
12095
  },
12182
12096
  enrollment_automation_id: {
12183
- description: "ID of the enrollment automation.",
12097
+ description: "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).",
12184
12098
  format: "uuid",
12185
- type: "string",
12186
- "x-title": "Enrollment Automation ID"
12099
+ type: "string"
12187
12100
  },
12188
12101
  event_id: {
12189
12102
  description: "ID of the event.",
@@ -12195,7 +12108,7 @@ var openapi_default = {
12195
12108
  type: "string"
12196
12109
  },
12197
12110
  occurred_at: {
12198
- description: "Time when the event occurred.",
12111
+ description: "Date and time at which the event occurred.",
12199
12112
  format: "date-time",
12200
12113
  type: "string"
12201
12114
  },
@@ -12219,15 +12132,14 @@ var openapi_default = {
12219
12132
  description: "A phone device was deactivated.",
12220
12133
  properties: {
12221
12134
  created_at: {
12222
- description: "Time at which the event was created.",
12135
+ description: "Date and time at which the event was created.",
12223
12136
  format: "date-time",
12224
12137
  type: "string"
12225
12138
  },
12226
12139
  device_id: {
12227
- description: "ID of the device.",
12140
+ description: "ID of the [device](https://docs.seam.co/latest/core-concepts/devices).",
12228
12141
  format: "uuid",
12229
- type: "string",
12230
- "x-title": "Device ID"
12142
+ type: "string"
12231
12143
  },
12232
12144
  event_id: {
12233
12145
  description: "ID of the event.",
@@ -12236,7 +12148,7 @@ var openapi_default = {
12236
12148
  },
12237
12149
  event_type: { enum: ["phone.deactivated"], type: "string" },
12238
12150
  occurred_at: {
12239
- description: "Time when the event occurred.",
12151
+ description: "Date and time at which the event occurred.",
12240
12152
  format: "date-time",
12241
12153
  type: "string"
12242
12154
  },