@seamapi/types 1.312.1 → 1.313.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.
- package/dist/connect.cjs +910 -1190
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +733 -787
- package/lib/seam/connect/models/events/common.js +10 -24
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +145 -98
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +37 -139
- package/lib/seam/connect/openapi.js +432 -718
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +696 -648
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/common.ts +12 -24
- package/src/lib/seam/connect/models/events/devices.ts +212 -101
- package/src/lib/seam/connect/openapi.ts +557 -718
- package/src/lib/seam/connect/route-types.ts +696 -648
|
@@ -7070,8 +7070,6 @@ export interface Routes {
|
|
|
7070
7070
|
queryParams: {}
|
|
7071
7071
|
jsonBody: {}
|
|
7072
7072
|
commonParams: {
|
|
7073
|
-
/** ID of the acs_system the encoder belongs to. */
|
|
7074
|
-
acs_system_id: string
|
|
7075
7073
|
/** ID of the acs_encoder to use for the scan. */
|
|
7076
7074
|
acs_encoder_id: string
|
|
7077
7075
|
}
|
|
@@ -14233,13 +14231,13 @@ export interface Routes {
|
|
|
14233
14231
|
event?:
|
|
14234
14232
|
| (
|
|
14235
14233
|
| {
|
|
14236
|
-
/**
|
|
14234
|
+
/** ID of the event. */
|
|
14237
14235
|
event_id: string
|
|
14238
|
-
/**
|
|
14236
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14239
14237
|
workspace_id: string
|
|
14240
|
-
/**
|
|
14238
|
+
/** Time at which the event was created. */
|
|
14241
14239
|
created_at: string
|
|
14242
|
-
/**
|
|
14240
|
+
/** Time when the event occurred. */
|
|
14243
14241
|
occurred_at: string
|
|
14244
14242
|
/** The ID of the access code. */
|
|
14245
14243
|
access_code_id: string
|
|
@@ -14250,13 +14248,13 @@ export interface Routes {
|
|
|
14250
14248
|
event_type: 'access_code.created'
|
|
14251
14249
|
}
|
|
14252
14250
|
| {
|
|
14253
|
-
/**
|
|
14251
|
+
/** ID of the event. */
|
|
14254
14252
|
event_id: string
|
|
14255
|
-
/**
|
|
14253
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14256
14254
|
workspace_id: string
|
|
14257
|
-
/**
|
|
14255
|
+
/** Time at which the event was created. */
|
|
14258
14256
|
created_at: string
|
|
14259
|
-
/**
|
|
14257
|
+
/** Time when the event occurred. */
|
|
14260
14258
|
occurred_at: string
|
|
14261
14259
|
/** The ID of the access code. */
|
|
14262
14260
|
access_code_id: string
|
|
@@ -14267,13 +14265,13 @@ export interface Routes {
|
|
|
14267
14265
|
event_type: 'access_code.changed'
|
|
14268
14266
|
}
|
|
14269
14267
|
| {
|
|
14270
|
-
/**
|
|
14268
|
+
/** ID of the event. */
|
|
14271
14269
|
event_id: string
|
|
14272
|
-
/**
|
|
14270
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14273
14271
|
workspace_id: string
|
|
14274
|
-
/**
|
|
14272
|
+
/** Time at which the event was created. */
|
|
14275
14273
|
created_at: string
|
|
14276
|
-
/**
|
|
14274
|
+
/** Time when the event occurred. */
|
|
14277
14275
|
occurred_at: string
|
|
14278
14276
|
/** The ID of the access code. */
|
|
14279
14277
|
access_code_id: string
|
|
@@ -14286,13 +14284,13 @@ export interface Routes {
|
|
|
14286
14284
|
code: string
|
|
14287
14285
|
}
|
|
14288
14286
|
| {
|
|
14289
|
-
/**
|
|
14287
|
+
/** ID of the event. */
|
|
14290
14288
|
event_id: string
|
|
14291
|
-
/**
|
|
14289
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14292
14290
|
workspace_id: string
|
|
14293
|
-
/**
|
|
14291
|
+
/** Time at which the event was created. */
|
|
14294
14292
|
created_at: string
|
|
14295
|
-
/**
|
|
14293
|
+
/** Time when the event occurred. */
|
|
14296
14294
|
occurred_at: string
|
|
14297
14295
|
/** The ID of the access code. */
|
|
14298
14296
|
access_code_id: string
|
|
@@ -14305,13 +14303,13 @@ export interface Routes {
|
|
|
14305
14303
|
code: string
|
|
14306
14304
|
}
|
|
14307
14305
|
| {
|
|
14308
|
-
/**
|
|
14306
|
+
/** ID of the event. */
|
|
14309
14307
|
event_id: string
|
|
14310
|
-
/**
|
|
14308
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14311
14309
|
workspace_id: string
|
|
14312
|
-
/**
|
|
14310
|
+
/** Time at which the event was created. */
|
|
14313
14311
|
created_at: string
|
|
14314
|
-
/**
|
|
14312
|
+
/** Time when the event occurred. */
|
|
14315
14313
|
occurred_at: string
|
|
14316
14314
|
/** The ID of the access code. */
|
|
14317
14315
|
access_code_id: string
|
|
@@ -14322,13 +14320,13 @@ export interface Routes {
|
|
|
14322
14320
|
event_type: 'access_code.removed_from_device'
|
|
14323
14321
|
}
|
|
14324
14322
|
| {
|
|
14325
|
-
/**
|
|
14323
|
+
/** ID of the event. */
|
|
14326
14324
|
event_id: string
|
|
14327
|
-
/**
|
|
14325
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14328
14326
|
workspace_id: string
|
|
14329
|
-
/**
|
|
14327
|
+
/** Time at which the event was created. */
|
|
14330
14328
|
created_at: string
|
|
14331
|
-
/**
|
|
14329
|
+
/** Time when the event occurred. */
|
|
14332
14330
|
occurred_at: string
|
|
14333
14331
|
/** The ID of the access code. */
|
|
14334
14332
|
access_code_id: string
|
|
@@ -14339,13 +14337,13 @@ export interface Routes {
|
|
|
14339
14337
|
event_type: 'access_code.delay_in_setting_on_device'
|
|
14340
14338
|
}
|
|
14341
14339
|
| {
|
|
14342
|
-
/**
|
|
14340
|
+
/** ID of the event. */
|
|
14343
14341
|
event_id: string
|
|
14344
|
-
/**
|
|
14342
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14345
14343
|
workspace_id: string
|
|
14346
|
-
/**
|
|
14344
|
+
/** Time at which the event was created. */
|
|
14347
14345
|
created_at: string
|
|
14348
|
-
/**
|
|
14346
|
+
/** Time when the event occurred. */
|
|
14349
14347
|
occurred_at: string
|
|
14350
14348
|
/** The ID of the access code. */
|
|
14351
14349
|
access_code_id: string
|
|
@@ -14356,13 +14354,13 @@ export interface Routes {
|
|
|
14356
14354
|
event_type: 'access_code.failed_to_set_on_device'
|
|
14357
14355
|
}
|
|
14358
14356
|
| {
|
|
14359
|
-
/**
|
|
14357
|
+
/** ID of the event. */
|
|
14360
14358
|
event_id: string
|
|
14361
|
-
/**
|
|
14359
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14362
14360
|
workspace_id: string
|
|
14363
|
-
/**
|
|
14361
|
+
/** Time at which the event was created. */
|
|
14364
14362
|
created_at: string
|
|
14365
|
-
/**
|
|
14363
|
+
/** Time when the event occurred. */
|
|
14366
14364
|
occurred_at: string
|
|
14367
14365
|
/** The ID of the access code. */
|
|
14368
14366
|
access_code_id: string
|
|
@@ -14375,13 +14373,13 @@ export interface Routes {
|
|
|
14375
14373
|
code: string | null
|
|
14376
14374
|
}
|
|
14377
14375
|
| {
|
|
14378
|
-
/**
|
|
14376
|
+
/** ID of the event. */
|
|
14379
14377
|
event_id: string
|
|
14380
|
-
/**
|
|
14378
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14381
14379
|
workspace_id: string
|
|
14382
|
-
/**
|
|
14380
|
+
/** Time at which the event was created. */
|
|
14383
14381
|
created_at: string
|
|
14384
|
-
/**
|
|
14382
|
+
/** Time when the event occurred. */
|
|
14385
14383
|
occurred_at: string
|
|
14386
14384
|
/** The ID of the access code. */
|
|
14387
14385
|
access_code_id: string
|
|
@@ -14392,13 +14390,13 @@ export interface Routes {
|
|
|
14392
14390
|
event_type: 'access_code.delay_in_removing_from_device'
|
|
14393
14391
|
}
|
|
14394
14392
|
| {
|
|
14395
|
-
/**
|
|
14393
|
+
/** ID of the event. */
|
|
14396
14394
|
event_id: string
|
|
14397
|
-
/**
|
|
14395
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14398
14396
|
workspace_id: string
|
|
14399
|
-
/**
|
|
14397
|
+
/** Time at which the event was created. */
|
|
14400
14398
|
created_at: string
|
|
14401
|
-
/**
|
|
14399
|
+
/** Time when the event occurred. */
|
|
14402
14400
|
occurred_at: string
|
|
14403
14401
|
/** The ID of the access code. */
|
|
14404
14402
|
access_code_id: string
|
|
@@ -14409,13 +14407,13 @@ export interface Routes {
|
|
|
14409
14407
|
event_type: 'access_code.failed_to_remove_from_device'
|
|
14410
14408
|
}
|
|
14411
14409
|
| {
|
|
14412
|
-
/**
|
|
14410
|
+
/** ID of the event. */
|
|
14413
14411
|
event_id: string
|
|
14414
|
-
/**
|
|
14412
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14415
14413
|
workspace_id: string
|
|
14416
|
-
/**
|
|
14414
|
+
/** Time at which the event was created. */
|
|
14417
14415
|
created_at: string
|
|
14418
|
-
/**
|
|
14416
|
+
/** Time when the event occurred. */
|
|
14419
14417
|
occurred_at: string
|
|
14420
14418
|
/** The ID of the access code. */
|
|
14421
14419
|
access_code_id: string
|
|
@@ -14426,13 +14424,13 @@ export interface Routes {
|
|
|
14426
14424
|
event_type: 'access_code.modified_external_to_seam'
|
|
14427
14425
|
}
|
|
14428
14426
|
| {
|
|
14429
|
-
/**
|
|
14427
|
+
/** ID of the event. */
|
|
14430
14428
|
event_id: string
|
|
14431
|
-
/**
|
|
14429
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14432
14430
|
workspace_id: string
|
|
14433
|
-
/**
|
|
14431
|
+
/** Time at which the event was created. */
|
|
14434
14432
|
created_at: string
|
|
14435
|
-
/**
|
|
14433
|
+
/** Time when the event occurred. */
|
|
14436
14434
|
occurred_at: string
|
|
14437
14435
|
/** The ID of the access code. */
|
|
14438
14436
|
access_code_id: string
|
|
@@ -14443,13 +14441,13 @@ export interface Routes {
|
|
|
14443
14441
|
event_type: 'access_code.deleted_external_to_seam'
|
|
14444
14442
|
}
|
|
14445
14443
|
| {
|
|
14446
|
-
/**
|
|
14444
|
+
/** ID of the event. */
|
|
14447
14445
|
event_id: string
|
|
14448
|
-
/**
|
|
14446
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14449
14447
|
workspace_id: string
|
|
14450
|
-
/**
|
|
14448
|
+
/** Time at which the event was created. */
|
|
14451
14449
|
created_at: string
|
|
14452
|
-
/**
|
|
14450
|
+
/** Time when the event occurred. */
|
|
14453
14451
|
occurred_at: string
|
|
14454
14452
|
/** The ID of the access code. */
|
|
14455
14453
|
access_code_id: string
|
|
@@ -14461,13 +14459,13 @@ export interface Routes {
|
|
|
14461
14459
|
backup_access_code_id: string
|
|
14462
14460
|
}
|
|
14463
14461
|
| {
|
|
14464
|
-
/**
|
|
14462
|
+
/** ID of the event. */
|
|
14465
14463
|
event_id: string
|
|
14466
|
-
/**
|
|
14464
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14467
14465
|
workspace_id: string
|
|
14468
|
-
/**
|
|
14466
|
+
/** Time at which the event was created. */
|
|
14469
14467
|
created_at: string
|
|
14470
|
-
/**
|
|
14468
|
+
/** Time when the event occurred. */
|
|
14471
14469
|
occurred_at: string
|
|
14472
14470
|
/** The ID of the access code. */
|
|
14473
14471
|
access_code_id: string
|
|
@@ -14478,13 +14476,13 @@ export interface Routes {
|
|
|
14478
14476
|
event_type: 'access_code.unmanaged.converted_to_managed'
|
|
14479
14477
|
}
|
|
14480
14478
|
| {
|
|
14481
|
-
/**
|
|
14479
|
+
/** ID of the event. */
|
|
14482
14480
|
event_id: string
|
|
14483
|
-
/**
|
|
14481
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14484
14482
|
workspace_id: string
|
|
14485
|
-
/**
|
|
14483
|
+
/** Time at which the event was created. */
|
|
14486
14484
|
created_at: string
|
|
14487
|
-
/**
|
|
14485
|
+
/** Time when the event occurred. */
|
|
14488
14486
|
occurred_at: string
|
|
14489
14487
|
/** The ID of the access code. */
|
|
14490
14488
|
access_code_id: string
|
|
@@ -14495,13 +14493,13 @@ export interface Routes {
|
|
|
14495
14493
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
14496
14494
|
}
|
|
14497
14495
|
| {
|
|
14498
|
-
/**
|
|
14496
|
+
/** ID of the event. */
|
|
14499
14497
|
event_id: string
|
|
14500
|
-
/**
|
|
14498
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14501
14499
|
workspace_id: string
|
|
14502
|
-
/**
|
|
14500
|
+
/** Time at which the event was created. */
|
|
14503
14501
|
created_at: string
|
|
14504
|
-
/**
|
|
14502
|
+
/** Time when the event occurred. */
|
|
14505
14503
|
occurred_at: string
|
|
14506
14504
|
/** The ID of the access code. */
|
|
14507
14505
|
access_code_id: string
|
|
@@ -14512,13 +14510,13 @@ export interface Routes {
|
|
|
14512
14510
|
event_type: 'access_code.unmanaged.created'
|
|
14513
14511
|
}
|
|
14514
14512
|
| {
|
|
14515
|
-
/**
|
|
14513
|
+
/** ID of the event. */
|
|
14516
14514
|
event_id: string
|
|
14517
|
-
/**
|
|
14515
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14518
14516
|
workspace_id: string
|
|
14519
|
-
/**
|
|
14517
|
+
/** Time at which the event was created. */
|
|
14520
14518
|
created_at: string
|
|
14521
|
-
/**
|
|
14519
|
+
/** Time when the event occurred. */
|
|
14522
14520
|
occurred_at: string
|
|
14523
14521
|
/** The ID of the access code. */
|
|
14524
14522
|
access_code_id: string
|
|
@@ -14529,13 +14527,13 @@ export interface Routes {
|
|
|
14529
14527
|
event_type: 'access_code.unmanaged.removed'
|
|
14530
14528
|
}
|
|
14531
14529
|
| {
|
|
14532
|
-
/**
|
|
14530
|
+
/** ID of the event. */
|
|
14533
14531
|
event_id: string
|
|
14534
|
-
/**
|
|
14532
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14535
14533
|
workspace_id: string
|
|
14536
|
-
/**
|
|
14534
|
+
/** Time at which the event was created. */
|
|
14537
14535
|
created_at: string
|
|
14538
|
-
/**
|
|
14536
|
+
/** Time when the event occurred. */
|
|
14539
14537
|
occurred_at: string
|
|
14540
14538
|
/** ID of the connected account.
|
|
14541
14539
|
* @deprecated Will be removed. */
|
|
@@ -14545,13 +14543,13 @@ export interface Routes {
|
|
|
14545
14543
|
event_type: 'acs_system.connected'
|
|
14546
14544
|
}
|
|
14547
14545
|
| {
|
|
14548
|
-
/**
|
|
14546
|
+
/** ID of the event. */
|
|
14549
14547
|
event_id: string
|
|
14550
|
-
/**
|
|
14548
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14551
14549
|
workspace_id: string
|
|
14552
|
-
/**
|
|
14550
|
+
/** Time at which the event was created. */
|
|
14553
14551
|
created_at: string
|
|
14554
|
-
/**
|
|
14552
|
+
/** Time when the event occurred. */
|
|
14555
14553
|
occurred_at: string
|
|
14556
14554
|
/** ID of the connected account.
|
|
14557
14555
|
* @deprecated Will be removed. */
|
|
@@ -14561,13 +14559,13 @@ export interface Routes {
|
|
|
14561
14559
|
event_type: 'acs_system.added'
|
|
14562
14560
|
}
|
|
14563
14561
|
| {
|
|
14564
|
-
/**
|
|
14562
|
+
/** ID of the event. */
|
|
14565
14563
|
event_id: string
|
|
14566
|
-
/**
|
|
14564
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14567
14565
|
workspace_id: string
|
|
14568
|
-
/**
|
|
14566
|
+
/** Time at which the event was created. */
|
|
14569
14567
|
created_at: string
|
|
14570
|
-
/**
|
|
14568
|
+
/** Time when the event occurred. */
|
|
14571
14569
|
occurred_at: string
|
|
14572
14570
|
/** ID of the connected account.
|
|
14573
14571
|
* @deprecated Will be removed. */
|
|
@@ -14577,13 +14575,13 @@ export interface Routes {
|
|
|
14577
14575
|
event_type: 'acs_system.disconnected'
|
|
14578
14576
|
}
|
|
14579
14577
|
| {
|
|
14580
|
-
/**
|
|
14578
|
+
/** ID of the event. */
|
|
14581
14579
|
event_id: string
|
|
14582
|
-
/**
|
|
14580
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14583
14581
|
workspace_id: string
|
|
14584
|
-
/**
|
|
14582
|
+
/** Time at which the event was created. */
|
|
14585
14583
|
created_at: string
|
|
14586
|
-
/**
|
|
14584
|
+
/** Time when the event occurred. */
|
|
14587
14585
|
occurred_at: string
|
|
14588
14586
|
/** ID of the connected account.
|
|
14589
14587
|
* @deprecated Will be removed. */
|
|
@@ -14594,13 +14592,13 @@ export interface Routes {
|
|
|
14594
14592
|
event_type: 'acs_credential.deleted'
|
|
14595
14593
|
}
|
|
14596
14594
|
| {
|
|
14597
|
-
/**
|
|
14595
|
+
/** ID of the event. */
|
|
14598
14596
|
event_id: string
|
|
14599
|
-
/**
|
|
14597
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14600
14598
|
workspace_id: string
|
|
14601
|
-
/**
|
|
14599
|
+
/** Time at which the event was created. */
|
|
14602
14600
|
created_at: string
|
|
14603
|
-
/**
|
|
14601
|
+
/** Time when the event occurred. */
|
|
14604
14602
|
occurred_at: string
|
|
14605
14603
|
/** ID of the connected account.
|
|
14606
14604
|
* @deprecated Will be removed. */
|
|
@@ -14611,13 +14609,13 @@ export interface Routes {
|
|
|
14611
14609
|
event_type: 'acs_credential.issued'
|
|
14612
14610
|
}
|
|
14613
14611
|
| {
|
|
14614
|
-
/**
|
|
14612
|
+
/** ID of the event. */
|
|
14615
14613
|
event_id: string
|
|
14616
|
-
/**
|
|
14614
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14617
14615
|
workspace_id: string
|
|
14618
|
-
/**
|
|
14616
|
+
/** Time at which the event was created. */
|
|
14619
14617
|
created_at: string
|
|
14620
|
-
/**
|
|
14618
|
+
/** Time when the event occurred. */
|
|
14621
14619
|
occurred_at: string
|
|
14622
14620
|
/** ID of the connected account.
|
|
14623
14621
|
* @deprecated Will be removed. */
|
|
@@ -14628,13 +14626,13 @@ export interface Routes {
|
|
|
14628
14626
|
event_type: 'acs_user.deleted'
|
|
14629
14627
|
}
|
|
14630
14628
|
| {
|
|
14631
|
-
/**
|
|
14629
|
+
/** ID of the event. */
|
|
14632
14630
|
event_id: string
|
|
14633
|
-
/**
|
|
14631
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14634
14632
|
workspace_id: string
|
|
14635
|
-
/**
|
|
14633
|
+
/** Time at which the event was created. */
|
|
14636
14634
|
created_at: string
|
|
14637
|
-
/**
|
|
14635
|
+
/** Time when the event occurred. */
|
|
14638
14636
|
occurred_at: string
|
|
14639
14637
|
/** ID of the connected account.
|
|
14640
14638
|
* @deprecated Will be removed. */
|
|
@@ -14646,13 +14644,13 @@ export interface Routes {
|
|
|
14646
14644
|
event_type: 'acs_encoder.added'
|
|
14647
14645
|
}
|
|
14648
14646
|
| {
|
|
14649
|
-
/**
|
|
14647
|
+
/** ID of the event. */
|
|
14650
14648
|
event_id: string
|
|
14651
|
-
/**
|
|
14649
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14652
14650
|
workspace_id: string
|
|
14653
|
-
/**
|
|
14651
|
+
/** Time at which the event was created. */
|
|
14654
14652
|
created_at: string
|
|
14655
|
-
/**
|
|
14653
|
+
/** Time when the event occurred. */
|
|
14656
14654
|
occurred_at: string
|
|
14657
14655
|
/** ID of the connected account.
|
|
14658
14656
|
* @deprecated Will be removed. */
|
|
@@ -14664,26 +14662,26 @@ export interface Routes {
|
|
|
14664
14662
|
event_type: 'acs_encoder.removed'
|
|
14665
14663
|
}
|
|
14666
14664
|
| {
|
|
14667
|
-
/**
|
|
14665
|
+
/** ID of the event. */
|
|
14668
14666
|
event_id: string
|
|
14669
|
-
/**
|
|
14667
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14670
14668
|
workspace_id: string
|
|
14671
|
-
/**
|
|
14669
|
+
/** Time at which the event was created. */
|
|
14672
14670
|
created_at: string
|
|
14673
|
-
/**
|
|
14671
|
+
/** Time when the event occurred. */
|
|
14674
14672
|
occurred_at: string
|
|
14675
14673
|
/** ID of the client session. */
|
|
14676
14674
|
client_session_id: string
|
|
14677
14675
|
event_type: 'client_session.deleted'
|
|
14678
14676
|
}
|
|
14679
14677
|
| {
|
|
14680
|
-
/**
|
|
14678
|
+
/** ID of the event. */
|
|
14681
14679
|
event_id: string
|
|
14682
|
-
/**
|
|
14680
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14683
14681
|
workspace_id: string
|
|
14684
|
-
/**
|
|
14682
|
+
/** Time at which the event was created. */
|
|
14685
14683
|
created_at: string
|
|
14686
|
-
/**
|
|
14684
|
+
/** Time when the event occurred. */
|
|
14687
14685
|
occurred_at: string
|
|
14688
14686
|
/** ID of the connected account. */
|
|
14689
14687
|
connected_account_id: string
|
|
@@ -14692,13 +14690,13 @@ export interface Routes {
|
|
|
14692
14690
|
connect_webview_id: string
|
|
14693
14691
|
}
|
|
14694
14692
|
| {
|
|
14695
|
-
/**
|
|
14693
|
+
/** ID of the event. */
|
|
14696
14694
|
event_id: string
|
|
14697
|
-
/**
|
|
14695
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14698
14696
|
workspace_id: string
|
|
14699
|
-
/**
|
|
14697
|
+
/** Time at which the event was created. */
|
|
14700
14698
|
created_at: string
|
|
14701
|
-
/**
|
|
14699
|
+
/** Time when the event occurred. */
|
|
14702
14700
|
occurred_at: string
|
|
14703
14701
|
/** ID of the connected account. */
|
|
14704
14702
|
connected_account_id: string
|
|
@@ -14707,13 +14705,13 @@ export interface Routes {
|
|
|
14707
14705
|
connect_webview_id: string
|
|
14708
14706
|
}
|
|
14709
14707
|
| {
|
|
14710
|
-
/**
|
|
14708
|
+
/** ID of the event. */
|
|
14711
14709
|
event_id: string
|
|
14712
|
-
/**
|
|
14710
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14713
14711
|
workspace_id: string
|
|
14714
|
-
/**
|
|
14712
|
+
/** Time at which the event was created. */
|
|
14715
14713
|
created_at: string
|
|
14716
|
-
/**
|
|
14714
|
+
/** Time when the event occurred. */
|
|
14717
14715
|
occurred_at: string
|
|
14718
14716
|
/** ID of the connected account. */
|
|
14719
14717
|
connected_account_id: string
|
|
@@ -14722,65 +14720,65 @@ export interface Routes {
|
|
|
14722
14720
|
connect_webview_id: string
|
|
14723
14721
|
}
|
|
14724
14722
|
| {
|
|
14725
|
-
/**
|
|
14723
|
+
/** ID of the event. */
|
|
14726
14724
|
event_id: string
|
|
14727
|
-
/**
|
|
14725
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14728
14726
|
workspace_id: string
|
|
14729
|
-
/**
|
|
14727
|
+
/** Time at which the event was created. */
|
|
14730
14728
|
created_at: string
|
|
14731
|
-
/**
|
|
14729
|
+
/** Time when the event occurred. */
|
|
14732
14730
|
occurred_at: string
|
|
14733
14731
|
/** ID of the connected account. */
|
|
14734
14732
|
connected_account_id: string
|
|
14735
14733
|
event_type: 'connected_account.disconnected'
|
|
14736
14734
|
}
|
|
14737
14735
|
| {
|
|
14738
|
-
/**
|
|
14736
|
+
/** ID of the event. */
|
|
14739
14737
|
event_id: string
|
|
14740
|
-
/**
|
|
14738
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14741
14739
|
workspace_id: string
|
|
14742
|
-
/**
|
|
14740
|
+
/** Time at which the event was created. */
|
|
14743
14741
|
created_at: string
|
|
14744
|
-
/**
|
|
14742
|
+
/** Time when the event occurred. */
|
|
14745
14743
|
occurred_at: string
|
|
14746
14744
|
/** ID of the connected account. */
|
|
14747
14745
|
connected_account_id: string
|
|
14748
14746
|
event_type: 'connected_account.completed_first_sync'
|
|
14749
14747
|
}
|
|
14750
14748
|
| {
|
|
14751
|
-
/**
|
|
14749
|
+
/** ID of the event. */
|
|
14752
14750
|
event_id: string
|
|
14753
|
-
/**
|
|
14751
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14754
14752
|
workspace_id: string
|
|
14755
|
-
/**
|
|
14753
|
+
/** Time at which the event was created. */
|
|
14756
14754
|
created_at: string
|
|
14757
|
-
/**
|
|
14755
|
+
/** Time when the event occurred. */
|
|
14758
14756
|
occurred_at: string
|
|
14759
14757
|
/** ID of the connected account. */
|
|
14760
14758
|
connected_account_id: string
|
|
14761
14759
|
event_type: 'connected_account.deleted'
|
|
14762
14760
|
}
|
|
14763
14761
|
| {
|
|
14764
|
-
/**
|
|
14762
|
+
/** ID of the event. */
|
|
14765
14763
|
event_id: string
|
|
14766
|
-
/**
|
|
14764
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14767
14765
|
workspace_id: string
|
|
14768
|
-
/**
|
|
14766
|
+
/** Time at which the event was created. */
|
|
14769
14767
|
created_at: string
|
|
14770
|
-
/**
|
|
14768
|
+
/** Time when the event occurred. */
|
|
14771
14769
|
occurred_at: string
|
|
14772
14770
|
/** ID of the connected account. */
|
|
14773
14771
|
connected_account_id: string
|
|
14774
14772
|
event_type: 'connected_account.completed_first_sync_after_reconnection'
|
|
14775
14773
|
}
|
|
14776
14774
|
| {
|
|
14777
|
-
/**
|
|
14775
|
+
/** ID of the event. */
|
|
14778
14776
|
event_id: string
|
|
14779
|
-
/**
|
|
14777
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14780
14778
|
workspace_id: string
|
|
14781
|
-
/**
|
|
14779
|
+
/** Time at which the event was created. */
|
|
14782
14780
|
created_at: string
|
|
14783
|
-
/**
|
|
14781
|
+
/** Time when the event occurred. */
|
|
14784
14782
|
occurred_at: string
|
|
14785
14783
|
/** The ID of the action attempt. */
|
|
14786
14784
|
action_attempt_id: string
|
|
@@ -14791,13 +14789,13 @@ export interface Routes {
|
|
|
14791
14789
|
event_type: 'action_attempt.lock_door.succeeded'
|
|
14792
14790
|
}
|
|
14793
14791
|
| {
|
|
14794
|
-
/**
|
|
14792
|
+
/** ID of the event. */
|
|
14795
14793
|
event_id: string
|
|
14796
|
-
/**
|
|
14794
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14797
14795
|
workspace_id: string
|
|
14798
|
-
/**
|
|
14796
|
+
/** Time at which the event was created. */
|
|
14799
14797
|
created_at: string
|
|
14800
|
-
/**
|
|
14798
|
+
/** Time when the event occurred. */
|
|
14801
14799
|
occurred_at: string
|
|
14802
14800
|
/** The ID of the action attempt. */
|
|
14803
14801
|
action_attempt_id: string
|
|
@@ -14808,13 +14806,13 @@ export interface Routes {
|
|
|
14808
14806
|
event_type: 'action_attempt.lock_door.failed'
|
|
14809
14807
|
}
|
|
14810
14808
|
| {
|
|
14811
|
-
/**
|
|
14809
|
+
/** ID of the event. */
|
|
14812
14810
|
event_id: string
|
|
14813
|
-
/**
|
|
14811
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14814
14812
|
workspace_id: string
|
|
14815
|
-
/**
|
|
14813
|
+
/** Time at which the event was created. */
|
|
14816
14814
|
created_at: string
|
|
14817
|
-
/**
|
|
14815
|
+
/** Time when the event occurred. */
|
|
14818
14816
|
occurred_at: string
|
|
14819
14817
|
/** The ID of the action attempt. */
|
|
14820
14818
|
action_attempt_id: string
|
|
@@ -14825,13 +14823,13 @@ export interface Routes {
|
|
|
14825
14823
|
event_type: 'action_attempt.unlock_door.succeeded'
|
|
14826
14824
|
}
|
|
14827
14825
|
| {
|
|
14828
|
-
/**
|
|
14826
|
+
/** ID of the event. */
|
|
14829
14827
|
event_id: string
|
|
14830
|
-
/**
|
|
14828
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14831
14829
|
workspace_id: string
|
|
14832
|
-
/**
|
|
14830
|
+
/** Time at which the event was created. */
|
|
14833
14831
|
created_at: string
|
|
14834
|
-
/**
|
|
14832
|
+
/** Time when the event occurred. */
|
|
14835
14833
|
occurred_at: string
|
|
14836
14834
|
/** The ID of the action attempt. */
|
|
14837
14835
|
action_attempt_id: string
|
|
@@ -14842,13 +14840,13 @@ export interface Routes {
|
|
|
14842
14840
|
event_type: 'action_attempt.unlock_door.failed'
|
|
14843
14841
|
}
|
|
14844
14842
|
| {
|
|
14845
|
-
/**
|
|
14843
|
+
/** ID of the event. */
|
|
14846
14844
|
event_id: string
|
|
14847
|
-
/**
|
|
14845
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14848
14846
|
workspace_id: string
|
|
14849
|
-
/**
|
|
14847
|
+
/** Time at which the event was created. */
|
|
14850
14848
|
created_at: string
|
|
14851
|
-
/**
|
|
14849
|
+
/** Time when the event occurred. */
|
|
14852
14850
|
occurred_at: string
|
|
14853
14851
|
/** ID of the connect webview. */
|
|
14854
14852
|
connect_webview_id: string
|
|
@@ -14857,404 +14855,410 @@ export interface Routes {
|
|
|
14857
14855
|
connected_account_id: string
|
|
14858
14856
|
}
|
|
14859
14857
|
| {
|
|
14860
|
-
/**
|
|
14858
|
+
/** ID of the event. */
|
|
14861
14859
|
event_id: string
|
|
14862
|
-
/**
|
|
14860
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14863
14861
|
workspace_id: string
|
|
14864
|
-
/**
|
|
14862
|
+
/** Time at which the event was created. */
|
|
14865
14863
|
created_at: string
|
|
14866
|
-
/**
|
|
14864
|
+
/** Time when the event occurred. */
|
|
14867
14865
|
occurred_at: string
|
|
14868
14866
|
/** ID of the connect webview. */
|
|
14869
14867
|
connect_webview_id: string
|
|
14870
14868
|
event_type: 'connect_webview.login_failed'
|
|
14871
14869
|
}
|
|
14872
14870
|
| {
|
|
14873
|
-
/**
|
|
14871
|
+
/** ID of the event. */
|
|
14874
14872
|
event_id: string
|
|
14875
|
-
/**
|
|
14873
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14876
14874
|
workspace_id: string
|
|
14877
|
-
/**
|
|
14875
|
+
/** Time at which the event was created. */
|
|
14878
14876
|
created_at: string
|
|
14879
|
-
/**
|
|
14877
|
+
/** Time when the event occurred. */
|
|
14880
14878
|
occurred_at: string
|
|
14881
14879
|
/** ID of the device. */
|
|
14882
14880
|
device_id: string
|
|
14883
|
-
/** ID of the connected account. */
|
|
14881
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14884
14882
|
connected_account_id: string
|
|
14885
14883
|
event_type: 'device.connected'
|
|
14886
14884
|
}
|
|
14887
14885
|
| {
|
|
14888
|
-
/**
|
|
14886
|
+
/** ID of the event. */
|
|
14889
14887
|
event_id: string
|
|
14890
|
-
/**
|
|
14888
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14891
14889
|
workspace_id: string
|
|
14892
|
-
/**
|
|
14890
|
+
/** Time at which the event was created. */
|
|
14893
14891
|
created_at: string
|
|
14894
|
-
/**
|
|
14892
|
+
/** Time when the event occurred. */
|
|
14895
14893
|
occurred_at: string
|
|
14896
14894
|
/** ID of the device. */
|
|
14897
14895
|
device_id: string
|
|
14898
|
-
/** ID of the connected account. */
|
|
14896
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14899
14897
|
connected_account_id: string
|
|
14900
14898
|
event_type: 'device.added'
|
|
14901
14899
|
}
|
|
14902
14900
|
| {
|
|
14903
|
-
/**
|
|
14901
|
+
/** ID of the event. */
|
|
14904
14902
|
event_id: string
|
|
14905
|
-
/**
|
|
14903
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14906
14904
|
workspace_id: string
|
|
14907
|
-
/**
|
|
14905
|
+
/** Time at which the event was created. */
|
|
14908
14906
|
created_at: string
|
|
14909
|
-
/**
|
|
14907
|
+
/** Time when the event occurred. */
|
|
14910
14908
|
occurred_at: string
|
|
14911
14909
|
/** ID of the device. */
|
|
14912
14910
|
device_id: string
|
|
14913
|
-
/** ID of the connected account. */
|
|
14911
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14914
14912
|
connected_account_id: string
|
|
14915
14913
|
event_type: 'device.converted_to_unmanaged'
|
|
14916
14914
|
}
|
|
14917
14915
|
| {
|
|
14918
|
-
/**
|
|
14916
|
+
/** ID of the event. */
|
|
14919
14917
|
event_id: string
|
|
14920
|
-
/**
|
|
14918
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14921
14919
|
workspace_id: string
|
|
14922
|
-
/**
|
|
14920
|
+
/** Time at which the event was created. */
|
|
14923
14921
|
created_at: string
|
|
14924
|
-
/**
|
|
14922
|
+
/** Time when the event occurred. */
|
|
14925
14923
|
occurred_at: string
|
|
14926
14924
|
/** ID of the device. */
|
|
14927
14925
|
device_id: string
|
|
14928
|
-
/** ID of the connected account. */
|
|
14926
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14929
14927
|
connected_account_id: string
|
|
14930
14928
|
event_type: 'device.unmanaged.converted_to_managed'
|
|
14931
14929
|
}
|
|
14932
14930
|
| {
|
|
14933
|
-
/**
|
|
14931
|
+
/** ID of the event. */
|
|
14934
14932
|
event_id: string
|
|
14935
|
-
/**
|
|
14933
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14936
14934
|
workspace_id: string
|
|
14937
|
-
/**
|
|
14935
|
+
/** Time at which the event was created. */
|
|
14938
14936
|
created_at: string
|
|
14939
|
-
/**
|
|
14937
|
+
/** Time when the event occurred. */
|
|
14940
14938
|
occurred_at: string
|
|
14941
14939
|
/** ID of the device. */
|
|
14942
14940
|
device_id: string
|
|
14943
|
-
/** ID of the connected account. */
|
|
14941
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14944
14942
|
connected_account_id: string
|
|
14945
14943
|
event_type: 'device.unmanaged.connected'
|
|
14946
14944
|
}
|
|
14947
14945
|
| {
|
|
14948
|
-
/**
|
|
14946
|
+
/** ID of the event. */
|
|
14949
14947
|
event_id: string
|
|
14950
|
-
/**
|
|
14948
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14951
14949
|
workspace_id: string
|
|
14952
|
-
/**
|
|
14950
|
+
/** Time at which the event was created. */
|
|
14953
14951
|
created_at: string
|
|
14954
|
-
/**
|
|
14952
|
+
/** Time when the event occurred. */
|
|
14955
14953
|
occurred_at: string
|
|
14956
14954
|
/** ID of the device. */
|
|
14957
14955
|
device_id: string
|
|
14958
|
-
/** ID of the connected account. */
|
|
14956
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14959
14957
|
connected_account_id: string
|
|
14960
14958
|
event_type: 'device.disconnected'
|
|
14961
|
-
/**
|
|
14959
|
+
/** Error code associated with the disconnection event, if any. */
|
|
14962
14960
|
error_code:
|
|
14963
14961
|
| 'account_disconnected'
|
|
14964
14962
|
| 'hub_disconnected'
|
|
14965
14963
|
| 'device_disconnected'
|
|
14966
14964
|
}
|
|
14967
14965
|
| {
|
|
14968
|
-
/**
|
|
14966
|
+
/** ID of the event. */
|
|
14969
14967
|
event_id: string
|
|
14970
|
-
/**
|
|
14968
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14971
14969
|
workspace_id: string
|
|
14972
|
-
/**
|
|
14970
|
+
/** Time at which the event was created. */
|
|
14973
14971
|
created_at: string
|
|
14974
|
-
/**
|
|
14972
|
+
/** Time when the event occurred. */
|
|
14975
14973
|
occurred_at: string
|
|
14976
14974
|
/** ID of the device. */
|
|
14977
14975
|
device_id: string
|
|
14978
|
-
/** ID of the connected account. */
|
|
14976
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14979
14977
|
connected_account_id: string
|
|
14980
14978
|
event_type: 'device.unmanaged.disconnected'
|
|
14981
|
-
/**
|
|
14979
|
+
/** Error code associated with the disconnection event, if any. */
|
|
14982
14980
|
error_code:
|
|
14983
14981
|
| 'account_disconnected'
|
|
14984
14982
|
| 'hub_disconnected'
|
|
14985
14983
|
| 'device_disconnected'
|
|
14986
14984
|
}
|
|
14987
14985
|
| {
|
|
14988
|
-
/**
|
|
14986
|
+
/** ID of the event. */
|
|
14989
14987
|
event_id: string
|
|
14990
|
-
/**
|
|
14988
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
14991
14989
|
workspace_id: string
|
|
14992
|
-
/**
|
|
14990
|
+
/** Time at which the event was created. */
|
|
14993
14991
|
created_at: string
|
|
14994
|
-
/**
|
|
14992
|
+
/** Time when the event occurred. */
|
|
14995
14993
|
occurred_at: string
|
|
14996
14994
|
/** ID of the device. */
|
|
14997
14995
|
device_id: string
|
|
14998
|
-
/** ID of the connected account. */
|
|
14996
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
14999
14997
|
connected_account_id: string
|
|
15000
14998
|
event_type: 'device.tampered'
|
|
15001
14999
|
}
|
|
15002
15000
|
| {
|
|
15003
|
-
/**
|
|
15001
|
+
/** ID of the event. */
|
|
15004
15002
|
event_id: string
|
|
15005
|
-
/**
|
|
15003
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15006
15004
|
workspace_id: string
|
|
15007
|
-
/**
|
|
15005
|
+
/** Time at which the event was created. */
|
|
15008
15006
|
created_at: string
|
|
15009
|
-
/**
|
|
15007
|
+
/** Time when the event occurred. */
|
|
15010
15008
|
occurred_at: string
|
|
15011
15009
|
/** ID of the device. */
|
|
15012
15010
|
device_id: string
|
|
15013
|
-
/** ID of the connected account. */
|
|
15011
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15014
15012
|
connected_account_id: string
|
|
15015
15013
|
event_type: 'device.low_battery'
|
|
15016
|
-
/**
|
|
15014
|
+
/** Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device. */
|
|
15017
15015
|
battery_level: number
|
|
15018
15016
|
}
|
|
15019
15017
|
| {
|
|
15020
|
-
/**
|
|
15018
|
+
/** ID of the event. */
|
|
15021
15019
|
event_id: string
|
|
15022
|
-
/**
|
|
15020
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15023
15021
|
workspace_id: string
|
|
15024
|
-
/**
|
|
15022
|
+
/** Time at which the event was created. */
|
|
15025
15023
|
created_at: string
|
|
15026
|
-
/**
|
|
15024
|
+
/** Time when the event occurred. */
|
|
15027
15025
|
occurred_at: string
|
|
15028
15026
|
/** ID of the device. */
|
|
15029
15027
|
device_id: string
|
|
15030
|
-
/** ID of the connected account. */
|
|
15028
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15031
15029
|
connected_account_id: string
|
|
15032
15030
|
event_type: 'device.battery_status_changed'
|
|
15033
|
-
/**
|
|
15031
|
+
/** Battery status of the device, calculated from the numeric `battery_level` value. */
|
|
15034
15032
|
battery_status: 'critical' | 'low' | 'good' | 'full'
|
|
15035
|
-
/**
|
|
15033
|
+
/** Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device. */
|
|
15036
15034
|
battery_level: number
|
|
15037
15035
|
}
|
|
15038
15036
|
| {
|
|
15039
|
-
/**
|
|
15037
|
+
/** ID of the event. */
|
|
15040
15038
|
event_id: string
|
|
15041
|
-
/**
|
|
15039
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15042
15040
|
workspace_id: string
|
|
15043
|
-
/**
|
|
15041
|
+
/** Time at which the event was created. */
|
|
15044
15042
|
created_at: string
|
|
15045
|
-
/**
|
|
15043
|
+
/** Time when the event occurred. */
|
|
15046
15044
|
occurred_at: string
|
|
15047
15045
|
/** ID of the device. */
|
|
15048
15046
|
device_id: string
|
|
15049
|
-
/** ID of the connected account. */
|
|
15047
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15050
15048
|
connected_account_id: string
|
|
15051
15049
|
event_type: 'device.removed'
|
|
15052
15050
|
}
|
|
15053
15051
|
| {
|
|
15054
|
-
/**
|
|
15052
|
+
/** ID of the event. */
|
|
15055
15053
|
event_id: string
|
|
15056
|
-
/**
|
|
15054
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15057
15055
|
workspace_id: string
|
|
15058
|
-
/**
|
|
15056
|
+
/** Time at which the event was created. */
|
|
15059
15057
|
created_at: string
|
|
15060
|
-
/**
|
|
15058
|
+
/** Time when the event occurred. */
|
|
15061
15059
|
occurred_at: string
|
|
15062
15060
|
/** ID of the device. */
|
|
15063
15061
|
device_id: string
|
|
15064
|
-
/** ID of the connected account. */
|
|
15062
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15065
15063
|
connected_account_id: string
|
|
15066
15064
|
event_type: 'device.deleted'
|
|
15067
15065
|
}
|
|
15068
15066
|
| {
|
|
15069
|
-
/**
|
|
15067
|
+
/** ID of the event. */
|
|
15070
15068
|
event_id: string
|
|
15071
|
-
/**
|
|
15069
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15072
15070
|
workspace_id: string
|
|
15073
|
-
/**
|
|
15071
|
+
/** Time at which the event was created. */
|
|
15074
15072
|
created_at: string
|
|
15075
|
-
/**
|
|
15073
|
+
/** Time when the event occurred. */
|
|
15076
15074
|
occurred_at: string
|
|
15077
15075
|
/** ID of the device. */
|
|
15078
15076
|
device_id: string
|
|
15079
|
-
/** ID of the connected account. */
|
|
15077
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15080
15078
|
connected_account_id: string
|
|
15081
15079
|
event_type: 'device.third_party_integration_detected'
|
|
15082
15080
|
}
|
|
15083
15081
|
| {
|
|
15084
|
-
/**
|
|
15082
|
+
/** ID of the event. */
|
|
15085
15083
|
event_id: string
|
|
15086
|
-
/**
|
|
15084
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15087
15085
|
workspace_id: string
|
|
15088
|
-
/**
|
|
15086
|
+
/** Time at which the event was created. */
|
|
15089
15087
|
created_at: string
|
|
15090
|
-
/**
|
|
15088
|
+
/** Time when the event occurred. */
|
|
15091
15089
|
occurred_at: string
|
|
15092
15090
|
/** ID of the device. */
|
|
15093
15091
|
device_id: string
|
|
15094
|
-
/** ID of the connected account. */
|
|
15092
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15095
15093
|
connected_account_id: string
|
|
15096
15094
|
event_type: 'device.third_party_integration_no_longer_detected'
|
|
15097
15095
|
}
|
|
15098
15096
|
| {
|
|
15099
|
-
/**
|
|
15097
|
+
/** ID of the event. */
|
|
15100
15098
|
event_id: string
|
|
15101
|
-
/**
|
|
15099
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15102
15100
|
workspace_id: string
|
|
15103
|
-
/**
|
|
15101
|
+
/** Time at which the event was created. */
|
|
15104
15102
|
created_at: string
|
|
15105
|
-
/**
|
|
15103
|
+
/** Time when the event occurred. */
|
|
15106
15104
|
occurred_at: string
|
|
15107
15105
|
/** ID of the device. */
|
|
15108
15106
|
device_id: string
|
|
15109
|
-
/** ID of the connected account. */
|
|
15107
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15110
15108
|
connected_account_id: string
|
|
15111
15109
|
event_type: 'device.salto.privacy_mode_activated'
|
|
15112
15110
|
}
|
|
15113
15111
|
| {
|
|
15114
|
-
/**
|
|
15112
|
+
/** ID of the event. */
|
|
15115
15113
|
event_id: string
|
|
15116
|
-
/**
|
|
15114
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15117
15115
|
workspace_id: string
|
|
15118
|
-
/**
|
|
15116
|
+
/** Time at which the event was created. */
|
|
15119
15117
|
created_at: string
|
|
15120
|
-
/**
|
|
15118
|
+
/** Time when the event occurred. */
|
|
15121
15119
|
occurred_at: string
|
|
15122
15120
|
/** ID of the device. */
|
|
15123
15121
|
device_id: string
|
|
15124
|
-
/** ID of the connected account. */
|
|
15122
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15125
15123
|
connected_account_id: string
|
|
15126
15124
|
event_type: 'device.salto.privacy_mode_deactivated'
|
|
15127
15125
|
}
|
|
15128
15126
|
| {
|
|
15129
|
-
/**
|
|
15127
|
+
/** ID of the event. */
|
|
15130
15128
|
event_id: string
|
|
15131
|
-
/**
|
|
15129
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15132
15130
|
workspace_id: string
|
|
15133
|
-
/**
|
|
15131
|
+
/** Time at which the event was created. */
|
|
15134
15132
|
created_at: string
|
|
15135
|
-
/**
|
|
15133
|
+
/** Time when the event occurred. */
|
|
15136
15134
|
occurred_at: string
|
|
15137
15135
|
/** ID of the device. */
|
|
15138
15136
|
device_id: string
|
|
15139
|
-
/** ID of the connected account. */
|
|
15137
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15140
15138
|
connected_account_id: string
|
|
15141
15139
|
event_type: 'device.connection_became_flaky'
|
|
15142
15140
|
}
|
|
15143
15141
|
| {
|
|
15144
|
-
/**
|
|
15142
|
+
/** ID of the event. */
|
|
15145
15143
|
event_id: string
|
|
15146
|
-
/**
|
|
15144
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15147
15145
|
workspace_id: string
|
|
15148
|
-
/**
|
|
15146
|
+
/** Time at which the event was created. */
|
|
15149
15147
|
created_at: string
|
|
15150
|
-
/**
|
|
15148
|
+
/** Time when the event occurred. */
|
|
15151
15149
|
occurred_at: string
|
|
15152
15150
|
/** ID of the device. */
|
|
15153
15151
|
device_id: string
|
|
15154
|
-
/** ID of the connected account. */
|
|
15152
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15155
15153
|
connected_account_id: string
|
|
15156
15154
|
event_type: 'device.connection_stabilized'
|
|
15157
15155
|
}
|
|
15158
15156
|
| {
|
|
15159
|
-
/**
|
|
15157
|
+
/** ID of the event. */
|
|
15160
15158
|
event_id: string
|
|
15161
|
-
/**
|
|
15159
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15162
15160
|
workspace_id: string
|
|
15163
|
-
/**
|
|
15161
|
+
/** Time at which the event was created. */
|
|
15164
15162
|
created_at: string
|
|
15165
|
-
/**
|
|
15163
|
+
/** Time when the event occurred. */
|
|
15166
15164
|
occurred_at: string
|
|
15167
15165
|
/** ID of the device. */
|
|
15168
15166
|
device_id: string
|
|
15169
|
-
/** ID of the connected account. */
|
|
15167
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15170
15168
|
connected_account_id: string
|
|
15171
15169
|
event_type: 'device.error.subscription_required'
|
|
15172
15170
|
}
|
|
15173
15171
|
| {
|
|
15174
|
-
/**
|
|
15172
|
+
/** ID of the event. */
|
|
15175
15173
|
event_id: string
|
|
15176
|
-
/**
|
|
15174
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15177
15175
|
workspace_id: string
|
|
15178
|
-
/**
|
|
15176
|
+
/** Time at which the event was created. */
|
|
15179
15177
|
created_at: string
|
|
15180
|
-
/**
|
|
15178
|
+
/** Time when the event occurred. */
|
|
15181
15179
|
occurred_at: string
|
|
15182
15180
|
/** ID of the device. */
|
|
15183
15181
|
device_id: string
|
|
15184
|
-
/** ID of the connected account. */
|
|
15182
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15185
15183
|
connected_account_id: string
|
|
15186
15184
|
event_type: 'device.error.subscription_required.resolved'
|
|
15187
15185
|
}
|
|
15188
15186
|
| {
|
|
15189
|
-
/**
|
|
15187
|
+
/** ID of the event. */
|
|
15190
15188
|
event_id: string
|
|
15191
|
-
/**
|
|
15189
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15192
15190
|
workspace_id: string
|
|
15193
|
-
/**
|
|
15191
|
+
/** Time at which the event was created. */
|
|
15194
15192
|
created_at: string
|
|
15195
|
-
/**
|
|
15193
|
+
/** Time when the event occurred. */
|
|
15196
15194
|
occurred_at: string
|
|
15197
15195
|
/** ID of the device. */
|
|
15198
15196
|
device_id: string
|
|
15199
|
-
/** ID of the connected account. */
|
|
15197
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15200
15198
|
connected_account_id: string
|
|
15201
15199
|
event_type: 'device.accessory_keypad_connected'
|
|
15202
15200
|
}
|
|
15203
15201
|
| {
|
|
15204
|
-
/**
|
|
15202
|
+
/** ID of the event. */
|
|
15205
15203
|
event_id: string
|
|
15206
|
-
/**
|
|
15204
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15207
15205
|
workspace_id: string
|
|
15208
|
-
/**
|
|
15206
|
+
/** Time at which the event was created. */
|
|
15209
15207
|
created_at: string
|
|
15210
|
-
/**
|
|
15208
|
+
/** Time when the event occurred. */
|
|
15211
15209
|
occurred_at: string
|
|
15212
15210
|
/** ID of the device. */
|
|
15213
15211
|
device_id: string
|
|
15214
|
-
/** ID of the connected account. */
|
|
15212
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15215
15213
|
connected_account_id: string
|
|
15216
15214
|
event_type: 'device.accessory_keypad_disconnected'
|
|
15217
15215
|
}
|
|
15218
15216
|
| {
|
|
15219
|
-
/**
|
|
15217
|
+
/** ID of the event. */
|
|
15220
15218
|
event_id: string
|
|
15221
|
-
/**
|
|
15219
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15222
15220
|
workspace_id: string
|
|
15223
|
-
/**
|
|
15221
|
+
/** Time at which the event was created. */
|
|
15224
15222
|
created_at: string
|
|
15225
|
-
/**
|
|
15223
|
+
/** Time when the event occurred. */
|
|
15226
15224
|
occurred_at: string
|
|
15227
15225
|
/** ID of the device. */
|
|
15228
15226
|
device_id: string
|
|
15229
|
-
/** ID of the connected account. */
|
|
15227
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15230
15228
|
connected_account_id: string
|
|
15231
15229
|
event_type: 'noise_sensor.noise_threshold_triggered'
|
|
15230
|
+
/** Detected noise level in decibels. */
|
|
15232
15231
|
noise_level_decibels?: number | undefined
|
|
15232
|
+
/** Detected noise level in Noiseaware Noise Risk Score (NRS). */
|
|
15233
15233
|
noise_level_nrs?: number | undefined
|
|
15234
|
+
/** ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered. */
|
|
15234
15235
|
noise_threshold_id?: string | undefined
|
|
15236
|
+
/** Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered. */
|
|
15235
15237
|
noise_threshold_name?: string | undefined
|
|
15236
|
-
/** Metadata from
|
|
15238
|
+
/** Metadata from Noiseaware. */
|
|
15237
15239
|
noiseaware_metadata?: Record<string, unknown> | undefined
|
|
15238
|
-
/** Metadata from
|
|
15240
|
+
/** Metadata from Minut. */
|
|
15239
15241
|
minut_metadata?: Record<string, unknown> | undefined
|
|
15240
15242
|
}
|
|
15241
15243
|
| {
|
|
15242
|
-
/**
|
|
15244
|
+
/** ID of the event. */
|
|
15243
15245
|
event_id: string
|
|
15244
|
-
/**
|
|
15246
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15245
15247
|
workspace_id: string
|
|
15246
|
-
/**
|
|
15248
|
+
/** Time at which the event was created. */
|
|
15247
15249
|
created_at: string
|
|
15248
|
-
/**
|
|
15250
|
+
/** Time when the event occurred. */
|
|
15249
15251
|
occurred_at: string
|
|
15250
15252
|
/** ID of the device. */
|
|
15251
15253
|
device_id: string
|
|
15252
|
-
/** ID of the connected account. */
|
|
15254
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15253
15255
|
connected_account_id: string
|
|
15254
15256
|
event_type: 'lock.locked'
|
|
15257
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device. */
|
|
15255
15258
|
access_code_id?: string | undefined
|
|
15259
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
15256
15260
|
action_attempt_id?: string | undefined
|
|
15257
|
-
/** Method by which a lock device was locked
|
|
15261
|
+
/** 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. */
|
|
15258
15262
|
method:
|
|
15259
15263
|
| 'keycode'
|
|
15260
15264
|
| 'manual'
|
|
@@ -15263,22 +15267,24 @@ export interface Routes {
|
|
|
15263
15267
|
| 'seamapi'
|
|
15264
15268
|
}
|
|
15265
15269
|
| {
|
|
15266
|
-
/**
|
|
15270
|
+
/** ID of the event. */
|
|
15267
15271
|
event_id: string
|
|
15268
|
-
/**
|
|
15272
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15269
15273
|
workspace_id: string
|
|
15270
|
-
/**
|
|
15274
|
+
/** Time at which the event was created. */
|
|
15271
15275
|
created_at: string
|
|
15272
|
-
/**
|
|
15276
|
+
/** Time when the event occurred. */
|
|
15273
15277
|
occurred_at: string
|
|
15274
15278
|
/** ID of the device. */
|
|
15275
15279
|
device_id: string
|
|
15276
|
-
/** ID of the connected account. */
|
|
15280
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15277
15281
|
connected_account_id: string
|
|
15278
15282
|
event_type: 'lock.unlocked'
|
|
15283
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device. */
|
|
15279
15284
|
access_code_id?: string | undefined
|
|
15285
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
15280
15286
|
action_attempt_id?: string | undefined
|
|
15281
|
-
/** Method by which a lock device was
|
|
15287
|
+
/** 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. */
|
|
15282
15288
|
method:
|
|
15283
15289
|
| 'keycode'
|
|
15284
15290
|
| 'manual'
|
|
@@ -15287,53 +15293,58 @@ export interface Routes {
|
|
|
15287
15293
|
| 'seamapi'
|
|
15288
15294
|
}
|
|
15289
15295
|
| {
|
|
15290
|
-
/**
|
|
15296
|
+
/** ID of the event. */
|
|
15291
15297
|
event_id: string
|
|
15292
|
-
/**
|
|
15298
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15293
15299
|
workspace_id: string
|
|
15294
|
-
/**
|
|
15300
|
+
/** Time at which the event was created. */
|
|
15295
15301
|
created_at: string
|
|
15296
|
-
/**
|
|
15302
|
+
/** Time when the event occurred. */
|
|
15297
15303
|
occurred_at: string
|
|
15298
15304
|
/** ID of the device. */
|
|
15299
15305
|
device_id: string
|
|
15300
|
-
/** ID of the connected account. */
|
|
15306
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15301
15307
|
connected_account_id: string
|
|
15302
15308
|
event_type: 'lock.access_denied'
|
|
15309
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts. */
|
|
15303
15310
|
access_code_id?: string | undefined
|
|
15304
15311
|
}
|
|
15305
15312
|
| {
|
|
15306
|
-
/**
|
|
15313
|
+
/** ID of the event. */
|
|
15307
15314
|
event_id: string
|
|
15308
|
-
/**
|
|
15315
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15309
15316
|
workspace_id: string
|
|
15310
|
-
/**
|
|
15317
|
+
/** Time at which the event was created. */
|
|
15311
15318
|
created_at: string
|
|
15312
|
-
/**
|
|
15319
|
+
/** Time when the event occurred. */
|
|
15313
15320
|
occurred_at: string
|
|
15314
15321
|
/** ID of the device. */
|
|
15315
15322
|
device_id: string
|
|
15316
|
-
/** ID of the connected account. */
|
|
15323
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15317
15324
|
connected_account_id: string
|
|
15318
15325
|
event_type: 'thermostat.climate_preset_activated'
|
|
15326
|
+
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that prompted the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to be activated. */
|
|
15319
15327
|
thermostat_schedule_id: string | null
|
|
15328
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
15320
15329
|
climate_preset_key: string
|
|
15330
|
+
/** 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. */
|
|
15321
15331
|
is_fallback_climate_preset: boolean
|
|
15322
15332
|
}
|
|
15323
15333
|
| {
|
|
15324
|
-
/**
|
|
15334
|
+
/** ID of the event. */
|
|
15325
15335
|
event_id: string
|
|
15326
|
-
/**
|
|
15336
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15327
15337
|
workspace_id: string
|
|
15328
|
-
/**
|
|
15338
|
+
/** Time at which the event was created. */
|
|
15329
15339
|
created_at: string
|
|
15330
|
-
/**
|
|
15340
|
+
/** Time when the event occurred. */
|
|
15331
15341
|
occurred_at: string
|
|
15332
15342
|
/** ID of the device. */
|
|
15333
15343
|
device_id: string
|
|
15334
|
-
/** ID of the connected account. */
|
|
15344
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15335
15345
|
connected_account_id: string
|
|
15336
15346
|
event_type: 'thermostat.manually_adjusted'
|
|
15347
|
+
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
15337
15348
|
method: 'seam' | 'external'
|
|
15338
15349
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
15339
15350
|
fan_mode_setting?:
|
|
@@ -15353,68 +15364,80 @@ export interface Routes {
|
|
|
15353
15364
|
heating_set_point_fahrenheit?: (number | undefined) | undefined
|
|
15354
15365
|
}
|
|
15355
15366
|
| {
|
|
15356
|
-
/**
|
|
15367
|
+
/** ID of the event. */
|
|
15357
15368
|
event_id: string
|
|
15358
|
-
/**
|
|
15369
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15359
15370
|
workspace_id: string
|
|
15360
|
-
/**
|
|
15371
|
+
/** Time at which the event was created. */
|
|
15361
15372
|
created_at: string
|
|
15362
|
-
/**
|
|
15373
|
+
/** Time when the event occurred. */
|
|
15363
15374
|
occurred_at: string
|
|
15364
15375
|
/** ID of the device. */
|
|
15365
15376
|
device_id: string
|
|
15366
|
-
/** ID of the connected account. */
|
|
15377
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15367
15378
|
connected_account_id: string
|
|
15368
15379
|
event_type: 'thermostat.temperature_threshold_exceeded'
|
|
15380
|
+
/** Temperature, in °C, reported by the thermostat. */
|
|
15369
15381
|
temperature_celsius: number
|
|
15382
|
+
/** Temperature, in °F, reported by the thermostat. */
|
|
15370
15383
|
temperature_fahrenheit: number
|
|
15384
|
+
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15371
15385
|
upper_limit_celsius: number | null
|
|
15386
|
+
/** Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15372
15387
|
upper_limit_fahrenheit: number | null
|
|
15388
|
+
/** Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15373
15389
|
lower_limit_celsius: number | null
|
|
15390
|
+
/** Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15374
15391
|
lower_limit_fahrenheit: number | null
|
|
15375
15392
|
}
|
|
15376
15393
|
| {
|
|
15377
|
-
/**
|
|
15394
|
+
/** ID of the event. */
|
|
15378
15395
|
event_id: string
|
|
15379
|
-
/**
|
|
15396
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15380
15397
|
workspace_id: string
|
|
15381
|
-
/**
|
|
15398
|
+
/** Time at which the event was created. */
|
|
15382
15399
|
created_at: string
|
|
15383
|
-
/**
|
|
15400
|
+
/** Time when the event occurred. */
|
|
15384
15401
|
occurred_at: string
|
|
15385
15402
|
/** ID of the device. */
|
|
15386
15403
|
device_id: string
|
|
15387
|
-
/** ID of the connected account. */
|
|
15404
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
15388
15405
|
connected_account_id: string
|
|
15389
15406
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
|
|
15407
|
+
/** Temperature, in °C, reported by the thermostat. */
|
|
15390
15408
|
temperature_celsius: number
|
|
15409
|
+
/** Temperature, in °F, reported by the thermostat. */
|
|
15391
15410
|
temperature_fahrenheit: number
|
|
15411
|
+
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15392
15412
|
upper_limit_celsius: number | null
|
|
15413
|
+
/** Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15393
15414
|
upper_limit_fahrenheit: number | null
|
|
15415
|
+
/** Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15394
15416
|
lower_limit_celsius: number | null
|
|
15417
|
+
/** Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
15395
15418
|
lower_limit_fahrenheit: number | null
|
|
15396
15419
|
}
|
|
15397
15420
|
| {
|
|
15398
|
-
/**
|
|
15421
|
+
/** ID of the event. */
|
|
15399
15422
|
event_id: string
|
|
15400
|
-
/**
|
|
15423
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15401
15424
|
workspace_id: string
|
|
15402
|
-
/**
|
|
15425
|
+
/** Time at which the event was created. */
|
|
15403
15426
|
created_at: string
|
|
15404
|
-
/**
|
|
15427
|
+
/** Time when the event occurred. */
|
|
15405
15428
|
occurred_at: string
|
|
15406
15429
|
/** ID of the enrollment automation. */
|
|
15407
15430
|
enrollment_automation_id: string
|
|
15408
15431
|
event_type: 'enrollment_automation.deleted'
|
|
15409
15432
|
}
|
|
15410
15433
|
| {
|
|
15411
|
-
/**
|
|
15434
|
+
/** ID of the event. */
|
|
15412
15435
|
event_id: string
|
|
15413
|
-
/**
|
|
15436
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15414
15437
|
workspace_id: string
|
|
15415
|
-
/**
|
|
15438
|
+
/** Time at which the event was created. */
|
|
15416
15439
|
created_at: string
|
|
15417
|
-
/**
|
|
15440
|
+
/** Time when the event occurred. */
|
|
15418
15441
|
occurred_at: string
|
|
15419
15442
|
/** ID of the device. */
|
|
15420
15443
|
device_id: string
|
|
@@ -15598,13 +15621,13 @@ export interface Routes {
|
|
|
15598
15621
|
jsonResponse: {
|
|
15599
15622
|
events: Array<
|
|
15600
15623
|
| {
|
|
15601
|
-
/**
|
|
15624
|
+
/** ID of the event. */
|
|
15602
15625
|
event_id: string
|
|
15603
|
-
/**
|
|
15626
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15604
15627
|
workspace_id: string
|
|
15605
|
-
/**
|
|
15628
|
+
/** Time at which the event was created. */
|
|
15606
15629
|
created_at: string
|
|
15607
|
-
/**
|
|
15630
|
+
/** Time when the event occurred. */
|
|
15608
15631
|
occurred_at: string
|
|
15609
15632
|
/** The ID of the access code. */
|
|
15610
15633
|
access_code_id: string
|
|
@@ -15615,13 +15638,13 @@ export interface Routes {
|
|
|
15615
15638
|
event_type: 'access_code.created'
|
|
15616
15639
|
}
|
|
15617
15640
|
| {
|
|
15618
|
-
/**
|
|
15641
|
+
/** ID of the event. */
|
|
15619
15642
|
event_id: string
|
|
15620
|
-
/**
|
|
15643
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15621
15644
|
workspace_id: string
|
|
15622
|
-
/**
|
|
15645
|
+
/** Time at which the event was created. */
|
|
15623
15646
|
created_at: string
|
|
15624
|
-
/**
|
|
15647
|
+
/** Time when the event occurred. */
|
|
15625
15648
|
occurred_at: string
|
|
15626
15649
|
/** The ID of the access code. */
|
|
15627
15650
|
access_code_id: string
|
|
@@ -15632,13 +15655,13 @@ export interface Routes {
|
|
|
15632
15655
|
event_type: 'access_code.changed'
|
|
15633
15656
|
}
|
|
15634
15657
|
| {
|
|
15635
|
-
/**
|
|
15658
|
+
/** ID of the event. */
|
|
15636
15659
|
event_id: string
|
|
15637
|
-
/**
|
|
15660
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15638
15661
|
workspace_id: string
|
|
15639
|
-
/**
|
|
15662
|
+
/** Time at which the event was created. */
|
|
15640
15663
|
created_at: string
|
|
15641
|
-
/**
|
|
15664
|
+
/** Time when the event occurred. */
|
|
15642
15665
|
occurred_at: string
|
|
15643
15666
|
/** The ID of the access code. */
|
|
15644
15667
|
access_code_id: string
|
|
@@ -15651,13 +15674,13 @@ export interface Routes {
|
|
|
15651
15674
|
code: string
|
|
15652
15675
|
}
|
|
15653
15676
|
| {
|
|
15654
|
-
/**
|
|
15677
|
+
/** ID of the event. */
|
|
15655
15678
|
event_id: string
|
|
15656
|
-
/**
|
|
15679
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15657
15680
|
workspace_id: string
|
|
15658
|
-
/**
|
|
15681
|
+
/** Time at which the event was created. */
|
|
15659
15682
|
created_at: string
|
|
15660
|
-
/**
|
|
15683
|
+
/** Time when the event occurred. */
|
|
15661
15684
|
occurred_at: string
|
|
15662
15685
|
/** The ID of the access code. */
|
|
15663
15686
|
access_code_id: string
|
|
@@ -15670,13 +15693,13 @@ export interface Routes {
|
|
|
15670
15693
|
code: string
|
|
15671
15694
|
}
|
|
15672
15695
|
| {
|
|
15673
|
-
/**
|
|
15696
|
+
/** ID of the event. */
|
|
15674
15697
|
event_id: string
|
|
15675
|
-
/**
|
|
15698
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15676
15699
|
workspace_id: string
|
|
15677
|
-
/**
|
|
15700
|
+
/** Time at which the event was created. */
|
|
15678
15701
|
created_at: string
|
|
15679
|
-
/**
|
|
15702
|
+
/** Time when the event occurred. */
|
|
15680
15703
|
occurred_at: string
|
|
15681
15704
|
/** The ID of the access code. */
|
|
15682
15705
|
access_code_id: string
|
|
@@ -15687,13 +15710,13 @@ export interface Routes {
|
|
|
15687
15710
|
event_type: 'access_code.removed_from_device'
|
|
15688
15711
|
}
|
|
15689
15712
|
| {
|
|
15690
|
-
/**
|
|
15713
|
+
/** ID of the event. */
|
|
15691
15714
|
event_id: string
|
|
15692
|
-
/**
|
|
15715
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15693
15716
|
workspace_id: string
|
|
15694
|
-
/**
|
|
15717
|
+
/** Time at which the event was created. */
|
|
15695
15718
|
created_at: string
|
|
15696
|
-
/**
|
|
15719
|
+
/** Time when the event occurred. */
|
|
15697
15720
|
occurred_at: string
|
|
15698
15721
|
/** The ID of the access code. */
|
|
15699
15722
|
access_code_id: string
|
|
@@ -15704,13 +15727,13 @@ export interface Routes {
|
|
|
15704
15727
|
event_type: 'access_code.delay_in_setting_on_device'
|
|
15705
15728
|
}
|
|
15706
15729
|
| {
|
|
15707
|
-
/**
|
|
15730
|
+
/** ID of the event. */
|
|
15708
15731
|
event_id: string
|
|
15709
|
-
/**
|
|
15732
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15710
15733
|
workspace_id: string
|
|
15711
|
-
/**
|
|
15734
|
+
/** Time at which the event was created. */
|
|
15712
15735
|
created_at: string
|
|
15713
|
-
/**
|
|
15736
|
+
/** Time when the event occurred. */
|
|
15714
15737
|
occurred_at: string
|
|
15715
15738
|
/** The ID of the access code. */
|
|
15716
15739
|
access_code_id: string
|
|
@@ -15721,13 +15744,13 @@ export interface Routes {
|
|
|
15721
15744
|
event_type: 'access_code.failed_to_set_on_device'
|
|
15722
15745
|
}
|
|
15723
15746
|
| {
|
|
15724
|
-
/**
|
|
15747
|
+
/** ID of the event. */
|
|
15725
15748
|
event_id: string
|
|
15726
|
-
/**
|
|
15749
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15727
15750
|
workspace_id: string
|
|
15728
|
-
/**
|
|
15751
|
+
/** Time at which the event was created. */
|
|
15729
15752
|
created_at: string
|
|
15730
|
-
/**
|
|
15753
|
+
/** Time when the event occurred. */
|
|
15731
15754
|
occurred_at: string
|
|
15732
15755
|
/** The ID of the access code. */
|
|
15733
15756
|
access_code_id: string
|
|
@@ -15740,13 +15763,13 @@ export interface Routes {
|
|
|
15740
15763
|
code: string | null
|
|
15741
15764
|
}
|
|
15742
15765
|
| {
|
|
15743
|
-
/**
|
|
15766
|
+
/** ID of the event. */
|
|
15744
15767
|
event_id: string
|
|
15745
|
-
/**
|
|
15768
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15746
15769
|
workspace_id: string
|
|
15747
|
-
/**
|
|
15770
|
+
/** Time at which the event was created. */
|
|
15748
15771
|
created_at: string
|
|
15749
|
-
/**
|
|
15772
|
+
/** Time when the event occurred. */
|
|
15750
15773
|
occurred_at: string
|
|
15751
15774
|
/** The ID of the access code. */
|
|
15752
15775
|
access_code_id: string
|
|
@@ -15757,13 +15780,13 @@ export interface Routes {
|
|
|
15757
15780
|
event_type: 'access_code.delay_in_removing_from_device'
|
|
15758
15781
|
}
|
|
15759
15782
|
| {
|
|
15760
|
-
/**
|
|
15783
|
+
/** ID of the event. */
|
|
15761
15784
|
event_id: string
|
|
15762
|
-
/**
|
|
15785
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15763
15786
|
workspace_id: string
|
|
15764
|
-
/**
|
|
15787
|
+
/** Time at which the event was created. */
|
|
15765
15788
|
created_at: string
|
|
15766
|
-
/**
|
|
15789
|
+
/** Time when the event occurred. */
|
|
15767
15790
|
occurred_at: string
|
|
15768
15791
|
/** The ID of the access code. */
|
|
15769
15792
|
access_code_id: string
|
|
@@ -15774,13 +15797,13 @@ export interface Routes {
|
|
|
15774
15797
|
event_type: 'access_code.failed_to_remove_from_device'
|
|
15775
15798
|
}
|
|
15776
15799
|
| {
|
|
15777
|
-
/**
|
|
15800
|
+
/** ID of the event. */
|
|
15778
15801
|
event_id: string
|
|
15779
|
-
/**
|
|
15802
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15780
15803
|
workspace_id: string
|
|
15781
|
-
/**
|
|
15804
|
+
/** Time at which the event was created. */
|
|
15782
15805
|
created_at: string
|
|
15783
|
-
/**
|
|
15806
|
+
/** Time when the event occurred. */
|
|
15784
15807
|
occurred_at: string
|
|
15785
15808
|
/** The ID of the access code. */
|
|
15786
15809
|
access_code_id: string
|
|
@@ -15791,13 +15814,13 @@ export interface Routes {
|
|
|
15791
15814
|
event_type: 'access_code.modified_external_to_seam'
|
|
15792
15815
|
}
|
|
15793
15816
|
| {
|
|
15794
|
-
/**
|
|
15817
|
+
/** ID of the event. */
|
|
15795
15818
|
event_id: string
|
|
15796
|
-
/**
|
|
15819
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15797
15820
|
workspace_id: string
|
|
15798
|
-
/**
|
|
15821
|
+
/** Time at which the event was created. */
|
|
15799
15822
|
created_at: string
|
|
15800
|
-
/**
|
|
15823
|
+
/** Time when the event occurred. */
|
|
15801
15824
|
occurred_at: string
|
|
15802
15825
|
/** The ID of the access code. */
|
|
15803
15826
|
access_code_id: string
|
|
@@ -15808,13 +15831,13 @@ export interface Routes {
|
|
|
15808
15831
|
event_type: 'access_code.deleted_external_to_seam'
|
|
15809
15832
|
}
|
|
15810
15833
|
| {
|
|
15811
|
-
/**
|
|
15834
|
+
/** ID of the event. */
|
|
15812
15835
|
event_id: string
|
|
15813
|
-
/**
|
|
15836
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15814
15837
|
workspace_id: string
|
|
15815
|
-
/**
|
|
15838
|
+
/** Time at which the event was created. */
|
|
15816
15839
|
created_at: string
|
|
15817
|
-
/**
|
|
15840
|
+
/** Time when the event occurred. */
|
|
15818
15841
|
occurred_at: string
|
|
15819
15842
|
/** The ID of the access code. */
|
|
15820
15843
|
access_code_id: string
|
|
@@ -15826,13 +15849,13 @@ export interface Routes {
|
|
|
15826
15849
|
backup_access_code_id: string
|
|
15827
15850
|
}
|
|
15828
15851
|
| {
|
|
15829
|
-
/**
|
|
15852
|
+
/** ID of the event. */
|
|
15830
15853
|
event_id: string
|
|
15831
|
-
/**
|
|
15854
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15832
15855
|
workspace_id: string
|
|
15833
|
-
/**
|
|
15856
|
+
/** Time at which the event was created. */
|
|
15834
15857
|
created_at: string
|
|
15835
|
-
/**
|
|
15858
|
+
/** Time when the event occurred. */
|
|
15836
15859
|
occurred_at: string
|
|
15837
15860
|
/** The ID of the access code. */
|
|
15838
15861
|
access_code_id: string
|
|
@@ -15843,13 +15866,13 @@ export interface Routes {
|
|
|
15843
15866
|
event_type: 'access_code.unmanaged.converted_to_managed'
|
|
15844
15867
|
}
|
|
15845
15868
|
| {
|
|
15846
|
-
/**
|
|
15869
|
+
/** ID of the event. */
|
|
15847
15870
|
event_id: string
|
|
15848
|
-
/**
|
|
15871
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15849
15872
|
workspace_id: string
|
|
15850
|
-
/**
|
|
15873
|
+
/** Time at which the event was created. */
|
|
15851
15874
|
created_at: string
|
|
15852
|
-
/**
|
|
15875
|
+
/** Time when the event occurred. */
|
|
15853
15876
|
occurred_at: string
|
|
15854
15877
|
/** The ID of the access code. */
|
|
15855
15878
|
access_code_id: string
|
|
@@ -15860,13 +15883,13 @@ export interface Routes {
|
|
|
15860
15883
|
event_type: 'access_code.unmanaged.failed_to_convert_to_managed'
|
|
15861
15884
|
}
|
|
15862
15885
|
| {
|
|
15863
|
-
/**
|
|
15886
|
+
/** ID of the event. */
|
|
15864
15887
|
event_id: string
|
|
15865
|
-
/**
|
|
15888
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15866
15889
|
workspace_id: string
|
|
15867
|
-
/**
|
|
15890
|
+
/** Time at which the event was created. */
|
|
15868
15891
|
created_at: string
|
|
15869
|
-
/**
|
|
15892
|
+
/** Time when the event occurred. */
|
|
15870
15893
|
occurred_at: string
|
|
15871
15894
|
/** The ID of the access code. */
|
|
15872
15895
|
access_code_id: string
|
|
@@ -15877,13 +15900,13 @@ export interface Routes {
|
|
|
15877
15900
|
event_type: 'access_code.unmanaged.created'
|
|
15878
15901
|
}
|
|
15879
15902
|
| {
|
|
15880
|
-
/**
|
|
15903
|
+
/** ID of the event. */
|
|
15881
15904
|
event_id: string
|
|
15882
|
-
/**
|
|
15905
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15883
15906
|
workspace_id: string
|
|
15884
|
-
/**
|
|
15907
|
+
/** Time at which the event was created. */
|
|
15885
15908
|
created_at: string
|
|
15886
|
-
/**
|
|
15909
|
+
/** Time when the event occurred. */
|
|
15887
15910
|
occurred_at: string
|
|
15888
15911
|
/** The ID of the access code. */
|
|
15889
15912
|
access_code_id: string
|
|
@@ -15894,13 +15917,13 @@ export interface Routes {
|
|
|
15894
15917
|
event_type: 'access_code.unmanaged.removed'
|
|
15895
15918
|
}
|
|
15896
15919
|
| {
|
|
15897
|
-
/**
|
|
15920
|
+
/** ID of the event. */
|
|
15898
15921
|
event_id: string
|
|
15899
|
-
/**
|
|
15922
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15900
15923
|
workspace_id: string
|
|
15901
|
-
/**
|
|
15924
|
+
/** Time at which the event was created. */
|
|
15902
15925
|
created_at: string
|
|
15903
|
-
/**
|
|
15926
|
+
/** Time when the event occurred. */
|
|
15904
15927
|
occurred_at: string
|
|
15905
15928
|
/** ID of the connected account.
|
|
15906
15929
|
* @deprecated Will be removed. */
|
|
@@ -15910,13 +15933,13 @@ export interface Routes {
|
|
|
15910
15933
|
event_type: 'acs_system.connected'
|
|
15911
15934
|
}
|
|
15912
15935
|
| {
|
|
15913
|
-
/**
|
|
15936
|
+
/** ID of the event. */
|
|
15914
15937
|
event_id: string
|
|
15915
|
-
/**
|
|
15938
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15916
15939
|
workspace_id: string
|
|
15917
|
-
/**
|
|
15940
|
+
/** Time at which the event was created. */
|
|
15918
15941
|
created_at: string
|
|
15919
|
-
/**
|
|
15942
|
+
/** Time when the event occurred. */
|
|
15920
15943
|
occurred_at: string
|
|
15921
15944
|
/** ID of the connected account.
|
|
15922
15945
|
* @deprecated Will be removed. */
|
|
@@ -15926,13 +15949,13 @@ export interface Routes {
|
|
|
15926
15949
|
event_type: 'acs_system.added'
|
|
15927
15950
|
}
|
|
15928
15951
|
| {
|
|
15929
|
-
/**
|
|
15952
|
+
/** ID of the event. */
|
|
15930
15953
|
event_id: string
|
|
15931
|
-
/**
|
|
15954
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15932
15955
|
workspace_id: string
|
|
15933
|
-
/**
|
|
15956
|
+
/** Time at which the event was created. */
|
|
15934
15957
|
created_at: string
|
|
15935
|
-
/**
|
|
15958
|
+
/** Time when the event occurred. */
|
|
15936
15959
|
occurred_at: string
|
|
15937
15960
|
/** ID of the connected account.
|
|
15938
15961
|
* @deprecated Will be removed. */
|
|
@@ -15942,13 +15965,13 @@ export interface Routes {
|
|
|
15942
15965
|
event_type: 'acs_system.disconnected'
|
|
15943
15966
|
}
|
|
15944
15967
|
| {
|
|
15945
|
-
/**
|
|
15968
|
+
/** ID of the event. */
|
|
15946
15969
|
event_id: string
|
|
15947
|
-
/**
|
|
15970
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15948
15971
|
workspace_id: string
|
|
15949
|
-
/**
|
|
15972
|
+
/** Time at which the event was created. */
|
|
15950
15973
|
created_at: string
|
|
15951
|
-
/**
|
|
15974
|
+
/** Time when the event occurred. */
|
|
15952
15975
|
occurred_at: string
|
|
15953
15976
|
/** ID of the connected account.
|
|
15954
15977
|
* @deprecated Will be removed. */
|
|
@@ -15959,13 +15982,13 @@ export interface Routes {
|
|
|
15959
15982
|
event_type: 'acs_credential.deleted'
|
|
15960
15983
|
}
|
|
15961
15984
|
| {
|
|
15962
|
-
/**
|
|
15985
|
+
/** ID of the event. */
|
|
15963
15986
|
event_id: string
|
|
15964
|
-
/**
|
|
15987
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15965
15988
|
workspace_id: string
|
|
15966
|
-
/**
|
|
15989
|
+
/** Time at which the event was created. */
|
|
15967
15990
|
created_at: string
|
|
15968
|
-
/**
|
|
15991
|
+
/** Time when the event occurred. */
|
|
15969
15992
|
occurred_at: string
|
|
15970
15993
|
/** ID of the connected account.
|
|
15971
15994
|
* @deprecated Will be removed. */
|
|
@@ -15976,13 +15999,13 @@ export interface Routes {
|
|
|
15976
15999
|
event_type: 'acs_credential.issued'
|
|
15977
16000
|
}
|
|
15978
16001
|
| {
|
|
15979
|
-
/**
|
|
16002
|
+
/** ID of the event. */
|
|
15980
16003
|
event_id: string
|
|
15981
|
-
/**
|
|
16004
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15982
16005
|
workspace_id: string
|
|
15983
|
-
/**
|
|
16006
|
+
/** Time at which the event was created. */
|
|
15984
16007
|
created_at: string
|
|
15985
|
-
/**
|
|
16008
|
+
/** Time when the event occurred. */
|
|
15986
16009
|
occurred_at: string
|
|
15987
16010
|
/** ID of the connected account.
|
|
15988
16011
|
* @deprecated Will be removed. */
|
|
@@ -15993,13 +16016,13 @@ export interface Routes {
|
|
|
15993
16016
|
event_type: 'acs_user.deleted'
|
|
15994
16017
|
}
|
|
15995
16018
|
| {
|
|
15996
|
-
/**
|
|
16019
|
+
/** ID of the event. */
|
|
15997
16020
|
event_id: string
|
|
15998
|
-
/**
|
|
16021
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
15999
16022
|
workspace_id: string
|
|
16000
|
-
/**
|
|
16023
|
+
/** Time at which the event was created. */
|
|
16001
16024
|
created_at: string
|
|
16002
|
-
/**
|
|
16025
|
+
/** Time when the event occurred. */
|
|
16003
16026
|
occurred_at: string
|
|
16004
16027
|
/** ID of the connected account.
|
|
16005
16028
|
* @deprecated Will be removed. */
|
|
@@ -16011,13 +16034,13 @@ export interface Routes {
|
|
|
16011
16034
|
event_type: 'acs_encoder.added'
|
|
16012
16035
|
}
|
|
16013
16036
|
| {
|
|
16014
|
-
/**
|
|
16037
|
+
/** ID of the event. */
|
|
16015
16038
|
event_id: string
|
|
16016
|
-
/**
|
|
16039
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16017
16040
|
workspace_id: string
|
|
16018
|
-
/**
|
|
16041
|
+
/** Time at which the event was created. */
|
|
16019
16042
|
created_at: string
|
|
16020
|
-
/**
|
|
16043
|
+
/** Time when the event occurred. */
|
|
16021
16044
|
occurred_at: string
|
|
16022
16045
|
/** ID of the connected account.
|
|
16023
16046
|
* @deprecated Will be removed. */
|
|
@@ -16029,26 +16052,26 @@ export interface Routes {
|
|
|
16029
16052
|
event_type: 'acs_encoder.removed'
|
|
16030
16053
|
}
|
|
16031
16054
|
| {
|
|
16032
|
-
/**
|
|
16055
|
+
/** ID of the event. */
|
|
16033
16056
|
event_id: string
|
|
16034
|
-
/**
|
|
16057
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16035
16058
|
workspace_id: string
|
|
16036
|
-
/**
|
|
16059
|
+
/** Time at which the event was created. */
|
|
16037
16060
|
created_at: string
|
|
16038
|
-
/**
|
|
16061
|
+
/** Time when the event occurred. */
|
|
16039
16062
|
occurred_at: string
|
|
16040
16063
|
/** ID of the client session. */
|
|
16041
16064
|
client_session_id: string
|
|
16042
16065
|
event_type: 'client_session.deleted'
|
|
16043
16066
|
}
|
|
16044
16067
|
| {
|
|
16045
|
-
/**
|
|
16068
|
+
/** ID of the event. */
|
|
16046
16069
|
event_id: string
|
|
16047
|
-
/**
|
|
16070
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16048
16071
|
workspace_id: string
|
|
16049
|
-
/**
|
|
16072
|
+
/** Time at which the event was created. */
|
|
16050
16073
|
created_at: string
|
|
16051
|
-
/**
|
|
16074
|
+
/** Time when the event occurred. */
|
|
16052
16075
|
occurred_at: string
|
|
16053
16076
|
/** ID of the connected account. */
|
|
16054
16077
|
connected_account_id: string
|
|
@@ -16057,13 +16080,13 @@ export interface Routes {
|
|
|
16057
16080
|
connect_webview_id: string
|
|
16058
16081
|
}
|
|
16059
16082
|
| {
|
|
16060
|
-
/**
|
|
16083
|
+
/** ID of the event. */
|
|
16061
16084
|
event_id: string
|
|
16062
|
-
/**
|
|
16085
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16063
16086
|
workspace_id: string
|
|
16064
|
-
/**
|
|
16087
|
+
/** Time at which the event was created. */
|
|
16065
16088
|
created_at: string
|
|
16066
|
-
/**
|
|
16089
|
+
/** Time when the event occurred. */
|
|
16067
16090
|
occurred_at: string
|
|
16068
16091
|
/** ID of the connected account. */
|
|
16069
16092
|
connected_account_id: string
|
|
@@ -16072,13 +16095,13 @@ export interface Routes {
|
|
|
16072
16095
|
connect_webview_id: string
|
|
16073
16096
|
}
|
|
16074
16097
|
| {
|
|
16075
|
-
/**
|
|
16098
|
+
/** ID of the event. */
|
|
16076
16099
|
event_id: string
|
|
16077
|
-
/**
|
|
16100
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16078
16101
|
workspace_id: string
|
|
16079
|
-
/**
|
|
16102
|
+
/** Time at which the event was created. */
|
|
16080
16103
|
created_at: string
|
|
16081
|
-
/**
|
|
16104
|
+
/** Time when the event occurred. */
|
|
16082
16105
|
occurred_at: string
|
|
16083
16106
|
/** ID of the connected account. */
|
|
16084
16107
|
connected_account_id: string
|
|
@@ -16087,65 +16110,65 @@ export interface Routes {
|
|
|
16087
16110
|
connect_webview_id: string
|
|
16088
16111
|
}
|
|
16089
16112
|
| {
|
|
16090
|
-
/**
|
|
16113
|
+
/** ID of the event. */
|
|
16091
16114
|
event_id: string
|
|
16092
|
-
/**
|
|
16115
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16093
16116
|
workspace_id: string
|
|
16094
|
-
/**
|
|
16117
|
+
/** Time at which the event was created. */
|
|
16095
16118
|
created_at: string
|
|
16096
|
-
/**
|
|
16119
|
+
/** Time when the event occurred. */
|
|
16097
16120
|
occurred_at: string
|
|
16098
16121
|
/** ID of the connected account. */
|
|
16099
16122
|
connected_account_id: string
|
|
16100
16123
|
event_type: 'connected_account.disconnected'
|
|
16101
16124
|
}
|
|
16102
16125
|
| {
|
|
16103
|
-
/**
|
|
16126
|
+
/** ID of the event. */
|
|
16104
16127
|
event_id: string
|
|
16105
|
-
/**
|
|
16128
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16106
16129
|
workspace_id: string
|
|
16107
|
-
/**
|
|
16130
|
+
/** Time at which the event was created. */
|
|
16108
16131
|
created_at: string
|
|
16109
|
-
/**
|
|
16132
|
+
/** Time when the event occurred. */
|
|
16110
16133
|
occurred_at: string
|
|
16111
16134
|
/** ID of the connected account. */
|
|
16112
16135
|
connected_account_id: string
|
|
16113
16136
|
event_type: 'connected_account.completed_first_sync'
|
|
16114
16137
|
}
|
|
16115
16138
|
| {
|
|
16116
|
-
/**
|
|
16139
|
+
/** ID of the event. */
|
|
16117
16140
|
event_id: string
|
|
16118
|
-
/**
|
|
16141
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16119
16142
|
workspace_id: string
|
|
16120
|
-
/**
|
|
16143
|
+
/** Time at which the event was created. */
|
|
16121
16144
|
created_at: string
|
|
16122
|
-
/**
|
|
16145
|
+
/** Time when the event occurred. */
|
|
16123
16146
|
occurred_at: string
|
|
16124
16147
|
/** ID of the connected account. */
|
|
16125
16148
|
connected_account_id: string
|
|
16126
16149
|
event_type: 'connected_account.deleted'
|
|
16127
16150
|
}
|
|
16128
16151
|
| {
|
|
16129
|
-
/**
|
|
16152
|
+
/** ID of the event. */
|
|
16130
16153
|
event_id: string
|
|
16131
|
-
/**
|
|
16154
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16132
16155
|
workspace_id: string
|
|
16133
|
-
/**
|
|
16156
|
+
/** Time at which the event was created. */
|
|
16134
16157
|
created_at: string
|
|
16135
|
-
/**
|
|
16158
|
+
/** Time when the event occurred. */
|
|
16136
16159
|
occurred_at: string
|
|
16137
16160
|
/** ID of the connected account. */
|
|
16138
16161
|
connected_account_id: string
|
|
16139
16162
|
event_type: 'connected_account.completed_first_sync_after_reconnection'
|
|
16140
16163
|
}
|
|
16141
16164
|
| {
|
|
16142
|
-
/**
|
|
16165
|
+
/** ID of the event. */
|
|
16143
16166
|
event_id: string
|
|
16144
|
-
/**
|
|
16167
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16145
16168
|
workspace_id: string
|
|
16146
|
-
/**
|
|
16169
|
+
/** Time at which the event was created. */
|
|
16147
16170
|
created_at: string
|
|
16148
|
-
/**
|
|
16171
|
+
/** Time when the event occurred. */
|
|
16149
16172
|
occurred_at: string
|
|
16150
16173
|
/** The ID of the action attempt. */
|
|
16151
16174
|
action_attempt_id: string
|
|
@@ -16156,13 +16179,13 @@ export interface Routes {
|
|
|
16156
16179
|
event_type: 'action_attempt.lock_door.succeeded'
|
|
16157
16180
|
}
|
|
16158
16181
|
| {
|
|
16159
|
-
/**
|
|
16182
|
+
/** ID of the event. */
|
|
16160
16183
|
event_id: string
|
|
16161
|
-
/**
|
|
16184
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16162
16185
|
workspace_id: string
|
|
16163
|
-
/**
|
|
16186
|
+
/** Time at which the event was created. */
|
|
16164
16187
|
created_at: string
|
|
16165
|
-
/**
|
|
16188
|
+
/** Time when the event occurred. */
|
|
16166
16189
|
occurred_at: string
|
|
16167
16190
|
/** The ID of the action attempt. */
|
|
16168
16191
|
action_attempt_id: string
|
|
@@ -16173,13 +16196,13 @@ export interface Routes {
|
|
|
16173
16196
|
event_type: 'action_attempt.lock_door.failed'
|
|
16174
16197
|
}
|
|
16175
16198
|
| {
|
|
16176
|
-
/**
|
|
16199
|
+
/** ID of the event. */
|
|
16177
16200
|
event_id: string
|
|
16178
|
-
/**
|
|
16201
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16179
16202
|
workspace_id: string
|
|
16180
|
-
/**
|
|
16203
|
+
/** Time at which the event was created. */
|
|
16181
16204
|
created_at: string
|
|
16182
|
-
/**
|
|
16205
|
+
/** Time when the event occurred. */
|
|
16183
16206
|
occurred_at: string
|
|
16184
16207
|
/** The ID of the action attempt. */
|
|
16185
16208
|
action_attempt_id: string
|
|
@@ -16190,13 +16213,13 @@ export interface Routes {
|
|
|
16190
16213
|
event_type: 'action_attempt.unlock_door.succeeded'
|
|
16191
16214
|
}
|
|
16192
16215
|
| {
|
|
16193
|
-
/**
|
|
16216
|
+
/** ID of the event. */
|
|
16194
16217
|
event_id: string
|
|
16195
|
-
/**
|
|
16218
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16196
16219
|
workspace_id: string
|
|
16197
|
-
/**
|
|
16220
|
+
/** Time at which the event was created. */
|
|
16198
16221
|
created_at: string
|
|
16199
|
-
/**
|
|
16222
|
+
/** Time when the event occurred. */
|
|
16200
16223
|
occurred_at: string
|
|
16201
16224
|
/** The ID of the action attempt. */
|
|
16202
16225
|
action_attempt_id: string
|
|
@@ -16207,13 +16230,13 @@ export interface Routes {
|
|
|
16207
16230
|
event_type: 'action_attempt.unlock_door.failed'
|
|
16208
16231
|
}
|
|
16209
16232
|
| {
|
|
16210
|
-
/**
|
|
16233
|
+
/** ID of the event. */
|
|
16211
16234
|
event_id: string
|
|
16212
|
-
/**
|
|
16235
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16213
16236
|
workspace_id: string
|
|
16214
|
-
/**
|
|
16237
|
+
/** Time at which the event was created. */
|
|
16215
16238
|
created_at: string
|
|
16216
|
-
/**
|
|
16239
|
+
/** Time when the event occurred. */
|
|
16217
16240
|
occurred_at: string
|
|
16218
16241
|
/** ID of the connect webview. */
|
|
16219
16242
|
connect_webview_id: string
|
|
@@ -16222,473 +16245,486 @@ export interface Routes {
|
|
|
16222
16245
|
connected_account_id: string
|
|
16223
16246
|
}
|
|
16224
16247
|
| {
|
|
16225
|
-
/**
|
|
16248
|
+
/** ID of the event. */
|
|
16226
16249
|
event_id: string
|
|
16227
|
-
/**
|
|
16250
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16228
16251
|
workspace_id: string
|
|
16229
|
-
/**
|
|
16252
|
+
/** Time at which the event was created. */
|
|
16230
16253
|
created_at: string
|
|
16231
|
-
/**
|
|
16254
|
+
/** Time when the event occurred. */
|
|
16232
16255
|
occurred_at: string
|
|
16233
16256
|
/** ID of the connect webview. */
|
|
16234
16257
|
connect_webview_id: string
|
|
16235
16258
|
event_type: 'connect_webview.login_failed'
|
|
16236
16259
|
}
|
|
16237
16260
|
| {
|
|
16238
|
-
/**
|
|
16261
|
+
/** ID of the event. */
|
|
16239
16262
|
event_id: string
|
|
16240
|
-
/**
|
|
16263
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16241
16264
|
workspace_id: string
|
|
16242
|
-
/**
|
|
16265
|
+
/** Time at which the event was created. */
|
|
16243
16266
|
created_at: string
|
|
16244
|
-
/**
|
|
16267
|
+
/** Time when the event occurred. */
|
|
16245
16268
|
occurred_at: string
|
|
16246
16269
|
/** ID of the device. */
|
|
16247
16270
|
device_id: string
|
|
16248
|
-
/** ID of the connected account. */
|
|
16271
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16249
16272
|
connected_account_id: string
|
|
16250
16273
|
event_type: 'device.connected'
|
|
16251
16274
|
}
|
|
16252
16275
|
| {
|
|
16253
|
-
/**
|
|
16276
|
+
/** ID of the event. */
|
|
16254
16277
|
event_id: string
|
|
16255
|
-
/**
|
|
16278
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16256
16279
|
workspace_id: string
|
|
16257
|
-
/**
|
|
16280
|
+
/** Time at which the event was created. */
|
|
16258
16281
|
created_at: string
|
|
16259
|
-
/**
|
|
16282
|
+
/** Time when the event occurred. */
|
|
16260
16283
|
occurred_at: string
|
|
16261
16284
|
/** ID of the device. */
|
|
16262
16285
|
device_id: string
|
|
16263
|
-
/** ID of the connected account. */
|
|
16286
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16264
16287
|
connected_account_id: string
|
|
16265
16288
|
event_type: 'device.added'
|
|
16266
16289
|
}
|
|
16267
16290
|
| {
|
|
16268
|
-
/**
|
|
16291
|
+
/** ID of the event. */
|
|
16269
16292
|
event_id: string
|
|
16270
|
-
/**
|
|
16293
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16271
16294
|
workspace_id: string
|
|
16272
|
-
/**
|
|
16295
|
+
/** Time at which the event was created. */
|
|
16273
16296
|
created_at: string
|
|
16274
|
-
/**
|
|
16297
|
+
/** Time when the event occurred. */
|
|
16275
16298
|
occurred_at: string
|
|
16276
16299
|
/** ID of the device. */
|
|
16277
16300
|
device_id: string
|
|
16278
|
-
/** ID of the connected account. */
|
|
16301
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16279
16302
|
connected_account_id: string
|
|
16280
16303
|
event_type: 'device.converted_to_unmanaged'
|
|
16281
16304
|
}
|
|
16282
16305
|
| {
|
|
16283
|
-
/**
|
|
16306
|
+
/** ID of the event. */
|
|
16284
16307
|
event_id: string
|
|
16285
|
-
/**
|
|
16308
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16286
16309
|
workspace_id: string
|
|
16287
|
-
/**
|
|
16310
|
+
/** Time at which the event was created. */
|
|
16288
16311
|
created_at: string
|
|
16289
|
-
/**
|
|
16312
|
+
/** Time when the event occurred. */
|
|
16290
16313
|
occurred_at: string
|
|
16291
16314
|
/** ID of the device. */
|
|
16292
16315
|
device_id: string
|
|
16293
|
-
/** ID of the connected account. */
|
|
16316
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16294
16317
|
connected_account_id: string
|
|
16295
16318
|
event_type: 'device.unmanaged.converted_to_managed'
|
|
16296
16319
|
}
|
|
16297
16320
|
| {
|
|
16298
|
-
/**
|
|
16321
|
+
/** ID of the event. */
|
|
16299
16322
|
event_id: string
|
|
16300
|
-
/**
|
|
16323
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16301
16324
|
workspace_id: string
|
|
16302
|
-
/**
|
|
16325
|
+
/** Time at which the event was created. */
|
|
16303
16326
|
created_at: string
|
|
16304
|
-
/**
|
|
16327
|
+
/** Time when the event occurred. */
|
|
16305
16328
|
occurred_at: string
|
|
16306
16329
|
/** ID of the device. */
|
|
16307
16330
|
device_id: string
|
|
16308
|
-
/** ID of the connected account. */
|
|
16331
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16309
16332
|
connected_account_id: string
|
|
16310
16333
|
event_type: 'device.unmanaged.connected'
|
|
16311
16334
|
}
|
|
16312
16335
|
| {
|
|
16313
|
-
/**
|
|
16336
|
+
/** ID of the event. */
|
|
16314
16337
|
event_id: string
|
|
16315
|
-
/**
|
|
16338
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16316
16339
|
workspace_id: string
|
|
16317
|
-
/**
|
|
16340
|
+
/** Time at which the event was created. */
|
|
16318
16341
|
created_at: string
|
|
16319
|
-
/**
|
|
16342
|
+
/** Time when the event occurred. */
|
|
16320
16343
|
occurred_at: string
|
|
16321
16344
|
/** ID of the device. */
|
|
16322
16345
|
device_id: string
|
|
16323
|
-
/** ID of the connected account. */
|
|
16346
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16324
16347
|
connected_account_id: string
|
|
16325
16348
|
event_type: 'device.disconnected'
|
|
16326
|
-
/**
|
|
16349
|
+
/** Error code associated with the disconnection event, if any. */
|
|
16327
16350
|
error_code:
|
|
16328
16351
|
| 'account_disconnected'
|
|
16329
16352
|
| 'hub_disconnected'
|
|
16330
16353
|
| 'device_disconnected'
|
|
16331
16354
|
}
|
|
16332
16355
|
| {
|
|
16333
|
-
/**
|
|
16356
|
+
/** ID of the event. */
|
|
16334
16357
|
event_id: string
|
|
16335
|
-
/**
|
|
16358
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16336
16359
|
workspace_id: string
|
|
16337
|
-
/**
|
|
16360
|
+
/** Time at which the event was created. */
|
|
16338
16361
|
created_at: string
|
|
16339
|
-
/**
|
|
16362
|
+
/** Time when the event occurred. */
|
|
16340
16363
|
occurred_at: string
|
|
16341
16364
|
/** ID of the device. */
|
|
16342
16365
|
device_id: string
|
|
16343
|
-
/** ID of the connected account. */
|
|
16366
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16344
16367
|
connected_account_id: string
|
|
16345
16368
|
event_type: 'device.unmanaged.disconnected'
|
|
16346
|
-
/**
|
|
16369
|
+
/** Error code associated with the disconnection event, if any. */
|
|
16347
16370
|
error_code:
|
|
16348
16371
|
| 'account_disconnected'
|
|
16349
16372
|
| 'hub_disconnected'
|
|
16350
16373
|
| 'device_disconnected'
|
|
16351
16374
|
}
|
|
16352
16375
|
| {
|
|
16353
|
-
/**
|
|
16376
|
+
/** ID of the event. */
|
|
16354
16377
|
event_id: string
|
|
16355
|
-
/**
|
|
16378
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16356
16379
|
workspace_id: string
|
|
16357
|
-
/**
|
|
16380
|
+
/** Time at which the event was created. */
|
|
16358
16381
|
created_at: string
|
|
16359
|
-
/**
|
|
16382
|
+
/** Time when the event occurred. */
|
|
16360
16383
|
occurred_at: string
|
|
16361
16384
|
/** ID of the device. */
|
|
16362
16385
|
device_id: string
|
|
16363
|
-
/** ID of the connected account. */
|
|
16386
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16364
16387
|
connected_account_id: string
|
|
16365
16388
|
event_type: 'device.tampered'
|
|
16366
16389
|
}
|
|
16367
16390
|
| {
|
|
16368
|
-
/**
|
|
16391
|
+
/** ID of the event. */
|
|
16369
16392
|
event_id: string
|
|
16370
|
-
/**
|
|
16393
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16371
16394
|
workspace_id: string
|
|
16372
|
-
/**
|
|
16395
|
+
/** Time at which the event was created. */
|
|
16373
16396
|
created_at: string
|
|
16374
|
-
/**
|
|
16397
|
+
/** Time when the event occurred. */
|
|
16375
16398
|
occurred_at: string
|
|
16376
16399
|
/** ID of the device. */
|
|
16377
16400
|
device_id: string
|
|
16378
|
-
/** ID of the connected account. */
|
|
16401
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16379
16402
|
connected_account_id: string
|
|
16380
16403
|
event_type: 'device.low_battery'
|
|
16381
|
-
/**
|
|
16404
|
+
/** Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device. */
|
|
16382
16405
|
battery_level: number
|
|
16383
16406
|
}
|
|
16384
16407
|
| {
|
|
16385
|
-
/**
|
|
16408
|
+
/** ID of the event. */
|
|
16386
16409
|
event_id: string
|
|
16387
|
-
/**
|
|
16410
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16388
16411
|
workspace_id: string
|
|
16389
|
-
/**
|
|
16412
|
+
/** Time at which the event was created. */
|
|
16390
16413
|
created_at: string
|
|
16391
|
-
/**
|
|
16414
|
+
/** Time when the event occurred. */
|
|
16392
16415
|
occurred_at: string
|
|
16393
16416
|
/** ID of the device. */
|
|
16394
16417
|
device_id: string
|
|
16395
|
-
/** ID of the connected account. */
|
|
16418
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16396
16419
|
connected_account_id: string
|
|
16397
16420
|
event_type: 'device.battery_status_changed'
|
|
16398
|
-
/**
|
|
16421
|
+
/** Battery status of the device, calculated from the numeric `battery_level` value. */
|
|
16399
16422
|
battery_status: 'critical' | 'low' | 'good' | 'full'
|
|
16400
|
-
/**
|
|
16423
|
+
/** Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device. */
|
|
16401
16424
|
battery_level: number
|
|
16402
16425
|
}
|
|
16403
16426
|
| {
|
|
16404
|
-
/**
|
|
16427
|
+
/** ID of the event. */
|
|
16405
16428
|
event_id: string
|
|
16406
|
-
/**
|
|
16429
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16407
16430
|
workspace_id: string
|
|
16408
|
-
/**
|
|
16431
|
+
/** Time at which the event was created. */
|
|
16409
16432
|
created_at: string
|
|
16410
|
-
/**
|
|
16433
|
+
/** Time when the event occurred. */
|
|
16411
16434
|
occurred_at: string
|
|
16412
16435
|
/** ID of the device. */
|
|
16413
16436
|
device_id: string
|
|
16414
|
-
/** ID of the connected account. */
|
|
16437
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16415
16438
|
connected_account_id: string
|
|
16416
16439
|
event_type: 'device.removed'
|
|
16417
16440
|
}
|
|
16418
16441
|
| {
|
|
16419
|
-
/**
|
|
16442
|
+
/** ID of the event. */
|
|
16420
16443
|
event_id: string
|
|
16421
|
-
/**
|
|
16444
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16422
16445
|
workspace_id: string
|
|
16423
|
-
/**
|
|
16446
|
+
/** Time at which the event was created. */
|
|
16424
16447
|
created_at: string
|
|
16425
|
-
/**
|
|
16448
|
+
/** Time when the event occurred. */
|
|
16426
16449
|
occurred_at: string
|
|
16427
16450
|
/** ID of the device. */
|
|
16428
16451
|
device_id: string
|
|
16429
|
-
/** ID of the connected account. */
|
|
16452
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16430
16453
|
connected_account_id: string
|
|
16431
16454
|
event_type: 'device.deleted'
|
|
16432
16455
|
}
|
|
16433
16456
|
| {
|
|
16434
|
-
/**
|
|
16457
|
+
/** ID of the event. */
|
|
16435
16458
|
event_id: string
|
|
16436
|
-
/**
|
|
16459
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16437
16460
|
workspace_id: string
|
|
16438
|
-
/**
|
|
16461
|
+
/** Time at which the event was created. */
|
|
16439
16462
|
created_at: string
|
|
16440
|
-
/**
|
|
16463
|
+
/** Time when the event occurred. */
|
|
16441
16464
|
occurred_at: string
|
|
16442
16465
|
/** ID of the device. */
|
|
16443
16466
|
device_id: string
|
|
16444
|
-
/** ID of the connected account. */
|
|
16467
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16445
16468
|
connected_account_id: string
|
|
16446
16469
|
event_type: 'device.third_party_integration_detected'
|
|
16447
16470
|
}
|
|
16448
16471
|
| {
|
|
16449
|
-
/**
|
|
16472
|
+
/** ID of the event. */
|
|
16450
16473
|
event_id: string
|
|
16451
|
-
/**
|
|
16474
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16452
16475
|
workspace_id: string
|
|
16453
|
-
/**
|
|
16476
|
+
/** Time at which the event was created. */
|
|
16454
16477
|
created_at: string
|
|
16455
|
-
/**
|
|
16478
|
+
/** Time when the event occurred. */
|
|
16456
16479
|
occurred_at: string
|
|
16457
16480
|
/** ID of the device. */
|
|
16458
16481
|
device_id: string
|
|
16459
|
-
/** ID of the connected account. */
|
|
16482
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16460
16483
|
connected_account_id: string
|
|
16461
16484
|
event_type: 'device.third_party_integration_no_longer_detected'
|
|
16462
16485
|
}
|
|
16463
16486
|
| {
|
|
16464
|
-
/**
|
|
16487
|
+
/** ID of the event. */
|
|
16465
16488
|
event_id: string
|
|
16466
|
-
/**
|
|
16489
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16467
16490
|
workspace_id: string
|
|
16468
|
-
/**
|
|
16491
|
+
/** Time at which the event was created. */
|
|
16469
16492
|
created_at: string
|
|
16470
|
-
/**
|
|
16493
|
+
/** Time when the event occurred. */
|
|
16471
16494
|
occurred_at: string
|
|
16472
16495
|
/** ID of the device. */
|
|
16473
16496
|
device_id: string
|
|
16474
|
-
/** ID of the connected account. */
|
|
16497
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16475
16498
|
connected_account_id: string
|
|
16476
16499
|
event_type: 'device.salto.privacy_mode_activated'
|
|
16477
16500
|
}
|
|
16478
16501
|
| {
|
|
16479
|
-
/**
|
|
16502
|
+
/** ID of the event. */
|
|
16480
16503
|
event_id: string
|
|
16481
|
-
/**
|
|
16504
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16482
16505
|
workspace_id: string
|
|
16483
|
-
/**
|
|
16506
|
+
/** Time at which the event was created. */
|
|
16484
16507
|
created_at: string
|
|
16485
|
-
/**
|
|
16508
|
+
/** Time when the event occurred. */
|
|
16486
16509
|
occurred_at: string
|
|
16487
16510
|
/** ID of the device. */
|
|
16488
16511
|
device_id: string
|
|
16489
|
-
/** ID of the connected account. */
|
|
16512
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16490
16513
|
connected_account_id: string
|
|
16491
16514
|
event_type: 'device.salto.privacy_mode_deactivated'
|
|
16492
16515
|
}
|
|
16493
16516
|
| {
|
|
16494
|
-
/**
|
|
16517
|
+
/** ID of the event. */
|
|
16495
16518
|
event_id: string
|
|
16496
|
-
/**
|
|
16519
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16497
16520
|
workspace_id: string
|
|
16498
|
-
/**
|
|
16521
|
+
/** Time at which the event was created. */
|
|
16499
16522
|
created_at: string
|
|
16500
|
-
/**
|
|
16523
|
+
/** Time when the event occurred. */
|
|
16501
16524
|
occurred_at: string
|
|
16502
16525
|
/** ID of the device. */
|
|
16503
16526
|
device_id: string
|
|
16504
|
-
/** ID of the connected account. */
|
|
16527
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16505
16528
|
connected_account_id: string
|
|
16506
16529
|
event_type: 'device.connection_became_flaky'
|
|
16507
16530
|
}
|
|
16508
16531
|
| {
|
|
16509
|
-
/**
|
|
16532
|
+
/** ID of the event. */
|
|
16510
16533
|
event_id: string
|
|
16511
|
-
/**
|
|
16534
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16512
16535
|
workspace_id: string
|
|
16513
|
-
/**
|
|
16536
|
+
/** Time at which the event was created. */
|
|
16514
16537
|
created_at: string
|
|
16515
|
-
/**
|
|
16538
|
+
/** Time when the event occurred. */
|
|
16516
16539
|
occurred_at: string
|
|
16517
16540
|
/** ID of the device. */
|
|
16518
16541
|
device_id: string
|
|
16519
|
-
/** ID of the connected account. */
|
|
16542
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16520
16543
|
connected_account_id: string
|
|
16521
16544
|
event_type: 'device.connection_stabilized'
|
|
16522
16545
|
}
|
|
16523
16546
|
| {
|
|
16524
|
-
/**
|
|
16547
|
+
/** ID of the event. */
|
|
16525
16548
|
event_id: string
|
|
16526
|
-
/**
|
|
16549
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16527
16550
|
workspace_id: string
|
|
16528
|
-
/**
|
|
16551
|
+
/** Time at which the event was created. */
|
|
16529
16552
|
created_at: string
|
|
16530
|
-
/**
|
|
16553
|
+
/** Time when the event occurred. */
|
|
16531
16554
|
occurred_at: string
|
|
16532
16555
|
/** ID of the device. */
|
|
16533
16556
|
device_id: string
|
|
16534
|
-
/** ID of the connected account. */
|
|
16557
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16535
16558
|
connected_account_id: string
|
|
16536
16559
|
event_type: 'device.error.subscription_required'
|
|
16537
16560
|
}
|
|
16538
16561
|
| {
|
|
16539
|
-
/**
|
|
16562
|
+
/** ID of the event. */
|
|
16540
16563
|
event_id: string
|
|
16541
|
-
/**
|
|
16564
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16542
16565
|
workspace_id: string
|
|
16543
|
-
/**
|
|
16566
|
+
/** Time at which the event was created. */
|
|
16544
16567
|
created_at: string
|
|
16545
|
-
/**
|
|
16568
|
+
/** Time when the event occurred. */
|
|
16546
16569
|
occurred_at: string
|
|
16547
16570
|
/** ID of the device. */
|
|
16548
16571
|
device_id: string
|
|
16549
|
-
/** ID of the connected account. */
|
|
16572
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16550
16573
|
connected_account_id: string
|
|
16551
16574
|
event_type: 'device.error.subscription_required.resolved'
|
|
16552
16575
|
}
|
|
16553
16576
|
| {
|
|
16554
|
-
/**
|
|
16577
|
+
/** ID of the event. */
|
|
16555
16578
|
event_id: string
|
|
16556
|
-
/**
|
|
16579
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16557
16580
|
workspace_id: string
|
|
16558
|
-
/**
|
|
16581
|
+
/** Time at which the event was created. */
|
|
16559
16582
|
created_at: string
|
|
16560
|
-
/**
|
|
16583
|
+
/** Time when the event occurred. */
|
|
16561
16584
|
occurred_at: string
|
|
16562
16585
|
/** ID of the device. */
|
|
16563
16586
|
device_id: string
|
|
16564
|
-
/** ID of the connected account. */
|
|
16587
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16565
16588
|
connected_account_id: string
|
|
16566
16589
|
event_type: 'device.accessory_keypad_connected'
|
|
16567
16590
|
}
|
|
16568
16591
|
| {
|
|
16569
|
-
/**
|
|
16592
|
+
/** ID of the event. */
|
|
16570
16593
|
event_id: string
|
|
16571
|
-
/**
|
|
16594
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16572
16595
|
workspace_id: string
|
|
16573
|
-
/**
|
|
16596
|
+
/** Time at which the event was created. */
|
|
16574
16597
|
created_at: string
|
|
16575
|
-
/**
|
|
16598
|
+
/** Time when the event occurred. */
|
|
16576
16599
|
occurred_at: string
|
|
16577
16600
|
/** ID of the device. */
|
|
16578
16601
|
device_id: string
|
|
16579
|
-
/** ID of the connected account. */
|
|
16602
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16580
16603
|
connected_account_id: string
|
|
16581
16604
|
event_type: 'device.accessory_keypad_disconnected'
|
|
16582
16605
|
}
|
|
16583
16606
|
| {
|
|
16584
|
-
/**
|
|
16607
|
+
/** ID of the event. */
|
|
16585
16608
|
event_id: string
|
|
16586
|
-
/**
|
|
16609
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16587
16610
|
workspace_id: string
|
|
16588
|
-
/**
|
|
16611
|
+
/** Time at which the event was created. */
|
|
16589
16612
|
created_at: string
|
|
16590
|
-
/**
|
|
16613
|
+
/** Time when the event occurred. */
|
|
16591
16614
|
occurred_at: string
|
|
16592
16615
|
/** ID of the device. */
|
|
16593
16616
|
device_id: string
|
|
16594
|
-
/** ID of the connected account. */
|
|
16617
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16595
16618
|
connected_account_id: string
|
|
16596
16619
|
event_type: 'noise_sensor.noise_threshold_triggered'
|
|
16620
|
+
/** Detected noise level in decibels. */
|
|
16597
16621
|
noise_level_decibels?: number | undefined
|
|
16622
|
+
/** Detected noise level in Noiseaware Noise Risk Score (NRS). */
|
|
16598
16623
|
noise_level_nrs?: number | undefined
|
|
16624
|
+
/** ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered. */
|
|
16599
16625
|
noise_threshold_id?: string | undefined
|
|
16626
|
+
/** Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered. */
|
|
16600
16627
|
noise_threshold_name?: string | undefined
|
|
16601
|
-
/** Metadata from
|
|
16628
|
+
/** Metadata from Noiseaware. */
|
|
16602
16629
|
noiseaware_metadata?: Record<string, unknown> | undefined
|
|
16603
|
-
/** Metadata from
|
|
16630
|
+
/** Metadata from Minut. */
|
|
16604
16631
|
minut_metadata?: Record<string, unknown> | undefined
|
|
16605
16632
|
}
|
|
16606
16633
|
| {
|
|
16607
|
-
/**
|
|
16634
|
+
/** ID of the event. */
|
|
16608
16635
|
event_id: string
|
|
16609
|
-
/**
|
|
16636
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16610
16637
|
workspace_id: string
|
|
16611
|
-
/**
|
|
16638
|
+
/** Time at which the event was created. */
|
|
16612
16639
|
created_at: string
|
|
16613
|
-
/**
|
|
16640
|
+
/** Time when the event occurred. */
|
|
16614
16641
|
occurred_at: string
|
|
16615
16642
|
/** ID of the device. */
|
|
16616
16643
|
device_id: string
|
|
16617
|
-
/** ID of the connected account. */
|
|
16644
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16618
16645
|
connected_account_id: string
|
|
16619
16646
|
event_type: 'lock.locked'
|
|
16647
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device. */
|
|
16620
16648
|
access_code_id?: string | undefined
|
|
16649
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action. */
|
|
16621
16650
|
action_attempt_id?: string | undefined
|
|
16622
|
-
/** Method by which a lock device was locked
|
|
16651
|
+
/** 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. */
|
|
16623
16652
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
16624
16653
|
}
|
|
16625
16654
|
| {
|
|
16626
|
-
/**
|
|
16655
|
+
/** ID of the event. */
|
|
16627
16656
|
event_id: string
|
|
16628
|
-
/**
|
|
16657
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16629
16658
|
workspace_id: string
|
|
16630
|
-
/**
|
|
16659
|
+
/** Time at which the event was created. */
|
|
16631
16660
|
created_at: string
|
|
16632
|
-
/**
|
|
16661
|
+
/** Time when the event occurred. */
|
|
16633
16662
|
occurred_at: string
|
|
16634
16663
|
/** ID of the device. */
|
|
16635
16664
|
device_id: string
|
|
16636
|
-
/** ID of the connected account. */
|
|
16665
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16637
16666
|
connected_account_id: string
|
|
16638
16667
|
event_type: 'lock.unlocked'
|
|
16668
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device. */
|
|
16639
16669
|
access_code_id?: string | undefined
|
|
16670
|
+
/** ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action. */
|
|
16640
16671
|
action_attempt_id?: string | undefined
|
|
16641
|
-
/** Method by which a lock device was
|
|
16672
|
+
/** 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. */
|
|
16642
16673
|
method: 'keycode' | 'manual' | 'automatic' | 'unknown' | 'seamapi'
|
|
16643
16674
|
}
|
|
16644
16675
|
| {
|
|
16645
|
-
/**
|
|
16676
|
+
/** ID of the event. */
|
|
16646
16677
|
event_id: string
|
|
16647
|
-
/**
|
|
16678
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16648
16679
|
workspace_id: string
|
|
16649
|
-
/**
|
|
16680
|
+
/** Time at which the event was created. */
|
|
16650
16681
|
created_at: string
|
|
16651
|
-
/**
|
|
16682
|
+
/** Time when the event occurred. */
|
|
16652
16683
|
occurred_at: string
|
|
16653
16684
|
/** ID of the device. */
|
|
16654
16685
|
device_id: string
|
|
16655
|
-
/** ID of the connected account. */
|
|
16686
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16656
16687
|
connected_account_id: string
|
|
16657
16688
|
event_type: 'lock.access_denied'
|
|
16689
|
+
/** ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts. */
|
|
16658
16690
|
access_code_id?: string | undefined
|
|
16659
16691
|
}
|
|
16660
16692
|
| {
|
|
16661
|
-
/**
|
|
16693
|
+
/** ID of the event. */
|
|
16662
16694
|
event_id: string
|
|
16663
|
-
/**
|
|
16695
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16664
16696
|
workspace_id: string
|
|
16665
|
-
/**
|
|
16697
|
+
/** Time at which the event was created. */
|
|
16666
16698
|
created_at: string
|
|
16667
|
-
/**
|
|
16699
|
+
/** Time when the event occurred. */
|
|
16668
16700
|
occurred_at: string
|
|
16669
16701
|
/** ID of the device. */
|
|
16670
16702
|
device_id: string
|
|
16671
|
-
/** ID of the connected account. */
|
|
16703
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16672
16704
|
connected_account_id: string
|
|
16673
16705
|
event_type: 'thermostat.climate_preset_activated'
|
|
16706
|
+
/** ID of the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) that prompted the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to be activated. */
|
|
16674
16707
|
thermostat_schedule_id: string | null
|
|
16708
|
+
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated. */
|
|
16675
16709
|
climate_preset_key: string
|
|
16710
|
+
/** 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. */
|
|
16676
16711
|
is_fallback_climate_preset: boolean
|
|
16677
16712
|
}
|
|
16678
16713
|
| {
|
|
16679
|
-
/**
|
|
16714
|
+
/** ID of the event. */
|
|
16680
16715
|
event_id: string
|
|
16681
|
-
/**
|
|
16716
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16682
16717
|
workspace_id: string
|
|
16683
|
-
/**
|
|
16718
|
+
/** Time at which the event was created. */
|
|
16684
16719
|
created_at: string
|
|
16685
|
-
/**
|
|
16720
|
+
/** Time when the event occurred. */
|
|
16686
16721
|
occurred_at: string
|
|
16687
16722
|
/** ID of the device. */
|
|
16688
16723
|
device_id: string
|
|
16689
|
-
/** ID of the connected account. */
|
|
16724
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16690
16725
|
connected_account_id: string
|
|
16691
16726
|
event_type: 'thermostat.manually_adjusted'
|
|
16727
|
+
/** Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat. */
|
|
16692
16728
|
method: 'seam' | 'external'
|
|
16693
16729
|
/** Desired fan mode setting, such as `on`, `auto`, or `circulate`. */
|
|
16694
16730
|
fan_mode_setting?:
|
|
@@ -16708,68 +16744,80 @@ export interface Routes {
|
|
|
16708
16744
|
heating_set_point_fahrenheit?: (number | undefined) | undefined
|
|
16709
16745
|
}
|
|
16710
16746
|
| {
|
|
16711
|
-
/**
|
|
16747
|
+
/** ID of the event. */
|
|
16712
16748
|
event_id: string
|
|
16713
|
-
/**
|
|
16749
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16714
16750
|
workspace_id: string
|
|
16715
|
-
/**
|
|
16751
|
+
/** Time at which the event was created. */
|
|
16716
16752
|
created_at: string
|
|
16717
|
-
/**
|
|
16753
|
+
/** Time when the event occurred. */
|
|
16718
16754
|
occurred_at: string
|
|
16719
16755
|
/** ID of the device. */
|
|
16720
16756
|
device_id: string
|
|
16721
|
-
/** ID of the connected account. */
|
|
16757
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16722
16758
|
connected_account_id: string
|
|
16723
16759
|
event_type: 'thermostat.temperature_threshold_exceeded'
|
|
16760
|
+
/** Temperature, in °C, reported by the thermostat. */
|
|
16724
16761
|
temperature_celsius: number
|
|
16762
|
+
/** Temperature, in °F, reported by the thermostat. */
|
|
16725
16763
|
temperature_fahrenheit: number
|
|
16764
|
+
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16726
16765
|
upper_limit_celsius: number | null
|
|
16766
|
+
/** Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16727
16767
|
upper_limit_fahrenheit: number | null
|
|
16768
|
+
/** Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16728
16769
|
lower_limit_celsius: number | null
|
|
16770
|
+
/** Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16729
16771
|
lower_limit_fahrenheit: number | null
|
|
16730
16772
|
}
|
|
16731
16773
|
| {
|
|
16732
|
-
/**
|
|
16774
|
+
/** ID of the event. */
|
|
16733
16775
|
event_id: string
|
|
16734
|
-
/**
|
|
16776
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16735
16777
|
workspace_id: string
|
|
16736
|
-
/**
|
|
16778
|
+
/** Time at which the event was created. */
|
|
16737
16779
|
created_at: string
|
|
16738
|
-
/**
|
|
16780
|
+
/** Time when the event occurred. */
|
|
16739
16781
|
occurred_at: string
|
|
16740
16782
|
/** ID of the device. */
|
|
16741
16783
|
device_id: string
|
|
16742
|
-
/** ID of the connected account. */
|
|
16784
|
+
/** ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts). */
|
|
16743
16785
|
connected_account_id: string
|
|
16744
16786
|
event_type: 'thermostat.temperature_threshold_no_longer_exceeded'
|
|
16787
|
+
/** Temperature, in °C, reported by the thermostat. */
|
|
16745
16788
|
temperature_celsius: number
|
|
16789
|
+
/** Temperature, in °F, reported by the thermostat. */
|
|
16746
16790
|
temperature_fahrenheit: number
|
|
16791
|
+
/** Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16747
16792
|
upper_limit_celsius: number | null
|
|
16793
|
+
/** Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16748
16794
|
upper_limit_fahrenheit: number | null
|
|
16795
|
+
/** Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16749
16796
|
lower_limit_celsius: number | null
|
|
16797
|
+
/** Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds). */
|
|
16750
16798
|
lower_limit_fahrenheit: number | null
|
|
16751
16799
|
}
|
|
16752
16800
|
| {
|
|
16753
|
-
/**
|
|
16801
|
+
/** ID of the event. */
|
|
16754
16802
|
event_id: string
|
|
16755
|
-
/**
|
|
16803
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16756
16804
|
workspace_id: string
|
|
16757
|
-
/**
|
|
16805
|
+
/** Time at which the event was created. */
|
|
16758
16806
|
created_at: string
|
|
16759
|
-
/**
|
|
16807
|
+
/** Time when the event occurred. */
|
|
16760
16808
|
occurred_at: string
|
|
16761
16809
|
/** ID of the enrollment automation. */
|
|
16762
16810
|
enrollment_automation_id: string
|
|
16763
16811
|
event_type: 'enrollment_automation.deleted'
|
|
16764
16812
|
}
|
|
16765
16813
|
| {
|
|
16766
|
-
/**
|
|
16814
|
+
/** ID of the event. */
|
|
16767
16815
|
event_id: string
|
|
16768
|
-
/**
|
|
16816
|
+
/** ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces). */
|
|
16769
16817
|
workspace_id: string
|
|
16770
|
-
/**
|
|
16818
|
+
/** Time at which the event was created. */
|
|
16771
16819
|
created_at: string
|
|
16772
|
-
/**
|
|
16820
|
+
/** Time when the event occurred. */
|
|
16773
16821
|
occurred_at: string
|
|
16774
16822
|
/** ID of the device. */
|
|
16775
16823
|
device_id: string
|