@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
|
@@ -5320,10 +5320,9 @@ export default {
|
|
|
5320
5320
|
'x-title': 'Connected Account ID',
|
|
5321
5321
|
},
|
|
5322
5322
|
created_at: {
|
|
5323
|
-
description: '
|
|
5323
|
+
description: 'Time at which the event was created.',
|
|
5324
5324
|
format: 'date-time',
|
|
5325
5325
|
type: 'string',
|
|
5326
|
-
'x-title': 'Created At',
|
|
5327
5326
|
},
|
|
5328
5327
|
device_id: {
|
|
5329
5328
|
description: 'The ID of the device.',
|
|
@@ -5332,23 +5331,20 @@ export default {
|
|
|
5332
5331
|
'x-title': 'Device ID',
|
|
5333
5332
|
},
|
|
5334
5333
|
event_id: {
|
|
5335
|
-
description: '
|
|
5334
|
+
description: 'ID of the event.',
|
|
5336
5335
|
format: 'uuid',
|
|
5337
5336
|
type: 'string',
|
|
5338
|
-
'x-title': 'Event ID',
|
|
5339
5337
|
},
|
|
5340
5338
|
event_type: { enum: ['access_code.created'], type: 'string' },
|
|
5341
5339
|
occurred_at: {
|
|
5342
|
-
description: '
|
|
5340
|
+
description: 'Time when the event occurred.',
|
|
5343
5341
|
format: 'date-time',
|
|
5344
5342
|
type: 'string',
|
|
5345
|
-
'x-title': 'Occurred At',
|
|
5346
5343
|
},
|
|
5347
5344
|
workspace_id: {
|
|
5348
|
-
description: '
|
|
5345
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5349
5346
|
format: 'uuid',
|
|
5350
5347
|
type: 'string',
|
|
5351
|
-
'x-title': 'Workspace ID',
|
|
5352
5348
|
},
|
|
5353
5349
|
},
|
|
5354
5350
|
required: [
|
|
@@ -5379,10 +5375,9 @@ export default {
|
|
|
5379
5375
|
'x-title': 'Connected Account ID',
|
|
5380
5376
|
},
|
|
5381
5377
|
created_at: {
|
|
5382
|
-
description: '
|
|
5378
|
+
description: 'Time at which the event was created.',
|
|
5383
5379
|
format: 'date-time',
|
|
5384
5380
|
type: 'string',
|
|
5385
|
-
'x-title': 'Created At',
|
|
5386
5381
|
},
|
|
5387
5382
|
device_id: {
|
|
5388
5383
|
description: 'The ID of the device.',
|
|
@@ -5391,23 +5386,20 @@ export default {
|
|
|
5391
5386
|
'x-title': 'Device ID',
|
|
5392
5387
|
},
|
|
5393
5388
|
event_id: {
|
|
5394
|
-
description: '
|
|
5389
|
+
description: 'ID of the event.',
|
|
5395
5390
|
format: 'uuid',
|
|
5396
5391
|
type: 'string',
|
|
5397
|
-
'x-title': 'Event ID',
|
|
5398
5392
|
},
|
|
5399
5393
|
event_type: { enum: ['access_code.changed'], type: 'string' },
|
|
5400
5394
|
occurred_at: {
|
|
5401
|
-
description: '
|
|
5395
|
+
description: 'Time when the event occurred.',
|
|
5402
5396
|
format: 'date-time',
|
|
5403
5397
|
type: 'string',
|
|
5404
|
-
'x-title': 'Occurred At',
|
|
5405
5398
|
},
|
|
5406
5399
|
workspace_id: {
|
|
5407
|
-
description: '
|
|
5400
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5408
5401
|
format: 'uuid',
|
|
5409
5402
|
type: 'string',
|
|
5410
|
-
'x-title': 'Workspace ID',
|
|
5411
5403
|
},
|
|
5412
5404
|
},
|
|
5413
5405
|
required: [
|
|
@@ -5443,10 +5435,9 @@ export default {
|
|
|
5443
5435
|
'x-title': 'Connected Account ID',
|
|
5444
5436
|
},
|
|
5445
5437
|
created_at: {
|
|
5446
|
-
description: '
|
|
5438
|
+
description: 'Time at which the event was created.',
|
|
5447
5439
|
format: 'date-time',
|
|
5448
5440
|
type: 'string',
|
|
5449
|
-
'x-title': 'Created At',
|
|
5450
5441
|
},
|
|
5451
5442
|
device_id: {
|
|
5452
5443
|
description: 'The ID of the device.',
|
|
@@ -5455,26 +5446,23 @@ export default {
|
|
|
5455
5446
|
'x-title': 'Device ID',
|
|
5456
5447
|
},
|
|
5457
5448
|
event_id: {
|
|
5458
|
-
description: '
|
|
5449
|
+
description: 'ID of the event.',
|
|
5459
5450
|
format: 'uuid',
|
|
5460
5451
|
type: 'string',
|
|
5461
|
-
'x-title': 'Event ID',
|
|
5462
5452
|
},
|
|
5463
5453
|
event_type: {
|
|
5464
5454
|
enum: ['access_code.scheduled_on_device'],
|
|
5465
5455
|
type: 'string',
|
|
5466
5456
|
},
|
|
5467
5457
|
occurred_at: {
|
|
5468
|
-
description: '
|
|
5458
|
+
description: 'Time when the event occurred.',
|
|
5469
5459
|
format: 'date-time',
|
|
5470
5460
|
type: 'string',
|
|
5471
|
-
'x-title': 'Occurred At',
|
|
5472
5461
|
},
|
|
5473
5462
|
workspace_id: {
|
|
5474
|
-
description: '
|
|
5463
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5475
5464
|
format: 'uuid',
|
|
5476
5465
|
type: 'string',
|
|
5477
|
-
'x-title': 'Workspace ID',
|
|
5478
5466
|
},
|
|
5479
5467
|
},
|
|
5480
5468
|
required: [
|
|
@@ -5511,10 +5499,9 @@ export default {
|
|
|
5511
5499
|
'x-title': 'Connected Account ID',
|
|
5512
5500
|
},
|
|
5513
5501
|
created_at: {
|
|
5514
|
-
description: '
|
|
5502
|
+
description: 'Time at which the event was created.',
|
|
5515
5503
|
format: 'date-time',
|
|
5516
5504
|
type: 'string',
|
|
5517
|
-
'x-title': 'Created At',
|
|
5518
5505
|
},
|
|
5519
5506
|
device_id: {
|
|
5520
5507
|
description: 'The ID of the device.',
|
|
@@ -5523,26 +5510,23 @@ export default {
|
|
|
5523
5510
|
'x-title': 'Device ID',
|
|
5524
5511
|
},
|
|
5525
5512
|
event_id: {
|
|
5526
|
-
description: '
|
|
5513
|
+
description: 'ID of the event.',
|
|
5527
5514
|
format: 'uuid',
|
|
5528
5515
|
type: 'string',
|
|
5529
|
-
'x-title': 'Event ID',
|
|
5530
5516
|
},
|
|
5531
5517
|
event_type: {
|
|
5532
5518
|
enum: ['access_code.set_on_device'],
|
|
5533
5519
|
type: 'string',
|
|
5534
5520
|
},
|
|
5535
5521
|
occurred_at: {
|
|
5536
|
-
description: '
|
|
5522
|
+
description: 'Time when the event occurred.',
|
|
5537
5523
|
format: 'date-time',
|
|
5538
5524
|
type: 'string',
|
|
5539
|
-
'x-title': 'Occurred At',
|
|
5540
5525
|
},
|
|
5541
5526
|
workspace_id: {
|
|
5542
|
-
description: '
|
|
5527
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5543
5528
|
format: 'uuid',
|
|
5544
5529
|
type: 'string',
|
|
5545
|
-
'x-title': 'Workspace ID',
|
|
5546
5530
|
},
|
|
5547
5531
|
},
|
|
5548
5532
|
required: [
|
|
@@ -5574,10 +5558,9 @@ export default {
|
|
|
5574
5558
|
'x-title': 'Connected Account ID',
|
|
5575
5559
|
},
|
|
5576
5560
|
created_at: {
|
|
5577
|
-
description: '
|
|
5561
|
+
description: 'Time at which the event was created.',
|
|
5578
5562
|
format: 'date-time',
|
|
5579
5563
|
type: 'string',
|
|
5580
|
-
'x-title': 'Created At',
|
|
5581
5564
|
},
|
|
5582
5565
|
device_id: {
|
|
5583
5566
|
description: 'The ID of the device.',
|
|
@@ -5586,26 +5569,23 @@ export default {
|
|
|
5586
5569
|
'x-title': 'Device ID',
|
|
5587
5570
|
},
|
|
5588
5571
|
event_id: {
|
|
5589
|
-
description: '
|
|
5572
|
+
description: 'ID of the event.',
|
|
5590
5573
|
format: 'uuid',
|
|
5591
5574
|
type: 'string',
|
|
5592
|
-
'x-title': 'Event ID',
|
|
5593
5575
|
},
|
|
5594
5576
|
event_type: {
|
|
5595
5577
|
enum: ['access_code.removed_from_device'],
|
|
5596
5578
|
type: 'string',
|
|
5597
5579
|
},
|
|
5598
5580
|
occurred_at: {
|
|
5599
|
-
description: '
|
|
5581
|
+
description: 'Time when the event occurred.',
|
|
5600
5582
|
format: 'date-time',
|
|
5601
5583
|
type: 'string',
|
|
5602
|
-
'x-title': 'Occurred At',
|
|
5603
5584
|
},
|
|
5604
5585
|
workspace_id: {
|
|
5605
|
-
description: '
|
|
5586
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5606
5587
|
format: 'uuid',
|
|
5607
5588
|
type: 'string',
|
|
5608
|
-
'x-title': 'Workspace ID',
|
|
5609
5589
|
},
|
|
5610
5590
|
},
|
|
5611
5591
|
required: [
|
|
@@ -5636,10 +5616,9 @@ export default {
|
|
|
5636
5616
|
'x-title': 'Connected Account ID',
|
|
5637
5617
|
},
|
|
5638
5618
|
created_at: {
|
|
5639
|
-
description: '
|
|
5619
|
+
description: 'Time at which the event was created.',
|
|
5640
5620
|
format: 'date-time',
|
|
5641
5621
|
type: 'string',
|
|
5642
|
-
'x-title': 'Created At',
|
|
5643
5622
|
},
|
|
5644
5623
|
device_id: {
|
|
5645
5624
|
description: 'The ID of the device.',
|
|
@@ -5648,26 +5627,23 @@ export default {
|
|
|
5648
5627
|
'x-title': 'Device ID',
|
|
5649
5628
|
},
|
|
5650
5629
|
event_id: {
|
|
5651
|
-
description: '
|
|
5630
|
+
description: 'ID of the event.',
|
|
5652
5631
|
format: 'uuid',
|
|
5653
5632
|
type: 'string',
|
|
5654
|
-
'x-title': 'Event ID',
|
|
5655
5633
|
},
|
|
5656
5634
|
event_type: {
|
|
5657
5635
|
enum: ['access_code.delay_in_setting_on_device'],
|
|
5658
5636
|
type: 'string',
|
|
5659
5637
|
},
|
|
5660
5638
|
occurred_at: {
|
|
5661
|
-
description: '
|
|
5639
|
+
description: 'Time when the event occurred.',
|
|
5662
5640
|
format: 'date-time',
|
|
5663
5641
|
type: 'string',
|
|
5664
|
-
'x-title': 'Occurred At',
|
|
5665
5642
|
},
|
|
5666
5643
|
workspace_id: {
|
|
5667
|
-
description: '
|
|
5644
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5668
5645
|
format: 'uuid',
|
|
5669
5646
|
type: 'string',
|
|
5670
|
-
'x-title': 'Workspace ID',
|
|
5671
5647
|
},
|
|
5672
5648
|
},
|
|
5673
5649
|
required: [
|
|
@@ -5698,10 +5674,9 @@ export default {
|
|
|
5698
5674
|
'x-title': 'Connected Account ID',
|
|
5699
5675
|
},
|
|
5700
5676
|
created_at: {
|
|
5701
|
-
description: '
|
|
5677
|
+
description: 'Time at which the event was created.',
|
|
5702
5678
|
format: 'date-time',
|
|
5703
5679
|
type: 'string',
|
|
5704
|
-
'x-title': 'Created At',
|
|
5705
5680
|
},
|
|
5706
5681
|
device_id: {
|
|
5707
5682
|
description: 'The ID of the device.',
|
|
@@ -5710,26 +5685,23 @@ export default {
|
|
|
5710
5685
|
'x-title': 'Device ID',
|
|
5711
5686
|
},
|
|
5712
5687
|
event_id: {
|
|
5713
|
-
description: '
|
|
5688
|
+
description: 'ID of the event.',
|
|
5714
5689
|
format: 'uuid',
|
|
5715
5690
|
type: 'string',
|
|
5716
|
-
'x-title': 'Event ID',
|
|
5717
5691
|
},
|
|
5718
5692
|
event_type: {
|
|
5719
5693
|
enum: ['access_code.failed_to_set_on_device'],
|
|
5720
5694
|
type: 'string',
|
|
5721
5695
|
},
|
|
5722
5696
|
occurred_at: {
|
|
5723
|
-
description: '
|
|
5697
|
+
description: 'Time when the event occurred.',
|
|
5724
5698
|
format: 'date-time',
|
|
5725
5699
|
type: 'string',
|
|
5726
|
-
'x-title': 'Occurred At',
|
|
5727
5700
|
},
|
|
5728
5701
|
workspace_id: {
|
|
5729
|
-
description: '
|
|
5702
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5730
5703
|
format: 'uuid',
|
|
5731
5704
|
type: 'string',
|
|
5732
|
-
'x-title': 'Workspace ID',
|
|
5733
5705
|
},
|
|
5734
5706
|
},
|
|
5735
5707
|
required: [
|
|
@@ -5766,10 +5738,9 @@ export default {
|
|
|
5766
5738
|
'x-title': 'Connected Account ID',
|
|
5767
5739
|
},
|
|
5768
5740
|
created_at: {
|
|
5769
|
-
description: '
|
|
5741
|
+
description: 'Time at which the event was created.',
|
|
5770
5742
|
format: 'date-time',
|
|
5771
5743
|
type: 'string',
|
|
5772
|
-
'x-title': 'Created At',
|
|
5773
5744
|
},
|
|
5774
5745
|
device_id: {
|
|
5775
5746
|
description: 'The ID of the device.',
|
|
@@ -5778,23 +5749,20 @@ export default {
|
|
|
5778
5749
|
'x-title': 'Device ID',
|
|
5779
5750
|
},
|
|
5780
5751
|
event_id: {
|
|
5781
|
-
description: '
|
|
5752
|
+
description: 'ID of the event.',
|
|
5782
5753
|
format: 'uuid',
|
|
5783
5754
|
type: 'string',
|
|
5784
|
-
'x-title': 'Event ID',
|
|
5785
5755
|
},
|
|
5786
5756
|
event_type: { enum: ['access_code.deleted'], type: 'string' },
|
|
5787
5757
|
occurred_at: {
|
|
5788
|
-
description: '
|
|
5758
|
+
description: 'Time when the event occurred.',
|
|
5789
5759
|
format: 'date-time',
|
|
5790
5760
|
type: 'string',
|
|
5791
|
-
'x-title': 'Occurred At',
|
|
5792
5761
|
},
|
|
5793
5762
|
workspace_id: {
|
|
5794
|
-
description: '
|
|
5763
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5795
5764
|
format: 'uuid',
|
|
5796
5765
|
type: 'string',
|
|
5797
|
-
'x-title': 'Workspace ID',
|
|
5798
5766
|
},
|
|
5799
5767
|
},
|
|
5800
5768
|
required: [
|
|
@@ -5826,10 +5794,9 @@ export default {
|
|
|
5826
5794
|
'x-title': 'Connected Account ID',
|
|
5827
5795
|
},
|
|
5828
5796
|
created_at: {
|
|
5829
|
-
description: '
|
|
5797
|
+
description: 'Time at which the event was created.',
|
|
5830
5798
|
format: 'date-time',
|
|
5831
5799
|
type: 'string',
|
|
5832
|
-
'x-title': 'Created At',
|
|
5833
5800
|
},
|
|
5834
5801
|
device_id: {
|
|
5835
5802
|
description: 'The ID of the device.',
|
|
@@ -5838,26 +5805,23 @@ export default {
|
|
|
5838
5805
|
'x-title': 'Device ID',
|
|
5839
5806
|
},
|
|
5840
5807
|
event_id: {
|
|
5841
|
-
description: '
|
|
5808
|
+
description: 'ID of the event.',
|
|
5842
5809
|
format: 'uuid',
|
|
5843
5810
|
type: 'string',
|
|
5844
|
-
'x-title': 'Event ID',
|
|
5845
5811
|
},
|
|
5846
5812
|
event_type: {
|
|
5847
5813
|
enum: ['access_code.delay_in_removing_from_device'],
|
|
5848
5814
|
type: 'string',
|
|
5849
5815
|
},
|
|
5850
5816
|
occurred_at: {
|
|
5851
|
-
description: '
|
|
5817
|
+
description: 'Time when the event occurred.',
|
|
5852
5818
|
format: 'date-time',
|
|
5853
5819
|
type: 'string',
|
|
5854
|
-
'x-title': 'Occurred At',
|
|
5855
5820
|
},
|
|
5856
5821
|
workspace_id: {
|
|
5857
|
-
description: '
|
|
5822
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5858
5823
|
format: 'uuid',
|
|
5859
5824
|
type: 'string',
|
|
5860
|
-
'x-title': 'Workspace ID',
|
|
5861
5825
|
},
|
|
5862
5826
|
},
|
|
5863
5827
|
required: [
|
|
@@ -5888,10 +5852,9 @@ export default {
|
|
|
5888
5852
|
'x-title': 'Connected Account ID',
|
|
5889
5853
|
},
|
|
5890
5854
|
created_at: {
|
|
5891
|
-
description: '
|
|
5855
|
+
description: 'Time at which the event was created.',
|
|
5892
5856
|
format: 'date-time',
|
|
5893
5857
|
type: 'string',
|
|
5894
|
-
'x-title': 'Created At',
|
|
5895
5858
|
},
|
|
5896
5859
|
device_id: {
|
|
5897
5860
|
description: 'The ID of the device.',
|
|
@@ -5900,26 +5863,23 @@ export default {
|
|
|
5900
5863
|
'x-title': 'Device ID',
|
|
5901
5864
|
},
|
|
5902
5865
|
event_id: {
|
|
5903
|
-
description: '
|
|
5866
|
+
description: 'ID of the event.',
|
|
5904
5867
|
format: 'uuid',
|
|
5905
5868
|
type: 'string',
|
|
5906
|
-
'x-title': 'Event ID',
|
|
5907
5869
|
},
|
|
5908
5870
|
event_type: {
|
|
5909
5871
|
enum: ['access_code.failed_to_remove_from_device'],
|
|
5910
5872
|
type: 'string',
|
|
5911
5873
|
},
|
|
5912
5874
|
occurred_at: {
|
|
5913
|
-
description: '
|
|
5875
|
+
description: 'Time when the event occurred.',
|
|
5914
5876
|
format: 'date-time',
|
|
5915
5877
|
type: 'string',
|
|
5916
|
-
'x-title': 'Occurred At',
|
|
5917
5878
|
},
|
|
5918
5879
|
workspace_id: {
|
|
5919
|
-
description: '
|
|
5880
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5920
5881
|
format: 'uuid',
|
|
5921
5882
|
type: 'string',
|
|
5922
|
-
'x-title': 'Workspace ID',
|
|
5923
5883
|
},
|
|
5924
5884
|
},
|
|
5925
5885
|
required: [
|
|
@@ -5950,10 +5910,9 @@ export default {
|
|
|
5950
5910
|
'x-title': 'Connected Account ID',
|
|
5951
5911
|
},
|
|
5952
5912
|
created_at: {
|
|
5953
|
-
description: '
|
|
5913
|
+
description: 'Time at which the event was created.',
|
|
5954
5914
|
format: 'date-time',
|
|
5955
5915
|
type: 'string',
|
|
5956
|
-
'x-title': 'Created At',
|
|
5957
5916
|
},
|
|
5958
5917
|
device_id: {
|
|
5959
5918
|
description: 'The ID of the device.',
|
|
@@ -5962,26 +5921,23 @@ export default {
|
|
|
5962
5921
|
'x-title': 'Device ID',
|
|
5963
5922
|
},
|
|
5964
5923
|
event_id: {
|
|
5965
|
-
description: '
|
|
5924
|
+
description: 'ID of the event.',
|
|
5966
5925
|
format: 'uuid',
|
|
5967
5926
|
type: 'string',
|
|
5968
|
-
'x-title': 'Event ID',
|
|
5969
5927
|
},
|
|
5970
5928
|
event_type: {
|
|
5971
5929
|
enum: ['access_code.modified_external_to_seam'],
|
|
5972
5930
|
type: 'string',
|
|
5973
5931
|
},
|
|
5974
5932
|
occurred_at: {
|
|
5975
|
-
description: '
|
|
5933
|
+
description: 'Time when the event occurred.',
|
|
5976
5934
|
format: 'date-time',
|
|
5977
5935
|
type: 'string',
|
|
5978
|
-
'x-title': 'Occurred At',
|
|
5979
5936
|
},
|
|
5980
5937
|
workspace_id: {
|
|
5981
|
-
description: '
|
|
5938
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
5982
5939
|
format: 'uuid',
|
|
5983
5940
|
type: 'string',
|
|
5984
|
-
'x-title': 'Workspace ID',
|
|
5985
5941
|
},
|
|
5986
5942
|
},
|
|
5987
5943
|
required: [
|
|
@@ -6012,10 +5968,9 @@ export default {
|
|
|
6012
5968
|
'x-title': 'Connected Account ID',
|
|
6013
5969
|
},
|
|
6014
5970
|
created_at: {
|
|
6015
|
-
description: '
|
|
5971
|
+
description: 'Time at which the event was created.',
|
|
6016
5972
|
format: 'date-time',
|
|
6017
5973
|
type: 'string',
|
|
6018
|
-
'x-title': 'Created At',
|
|
6019
5974
|
},
|
|
6020
5975
|
device_id: {
|
|
6021
5976
|
description: 'The ID of the device.',
|
|
@@ -6024,26 +5979,23 @@ export default {
|
|
|
6024
5979
|
'x-title': 'Device ID',
|
|
6025
5980
|
},
|
|
6026
5981
|
event_id: {
|
|
6027
|
-
description: '
|
|
5982
|
+
description: 'ID of the event.',
|
|
6028
5983
|
format: 'uuid',
|
|
6029
5984
|
type: 'string',
|
|
6030
|
-
'x-title': 'Event ID',
|
|
6031
5985
|
},
|
|
6032
5986
|
event_type: {
|
|
6033
5987
|
enum: ['access_code.deleted_external_to_seam'],
|
|
6034
5988
|
type: 'string',
|
|
6035
5989
|
},
|
|
6036
5990
|
occurred_at: {
|
|
6037
|
-
description: '
|
|
5991
|
+
description: 'Time when the event occurred.',
|
|
6038
5992
|
format: 'date-time',
|
|
6039
5993
|
type: 'string',
|
|
6040
|
-
'x-title': 'Occurred At',
|
|
6041
5994
|
},
|
|
6042
5995
|
workspace_id: {
|
|
6043
|
-
description: '
|
|
5996
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6044
5997
|
format: 'uuid',
|
|
6045
5998
|
type: 'string',
|
|
6046
|
-
'x-title': 'Workspace ID',
|
|
6047
5999
|
},
|
|
6048
6000
|
},
|
|
6049
6001
|
required: [
|
|
@@ -6075,10 +6027,9 @@ export default {
|
|
|
6075
6027
|
'x-title': 'Connected Account ID',
|
|
6076
6028
|
},
|
|
6077
6029
|
created_at: {
|
|
6078
|
-
description: '
|
|
6030
|
+
description: 'Time at which the event was created.',
|
|
6079
6031
|
format: 'date-time',
|
|
6080
6032
|
type: 'string',
|
|
6081
|
-
'x-title': 'Created At',
|
|
6082
6033
|
},
|
|
6083
6034
|
device_id: {
|
|
6084
6035
|
description: 'The ID of the device.',
|
|
@@ -6087,26 +6038,23 @@ export default {
|
|
|
6087
6038
|
'x-title': 'Device ID',
|
|
6088
6039
|
},
|
|
6089
6040
|
event_id: {
|
|
6090
|
-
description: '
|
|
6041
|
+
description: 'ID of the event.',
|
|
6091
6042
|
format: 'uuid',
|
|
6092
6043
|
type: 'string',
|
|
6093
|
-
'x-title': 'Event ID',
|
|
6094
6044
|
},
|
|
6095
6045
|
event_type: {
|
|
6096
6046
|
enum: ['access_code.backup_access_code_pulled'],
|
|
6097
6047
|
type: 'string',
|
|
6098
6048
|
},
|
|
6099
6049
|
occurred_at: {
|
|
6100
|
-
description: '
|
|
6050
|
+
description: 'Time when the event occurred.',
|
|
6101
6051
|
format: 'date-time',
|
|
6102
6052
|
type: 'string',
|
|
6103
|
-
'x-title': 'Occurred At',
|
|
6104
6053
|
},
|
|
6105
6054
|
workspace_id: {
|
|
6106
|
-
description: '
|
|
6055
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6107
6056
|
format: 'uuid',
|
|
6108
6057
|
type: 'string',
|
|
6109
|
-
'x-title': 'Workspace ID',
|
|
6110
6058
|
},
|
|
6111
6059
|
},
|
|
6112
6060
|
required: [
|
|
@@ -6138,10 +6086,9 @@ export default {
|
|
|
6138
6086
|
'x-title': 'Connected Account ID',
|
|
6139
6087
|
},
|
|
6140
6088
|
created_at: {
|
|
6141
|
-
description: '
|
|
6089
|
+
description: 'Time at which the event was created.',
|
|
6142
6090
|
format: 'date-time',
|
|
6143
6091
|
type: 'string',
|
|
6144
|
-
'x-title': 'Created At',
|
|
6145
6092
|
},
|
|
6146
6093
|
device_id: {
|
|
6147
6094
|
description: 'The ID of the device.',
|
|
@@ -6150,26 +6097,23 @@ export default {
|
|
|
6150
6097
|
'x-title': 'Device ID',
|
|
6151
6098
|
},
|
|
6152
6099
|
event_id: {
|
|
6153
|
-
description: '
|
|
6100
|
+
description: 'ID of the event.',
|
|
6154
6101
|
format: 'uuid',
|
|
6155
6102
|
type: 'string',
|
|
6156
|
-
'x-title': 'Event ID',
|
|
6157
6103
|
},
|
|
6158
6104
|
event_type: {
|
|
6159
6105
|
enum: ['access_code.unmanaged.converted_to_managed'],
|
|
6160
6106
|
type: 'string',
|
|
6161
6107
|
},
|
|
6162
6108
|
occurred_at: {
|
|
6163
|
-
description: '
|
|
6109
|
+
description: 'Time when the event occurred.',
|
|
6164
6110
|
format: 'date-time',
|
|
6165
6111
|
type: 'string',
|
|
6166
|
-
'x-title': 'Occurred At',
|
|
6167
6112
|
},
|
|
6168
6113
|
workspace_id: {
|
|
6169
|
-
description: '
|
|
6114
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6170
6115
|
format: 'uuid',
|
|
6171
6116
|
type: 'string',
|
|
6172
|
-
'x-title': 'Workspace ID',
|
|
6173
6117
|
},
|
|
6174
6118
|
},
|
|
6175
6119
|
required: [
|
|
@@ -6200,10 +6144,9 @@ export default {
|
|
|
6200
6144
|
'x-title': 'Connected Account ID',
|
|
6201
6145
|
},
|
|
6202
6146
|
created_at: {
|
|
6203
|
-
description: '
|
|
6147
|
+
description: 'Time at which the event was created.',
|
|
6204
6148
|
format: 'date-time',
|
|
6205
6149
|
type: 'string',
|
|
6206
|
-
'x-title': 'Created At',
|
|
6207
6150
|
},
|
|
6208
6151
|
device_id: {
|
|
6209
6152
|
description: 'The ID of the device.',
|
|
@@ -6212,26 +6155,23 @@ export default {
|
|
|
6212
6155
|
'x-title': 'Device ID',
|
|
6213
6156
|
},
|
|
6214
6157
|
event_id: {
|
|
6215
|
-
description: '
|
|
6158
|
+
description: 'ID of the event.',
|
|
6216
6159
|
format: 'uuid',
|
|
6217
6160
|
type: 'string',
|
|
6218
|
-
'x-title': 'Event ID',
|
|
6219
6161
|
},
|
|
6220
6162
|
event_type: {
|
|
6221
6163
|
enum: ['access_code.unmanaged.failed_to_convert_to_managed'],
|
|
6222
6164
|
type: 'string',
|
|
6223
6165
|
},
|
|
6224
6166
|
occurred_at: {
|
|
6225
|
-
description: '
|
|
6167
|
+
description: 'Time when the event occurred.',
|
|
6226
6168
|
format: 'date-time',
|
|
6227
6169
|
type: 'string',
|
|
6228
|
-
'x-title': 'Occurred At',
|
|
6229
6170
|
},
|
|
6230
6171
|
workspace_id: {
|
|
6231
|
-
description: '
|
|
6172
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6232
6173
|
format: 'uuid',
|
|
6233
6174
|
type: 'string',
|
|
6234
|
-
'x-title': 'Workspace ID',
|
|
6235
6175
|
},
|
|
6236
6176
|
},
|
|
6237
6177
|
required: [
|
|
@@ -6262,10 +6202,9 @@ export default {
|
|
|
6262
6202
|
'x-title': 'Connected Account ID',
|
|
6263
6203
|
},
|
|
6264
6204
|
created_at: {
|
|
6265
|
-
description: '
|
|
6205
|
+
description: 'Time at which the event was created.',
|
|
6266
6206
|
format: 'date-time',
|
|
6267
6207
|
type: 'string',
|
|
6268
|
-
'x-title': 'Created At',
|
|
6269
6208
|
},
|
|
6270
6209
|
device_id: {
|
|
6271
6210
|
description: 'The ID of the device.',
|
|
@@ -6274,26 +6213,23 @@ export default {
|
|
|
6274
6213
|
'x-title': 'Device ID',
|
|
6275
6214
|
},
|
|
6276
6215
|
event_id: {
|
|
6277
|
-
description: '
|
|
6216
|
+
description: 'ID of the event.',
|
|
6278
6217
|
format: 'uuid',
|
|
6279
6218
|
type: 'string',
|
|
6280
|
-
'x-title': 'Event ID',
|
|
6281
6219
|
},
|
|
6282
6220
|
event_type: {
|
|
6283
6221
|
enum: ['access_code.unmanaged.created'],
|
|
6284
6222
|
type: 'string',
|
|
6285
6223
|
},
|
|
6286
6224
|
occurred_at: {
|
|
6287
|
-
description: '
|
|
6225
|
+
description: 'Time when the event occurred.',
|
|
6288
6226
|
format: 'date-time',
|
|
6289
6227
|
type: 'string',
|
|
6290
|
-
'x-title': 'Occurred At',
|
|
6291
6228
|
},
|
|
6292
6229
|
workspace_id: {
|
|
6293
|
-
description: '
|
|
6230
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6294
6231
|
format: 'uuid',
|
|
6295
6232
|
type: 'string',
|
|
6296
|
-
'x-title': 'Workspace ID',
|
|
6297
6233
|
},
|
|
6298
6234
|
},
|
|
6299
6235
|
required: [
|
|
@@ -6324,10 +6260,9 @@ export default {
|
|
|
6324
6260
|
'x-title': 'Connected Account ID',
|
|
6325
6261
|
},
|
|
6326
6262
|
created_at: {
|
|
6327
|
-
description: '
|
|
6263
|
+
description: 'Time at which the event was created.',
|
|
6328
6264
|
format: 'date-time',
|
|
6329
6265
|
type: 'string',
|
|
6330
|
-
'x-title': 'Created At',
|
|
6331
6266
|
},
|
|
6332
6267
|
device_id: {
|
|
6333
6268
|
description: 'The ID of the device.',
|
|
@@ -6336,26 +6271,23 @@ export default {
|
|
|
6336
6271
|
'x-title': 'Device ID',
|
|
6337
6272
|
},
|
|
6338
6273
|
event_id: {
|
|
6339
|
-
description: '
|
|
6274
|
+
description: 'ID of the event.',
|
|
6340
6275
|
format: 'uuid',
|
|
6341
6276
|
type: 'string',
|
|
6342
|
-
'x-title': 'Event ID',
|
|
6343
6277
|
},
|
|
6344
6278
|
event_type: {
|
|
6345
6279
|
enum: ['access_code.unmanaged.removed'],
|
|
6346
6280
|
type: 'string',
|
|
6347
6281
|
},
|
|
6348
6282
|
occurred_at: {
|
|
6349
|
-
description: '
|
|
6283
|
+
description: 'Time when the event occurred.',
|
|
6350
6284
|
format: 'date-time',
|
|
6351
6285
|
type: 'string',
|
|
6352
|
-
'x-title': 'Occurred At',
|
|
6353
6286
|
},
|
|
6354
6287
|
workspace_id: {
|
|
6355
|
-
description: '
|
|
6288
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6356
6289
|
format: 'uuid',
|
|
6357
6290
|
type: 'string',
|
|
6358
|
-
'x-title': 'Workspace ID',
|
|
6359
6291
|
},
|
|
6360
6292
|
},
|
|
6361
6293
|
required: [
|
|
@@ -6388,29 +6320,25 @@ export default {
|
|
|
6388
6320
|
'x-title': 'Connected Account ID',
|
|
6389
6321
|
},
|
|
6390
6322
|
created_at: {
|
|
6391
|
-
description: '
|
|
6323
|
+
description: 'Time at which the event was created.',
|
|
6392
6324
|
format: 'date-time',
|
|
6393
6325
|
type: 'string',
|
|
6394
|
-
'x-title': 'Created At',
|
|
6395
6326
|
},
|
|
6396
6327
|
event_id: {
|
|
6397
|
-
description: '
|
|
6328
|
+
description: 'ID of the event.',
|
|
6398
6329
|
format: 'uuid',
|
|
6399
6330
|
type: 'string',
|
|
6400
|
-
'x-title': 'Event ID',
|
|
6401
6331
|
},
|
|
6402
6332
|
event_type: { enum: ['acs_system.connected'], type: 'string' },
|
|
6403
6333
|
occurred_at: {
|
|
6404
|
-
description: '
|
|
6334
|
+
description: 'Time when the event occurred.',
|
|
6405
6335
|
format: 'date-time',
|
|
6406
6336
|
type: 'string',
|
|
6407
|
-
'x-title': 'Occurred At',
|
|
6408
6337
|
},
|
|
6409
6338
|
workspace_id: {
|
|
6410
|
-
description: '
|
|
6339
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6411
6340
|
format: 'uuid',
|
|
6412
6341
|
type: 'string',
|
|
6413
|
-
'x-title': 'Workspace ID',
|
|
6414
6342
|
},
|
|
6415
6343
|
},
|
|
6416
6344
|
required: [
|
|
@@ -6441,29 +6369,25 @@ export default {
|
|
|
6441
6369
|
'x-title': 'Connected Account ID',
|
|
6442
6370
|
},
|
|
6443
6371
|
created_at: {
|
|
6444
|
-
description: '
|
|
6372
|
+
description: 'Time at which the event was created.',
|
|
6445
6373
|
format: 'date-time',
|
|
6446
6374
|
type: 'string',
|
|
6447
|
-
'x-title': 'Created At',
|
|
6448
6375
|
},
|
|
6449
6376
|
event_id: {
|
|
6450
|
-
description: '
|
|
6377
|
+
description: 'ID of the event.',
|
|
6451
6378
|
format: 'uuid',
|
|
6452
6379
|
type: 'string',
|
|
6453
|
-
'x-title': 'Event ID',
|
|
6454
6380
|
},
|
|
6455
6381
|
event_type: { enum: ['acs_system.added'], type: 'string' },
|
|
6456
6382
|
occurred_at: {
|
|
6457
|
-
description: '
|
|
6383
|
+
description: 'Time when the event occurred.',
|
|
6458
6384
|
format: 'date-time',
|
|
6459
6385
|
type: 'string',
|
|
6460
|
-
'x-title': 'Occurred At',
|
|
6461
6386
|
},
|
|
6462
6387
|
workspace_id: {
|
|
6463
|
-
description: '
|
|
6388
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6464
6389
|
format: 'uuid',
|
|
6465
6390
|
type: 'string',
|
|
6466
|
-
'x-title': 'Workspace ID',
|
|
6467
6391
|
},
|
|
6468
6392
|
},
|
|
6469
6393
|
required: [
|
|
@@ -6494,29 +6418,25 @@ export default {
|
|
|
6494
6418
|
'x-title': 'Connected Account ID',
|
|
6495
6419
|
},
|
|
6496
6420
|
created_at: {
|
|
6497
|
-
description: '
|
|
6421
|
+
description: 'Time at which the event was created.',
|
|
6498
6422
|
format: 'date-time',
|
|
6499
6423
|
type: 'string',
|
|
6500
|
-
'x-title': 'Created At',
|
|
6501
6424
|
},
|
|
6502
6425
|
event_id: {
|
|
6503
|
-
description: '
|
|
6426
|
+
description: 'ID of the event.',
|
|
6504
6427
|
format: 'uuid',
|
|
6505
6428
|
type: 'string',
|
|
6506
|
-
'x-title': 'Event ID',
|
|
6507
6429
|
},
|
|
6508
6430
|
event_type: { enum: ['acs_system.disconnected'], type: 'string' },
|
|
6509
6431
|
occurred_at: {
|
|
6510
|
-
description: '
|
|
6432
|
+
description: 'Time when the event occurred.',
|
|
6511
6433
|
format: 'date-time',
|
|
6512
6434
|
type: 'string',
|
|
6513
|
-
'x-title': 'Occurred At',
|
|
6514
6435
|
},
|
|
6515
6436
|
workspace_id: {
|
|
6516
|
-
description: '
|
|
6437
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6517
6438
|
format: 'uuid',
|
|
6518
6439
|
type: 'string',
|
|
6519
|
-
'x-title': 'Workspace ID',
|
|
6520
6440
|
},
|
|
6521
6441
|
},
|
|
6522
6442
|
required: [
|
|
@@ -6548,29 +6468,25 @@ export default {
|
|
|
6548
6468
|
'x-title': 'Connected Account ID',
|
|
6549
6469
|
},
|
|
6550
6470
|
created_at: {
|
|
6551
|
-
description: '
|
|
6471
|
+
description: 'Time at which the event was created.',
|
|
6552
6472
|
format: 'date-time',
|
|
6553
6473
|
type: 'string',
|
|
6554
|
-
'x-title': 'Created At',
|
|
6555
6474
|
},
|
|
6556
6475
|
event_id: {
|
|
6557
|
-
description: '
|
|
6476
|
+
description: 'ID of the event.',
|
|
6558
6477
|
format: 'uuid',
|
|
6559
6478
|
type: 'string',
|
|
6560
|
-
'x-title': 'Event ID',
|
|
6561
6479
|
},
|
|
6562
6480
|
event_type: { enum: ['acs_credential.deleted'], type: 'string' },
|
|
6563
6481
|
occurred_at: {
|
|
6564
|
-
description: '
|
|
6482
|
+
description: 'Time when the event occurred.',
|
|
6565
6483
|
format: 'date-time',
|
|
6566
6484
|
type: 'string',
|
|
6567
|
-
'x-title': 'Occurred At',
|
|
6568
6485
|
},
|
|
6569
6486
|
workspace_id: {
|
|
6570
|
-
description: '
|
|
6487
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6571
6488
|
format: 'uuid',
|
|
6572
6489
|
type: 'string',
|
|
6573
|
-
'x-title': 'Workspace ID',
|
|
6574
6490
|
},
|
|
6575
6491
|
},
|
|
6576
6492
|
required: [
|
|
@@ -6603,29 +6519,25 @@ export default {
|
|
|
6603
6519
|
'x-title': 'Connected Account ID',
|
|
6604
6520
|
},
|
|
6605
6521
|
created_at: {
|
|
6606
|
-
description: '
|
|
6522
|
+
description: 'Time at which the event was created.',
|
|
6607
6523
|
format: 'date-time',
|
|
6608
6524
|
type: 'string',
|
|
6609
|
-
'x-title': 'Created At',
|
|
6610
6525
|
},
|
|
6611
6526
|
event_id: {
|
|
6612
|
-
description: '
|
|
6527
|
+
description: 'ID of the event.',
|
|
6613
6528
|
format: 'uuid',
|
|
6614
6529
|
type: 'string',
|
|
6615
|
-
'x-title': 'Event ID',
|
|
6616
6530
|
},
|
|
6617
6531
|
event_type: { enum: ['acs_credential.issued'], type: 'string' },
|
|
6618
6532
|
occurred_at: {
|
|
6619
|
-
description: '
|
|
6533
|
+
description: 'Time when the event occurred.',
|
|
6620
6534
|
format: 'date-time',
|
|
6621
6535
|
type: 'string',
|
|
6622
|
-
'x-title': 'Occurred At',
|
|
6623
6536
|
},
|
|
6624
6537
|
workspace_id: {
|
|
6625
|
-
description: '
|
|
6538
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6626
6539
|
format: 'uuid',
|
|
6627
6540
|
type: 'string',
|
|
6628
|
-
'x-title': 'Workspace ID',
|
|
6629
6541
|
},
|
|
6630
6542
|
},
|
|
6631
6543
|
required: [
|
|
@@ -6658,29 +6570,25 @@ export default {
|
|
|
6658
6570
|
'x-title': 'Connected Account ID',
|
|
6659
6571
|
},
|
|
6660
6572
|
created_at: {
|
|
6661
|
-
description: '
|
|
6573
|
+
description: 'Time at which the event was created.',
|
|
6662
6574
|
format: 'date-time',
|
|
6663
6575
|
type: 'string',
|
|
6664
|
-
'x-title': 'Created At',
|
|
6665
6576
|
},
|
|
6666
6577
|
event_id: {
|
|
6667
|
-
description: '
|
|
6578
|
+
description: 'ID of the event.',
|
|
6668
6579
|
format: 'uuid',
|
|
6669
6580
|
type: 'string',
|
|
6670
|
-
'x-title': 'Event ID',
|
|
6671
6581
|
},
|
|
6672
6582
|
event_type: { enum: ['acs_user.deleted'], type: 'string' },
|
|
6673
6583
|
occurred_at: {
|
|
6674
|
-
description: '
|
|
6584
|
+
description: 'Time when the event occurred.',
|
|
6675
6585
|
format: 'date-time',
|
|
6676
6586
|
type: 'string',
|
|
6677
|
-
'x-title': 'Occurred At',
|
|
6678
6587
|
},
|
|
6679
6588
|
workspace_id: {
|
|
6680
|
-
description: '
|
|
6589
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6681
6590
|
format: 'uuid',
|
|
6682
6591
|
type: 'string',
|
|
6683
|
-
'x-title': 'Workspace ID',
|
|
6684
6592
|
},
|
|
6685
6593
|
},
|
|
6686
6594
|
required: [
|
|
@@ -6717,29 +6625,25 @@ export default {
|
|
|
6717
6625
|
'x-title': 'Connected Account ID',
|
|
6718
6626
|
},
|
|
6719
6627
|
created_at: {
|
|
6720
|
-
description: '
|
|
6628
|
+
description: 'Time at which the event was created.',
|
|
6721
6629
|
format: 'date-time',
|
|
6722
6630
|
type: 'string',
|
|
6723
|
-
'x-title': 'Created At',
|
|
6724
6631
|
},
|
|
6725
6632
|
event_id: {
|
|
6726
|
-
description: '
|
|
6633
|
+
description: 'ID of the event.',
|
|
6727
6634
|
format: 'uuid',
|
|
6728
6635
|
type: 'string',
|
|
6729
|
-
'x-title': 'Event ID',
|
|
6730
6636
|
},
|
|
6731
6637
|
event_type: { enum: ['acs_encoder.added'], type: 'string' },
|
|
6732
6638
|
occurred_at: {
|
|
6733
|
-
description: '
|
|
6639
|
+
description: 'Time when the event occurred.',
|
|
6734
6640
|
format: 'date-time',
|
|
6735
6641
|
type: 'string',
|
|
6736
|
-
'x-title': 'Occurred At',
|
|
6737
6642
|
},
|
|
6738
6643
|
workspace_id: {
|
|
6739
|
-
description: '
|
|
6644
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6740
6645
|
format: 'uuid',
|
|
6741
6646
|
type: 'string',
|
|
6742
|
-
'x-title': 'Workspace ID',
|
|
6743
6647
|
},
|
|
6744
6648
|
},
|
|
6745
6649
|
required: [
|
|
@@ -6776,29 +6680,25 @@ export default {
|
|
|
6776
6680
|
'x-title': 'Connected Account ID',
|
|
6777
6681
|
},
|
|
6778
6682
|
created_at: {
|
|
6779
|
-
description: '
|
|
6683
|
+
description: 'Time at which the event was created.',
|
|
6780
6684
|
format: 'date-time',
|
|
6781
6685
|
type: 'string',
|
|
6782
|
-
'x-title': 'Created At',
|
|
6783
6686
|
},
|
|
6784
6687
|
event_id: {
|
|
6785
|
-
description: '
|
|
6688
|
+
description: 'ID of the event.',
|
|
6786
6689
|
format: 'uuid',
|
|
6787
6690
|
type: 'string',
|
|
6788
|
-
'x-title': 'Event ID',
|
|
6789
6691
|
},
|
|
6790
6692
|
event_type: { enum: ['acs_encoder.removed'], type: 'string' },
|
|
6791
6693
|
occurred_at: {
|
|
6792
|
-
description: '
|
|
6694
|
+
description: 'Time when the event occurred.',
|
|
6793
6695
|
format: 'date-time',
|
|
6794
6696
|
type: 'string',
|
|
6795
|
-
'x-title': 'Occurred At',
|
|
6796
6697
|
},
|
|
6797
6698
|
workspace_id: {
|
|
6798
|
-
description: '
|
|
6699
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6799
6700
|
format: 'uuid',
|
|
6800
6701
|
type: 'string',
|
|
6801
|
-
'x-title': 'Workspace ID',
|
|
6802
6702
|
},
|
|
6803
6703
|
},
|
|
6804
6704
|
required: [
|
|
@@ -6822,29 +6722,25 @@ export default {
|
|
|
6822
6722
|
'x-title': 'Client Session ID',
|
|
6823
6723
|
},
|
|
6824
6724
|
created_at: {
|
|
6825
|
-
description: '
|
|
6725
|
+
description: 'Time at which the event was created.',
|
|
6826
6726
|
format: 'date-time',
|
|
6827
6727
|
type: 'string',
|
|
6828
|
-
'x-title': 'Created At',
|
|
6829
6728
|
},
|
|
6830
6729
|
event_id: {
|
|
6831
|
-
description: '
|
|
6730
|
+
description: 'ID of the event.',
|
|
6832
6731
|
format: 'uuid',
|
|
6833
6732
|
type: 'string',
|
|
6834
|
-
'x-title': 'Event ID',
|
|
6835
6733
|
},
|
|
6836
6734
|
event_type: { enum: ['client_session.deleted'], type: 'string' },
|
|
6837
6735
|
occurred_at: {
|
|
6838
|
-
description: '
|
|
6736
|
+
description: 'Time when the event occurred.',
|
|
6839
6737
|
format: 'date-time',
|
|
6840
6738
|
type: 'string',
|
|
6841
|
-
'x-title': 'Occurred At',
|
|
6842
6739
|
},
|
|
6843
6740
|
workspace_id: {
|
|
6844
|
-
description: '
|
|
6741
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6845
6742
|
format: 'uuid',
|
|
6846
6743
|
type: 'string',
|
|
6847
|
-
'x-title': 'Workspace ID',
|
|
6848
6744
|
},
|
|
6849
6745
|
},
|
|
6850
6746
|
required: [
|
|
@@ -6873,32 +6769,28 @@ export default {
|
|
|
6873
6769
|
'x-title': 'Connected Account ID',
|
|
6874
6770
|
},
|
|
6875
6771
|
created_at: {
|
|
6876
|
-
description: '
|
|
6772
|
+
description: 'Time at which the event was created.',
|
|
6877
6773
|
format: 'date-time',
|
|
6878
6774
|
type: 'string',
|
|
6879
|
-
'x-title': 'Created At',
|
|
6880
6775
|
},
|
|
6881
6776
|
event_id: {
|
|
6882
|
-
description: '
|
|
6777
|
+
description: 'ID of the event.',
|
|
6883
6778
|
format: 'uuid',
|
|
6884
6779
|
type: 'string',
|
|
6885
|
-
'x-title': 'Event ID',
|
|
6886
6780
|
},
|
|
6887
6781
|
event_type: {
|
|
6888
6782
|
enum: ['connected_account.connected'],
|
|
6889
6783
|
type: 'string',
|
|
6890
6784
|
},
|
|
6891
6785
|
occurred_at: {
|
|
6892
|
-
description: '
|
|
6786
|
+
description: 'Time when the event occurred.',
|
|
6893
6787
|
format: 'date-time',
|
|
6894
6788
|
type: 'string',
|
|
6895
|
-
'x-title': 'Occurred At',
|
|
6896
6789
|
},
|
|
6897
6790
|
workspace_id: {
|
|
6898
|
-
description: '
|
|
6791
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6899
6792
|
format: 'uuid',
|
|
6900
6793
|
type: 'string',
|
|
6901
|
-
'x-title': 'Workspace ID',
|
|
6902
6794
|
},
|
|
6903
6795
|
},
|
|
6904
6796
|
required: [
|
|
@@ -6928,32 +6820,28 @@ export default {
|
|
|
6928
6820
|
'x-title': 'Connected Account ID',
|
|
6929
6821
|
},
|
|
6930
6822
|
created_at: {
|
|
6931
|
-
description: '
|
|
6823
|
+
description: 'Time at which the event was created.',
|
|
6932
6824
|
format: 'date-time',
|
|
6933
6825
|
type: 'string',
|
|
6934
|
-
'x-title': 'Created At',
|
|
6935
6826
|
},
|
|
6936
6827
|
event_id: {
|
|
6937
|
-
description: '
|
|
6828
|
+
description: 'ID of the event.',
|
|
6938
6829
|
format: 'uuid',
|
|
6939
6830
|
type: 'string',
|
|
6940
|
-
'x-title': 'Event ID',
|
|
6941
6831
|
},
|
|
6942
6832
|
event_type: {
|
|
6943
6833
|
enum: ['connected_account.created'],
|
|
6944
6834
|
type: 'string',
|
|
6945
6835
|
},
|
|
6946
6836
|
occurred_at: {
|
|
6947
|
-
description: '
|
|
6837
|
+
description: 'Time when the event occurred.',
|
|
6948
6838
|
format: 'date-time',
|
|
6949
6839
|
type: 'string',
|
|
6950
|
-
'x-title': 'Occurred At',
|
|
6951
6840
|
},
|
|
6952
6841
|
workspace_id: {
|
|
6953
|
-
description: '
|
|
6842
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
6954
6843
|
format: 'uuid',
|
|
6955
6844
|
type: 'string',
|
|
6956
|
-
'x-title': 'Workspace ID',
|
|
6957
6845
|
},
|
|
6958
6846
|
},
|
|
6959
6847
|
required: [
|
|
@@ -6984,32 +6872,28 @@ export default {
|
|
|
6984
6872
|
'x-title': 'Connected Account ID',
|
|
6985
6873
|
},
|
|
6986
6874
|
created_at: {
|
|
6987
|
-
description: '
|
|
6875
|
+
description: 'Time at which the event was created.',
|
|
6988
6876
|
format: 'date-time',
|
|
6989
6877
|
type: 'string',
|
|
6990
|
-
'x-title': 'Created At',
|
|
6991
6878
|
},
|
|
6992
6879
|
event_id: {
|
|
6993
|
-
description: '
|
|
6880
|
+
description: 'ID of the event.',
|
|
6994
6881
|
format: 'uuid',
|
|
6995
6882
|
type: 'string',
|
|
6996
|
-
'x-title': 'Event ID',
|
|
6997
6883
|
},
|
|
6998
6884
|
event_type: {
|
|
6999
6885
|
enum: ['connected_account.successful_login'],
|
|
7000
6886
|
type: 'string',
|
|
7001
6887
|
},
|
|
7002
6888
|
occurred_at: {
|
|
7003
|
-
description: '
|
|
6889
|
+
description: 'Time when the event occurred.',
|
|
7004
6890
|
format: 'date-time',
|
|
7005
6891
|
type: 'string',
|
|
7006
|
-
'x-title': 'Occurred At',
|
|
7007
6892
|
},
|
|
7008
6893
|
workspace_id: {
|
|
7009
|
-
description: '
|
|
6894
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7010
6895
|
format: 'uuid',
|
|
7011
6896
|
type: 'string',
|
|
7012
|
-
'x-title': 'Workspace ID',
|
|
7013
6897
|
},
|
|
7014
6898
|
},
|
|
7015
6899
|
required: [
|
|
@@ -7034,32 +6918,28 @@ export default {
|
|
|
7034
6918
|
'x-title': 'Connected Account ID',
|
|
7035
6919
|
},
|
|
7036
6920
|
created_at: {
|
|
7037
|
-
description: '
|
|
6921
|
+
description: 'Time at which the event was created.',
|
|
7038
6922
|
format: 'date-time',
|
|
7039
6923
|
type: 'string',
|
|
7040
|
-
'x-title': 'Created At',
|
|
7041
6924
|
},
|
|
7042
6925
|
event_id: {
|
|
7043
|
-
description: '
|
|
6926
|
+
description: 'ID of the event.',
|
|
7044
6927
|
format: 'uuid',
|
|
7045
6928
|
type: 'string',
|
|
7046
|
-
'x-title': 'Event ID',
|
|
7047
6929
|
},
|
|
7048
6930
|
event_type: {
|
|
7049
6931
|
enum: ['connected_account.disconnected'],
|
|
7050
6932
|
type: 'string',
|
|
7051
6933
|
},
|
|
7052
6934
|
occurred_at: {
|
|
7053
|
-
description: '
|
|
6935
|
+
description: 'Time when the event occurred.',
|
|
7054
6936
|
format: 'date-time',
|
|
7055
6937
|
type: 'string',
|
|
7056
|
-
'x-title': 'Occurred At',
|
|
7057
6938
|
},
|
|
7058
6939
|
workspace_id: {
|
|
7059
|
-
description: '
|
|
6940
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7060
6941
|
format: 'uuid',
|
|
7061
6942
|
type: 'string',
|
|
7062
|
-
'x-title': 'Workspace ID',
|
|
7063
6943
|
},
|
|
7064
6944
|
},
|
|
7065
6945
|
required: [
|
|
@@ -7082,32 +6962,28 @@ export default {
|
|
|
7082
6962
|
'x-title': 'Connected Account ID',
|
|
7083
6963
|
},
|
|
7084
6964
|
created_at: {
|
|
7085
|
-
description: '
|
|
6965
|
+
description: 'Time at which the event was created.',
|
|
7086
6966
|
format: 'date-time',
|
|
7087
6967
|
type: 'string',
|
|
7088
|
-
'x-title': 'Created At',
|
|
7089
6968
|
},
|
|
7090
6969
|
event_id: {
|
|
7091
|
-
description: '
|
|
6970
|
+
description: 'ID of the event.',
|
|
7092
6971
|
format: 'uuid',
|
|
7093
6972
|
type: 'string',
|
|
7094
|
-
'x-title': 'Event ID',
|
|
7095
6973
|
},
|
|
7096
6974
|
event_type: {
|
|
7097
6975
|
enum: ['connected_account.completed_first_sync'],
|
|
7098
6976
|
type: 'string',
|
|
7099
6977
|
},
|
|
7100
6978
|
occurred_at: {
|
|
7101
|
-
description: '
|
|
6979
|
+
description: 'Time when the event occurred.',
|
|
7102
6980
|
format: 'date-time',
|
|
7103
6981
|
type: 'string',
|
|
7104
|
-
'x-title': 'Occurred At',
|
|
7105
6982
|
},
|
|
7106
6983
|
workspace_id: {
|
|
7107
|
-
description: '
|
|
6984
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7108
6985
|
format: 'uuid',
|
|
7109
6986
|
type: 'string',
|
|
7110
|
-
'x-title': 'Workspace ID',
|
|
7111
6987
|
},
|
|
7112
6988
|
},
|
|
7113
6989
|
required: [
|
|
@@ -7130,32 +7006,28 @@ export default {
|
|
|
7130
7006
|
'x-title': 'Connected Account ID',
|
|
7131
7007
|
},
|
|
7132
7008
|
created_at: {
|
|
7133
|
-
description: '
|
|
7009
|
+
description: 'Time at which the event was created.',
|
|
7134
7010
|
format: 'date-time',
|
|
7135
7011
|
type: 'string',
|
|
7136
|
-
'x-title': 'Created At',
|
|
7137
7012
|
},
|
|
7138
7013
|
event_id: {
|
|
7139
|
-
description: '
|
|
7014
|
+
description: 'ID of the event.',
|
|
7140
7015
|
format: 'uuid',
|
|
7141
7016
|
type: 'string',
|
|
7142
|
-
'x-title': 'Event ID',
|
|
7143
7017
|
},
|
|
7144
7018
|
event_type: {
|
|
7145
7019
|
enum: ['connected_account.deleted'],
|
|
7146
7020
|
type: 'string',
|
|
7147
7021
|
},
|
|
7148
7022
|
occurred_at: {
|
|
7149
|
-
description: '
|
|
7023
|
+
description: 'Time when the event occurred.',
|
|
7150
7024
|
format: 'date-time',
|
|
7151
7025
|
type: 'string',
|
|
7152
|
-
'x-title': 'Occurred At',
|
|
7153
7026
|
},
|
|
7154
7027
|
workspace_id: {
|
|
7155
|
-
description: '
|
|
7028
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7156
7029
|
format: 'uuid',
|
|
7157
7030
|
type: 'string',
|
|
7158
|
-
'x-title': 'Workspace ID',
|
|
7159
7031
|
},
|
|
7160
7032
|
},
|
|
7161
7033
|
required: [
|
|
@@ -7178,16 +7050,14 @@ export default {
|
|
|
7178
7050
|
'x-title': 'Connected Account ID',
|
|
7179
7051
|
},
|
|
7180
7052
|
created_at: {
|
|
7181
|
-
description: '
|
|
7053
|
+
description: 'Time at which the event was created.',
|
|
7182
7054
|
format: 'date-time',
|
|
7183
7055
|
type: 'string',
|
|
7184
|
-
'x-title': 'Created At',
|
|
7185
7056
|
},
|
|
7186
7057
|
event_id: {
|
|
7187
|
-
description: '
|
|
7058
|
+
description: 'ID of the event.',
|
|
7188
7059
|
format: 'uuid',
|
|
7189
7060
|
type: 'string',
|
|
7190
|
-
'x-title': 'Event ID',
|
|
7191
7061
|
},
|
|
7192
7062
|
event_type: {
|
|
7193
7063
|
enum: [
|
|
@@ -7196,16 +7066,14 @@ export default {
|
|
|
7196
7066
|
type: 'string',
|
|
7197
7067
|
},
|
|
7198
7068
|
occurred_at: {
|
|
7199
|
-
description: '
|
|
7069
|
+
description: 'Time when the event occurred.',
|
|
7200
7070
|
format: 'date-time',
|
|
7201
7071
|
type: 'string',
|
|
7202
|
-
'x-title': 'Occurred At',
|
|
7203
7072
|
},
|
|
7204
7073
|
workspace_id: {
|
|
7205
|
-
description: '
|
|
7074
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7206
7075
|
format: 'uuid',
|
|
7207
7076
|
type: 'string',
|
|
7208
|
-
'x-title': 'Workspace ID',
|
|
7209
7077
|
},
|
|
7210
7078
|
},
|
|
7211
7079
|
required: [
|
|
@@ -7233,26 +7101,23 @@ export default {
|
|
|
7233
7101
|
'x-title': 'Action Type',
|
|
7234
7102
|
},
|
|
7235
7103
|
created_at: {
|
|
7236
|
-
description: '
|
|
7104
|
+
description: 'Time at which the event was created.',
|
|
7237
7105
|
format: 'date-time',
|
|
7238
7106
|
type: 'string',
|
|
7239
|
-
'x-title': 'Created At',
|
|
7240
7107
|
},
|
|
7241
7108
|
event_id: {
|
|
7242
|
-
description: '
|
|
7109
|
+
description: 'ID of the event.',
|
|
7243
7110
|
format: 'uuid',
|
|
7244
7111
|
type: 'string',
|
|
7245
|
-
'x-title': 'Event ID',
|
|
7246
7112
|
},
|
|
7247
7113
|
event_type: {
|
|
7248
7114
|
enum: ['action_attempt.lock_door.succeeded'],
|
|
7249
7115
|
type: 'string',
|
|
7250
7116
|
},
|
|
7251
7117
|
occurred_at: {
|
|
7252
|
-
description: '
|
|
7118
|
+
description: 'Time when the event occurred.',
|
|
7253
7119
|
format: 'date-time',
|
|
7254
7120
|
type: 'string',
|
|
7255
|
-
'x-title': 'Occurred At',
|
|
7256
7121
|
},
|
|
7257
7122
|
status: {
|
|
7258
7123
|
description: 'The status of the action.',
|
|
@@ -7260,10 +7125,9 @@ export default {
|
|
|
7260
7125
|
'x-title': 'Status',
|
|
7261
7126
|
},
|
|
7262
7127
|
workspace_id: {
|
|
7263
|
-
description: '
|
|
7128
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7264
7129
|
format: 'uuid',
|
|
7265
7130
|
type: 'string',
|
|
7266
|
-
'x-title': 'Workspace ID',
|
|
7267
7131
|
},
|
|
7268
7132
|
},
|
|
7269
7133
|
required: [
|
|
@@ -7293,26 +7157,23 @@ export default {
|
|
|
7293
7157
|
'x-title': 'Action Type',
|
|
7294
7158
|
},
|
|
7295
7159
|
created_at: {
|
|
7296
|
-
description: '
|
|
7160
|
+
description: 'Time at which the event was created.',
|
|
7297
7161
|
format: 'date-time',
|
|
7298
7162
|
type: 'string',
|
|
7299
|
-
'x-title': 'Created At',
|
|
7300
7163
|
},
|
|
7301
7164
|
event_id: {
|
|
7302
|
-
description: '
|
|
7165
|
+
description: 'ID of the event.',
|
|
7303
7166
|
format: 'uuid',
|
|
7304
7167
|
type: 'string',
|
|
7305
|
-
'x-title': 'Event ID',
|
|
7306
7168
|
},
|
|
7307
7169
|
event_type: {
|
|
7308
7170
|
enum: ['action_attempt.lock_door.failed'],
|
|
7309
7171
|
type: 'string',
|
|
7310
7172
|
},
|
|
7311
7173
|
occurred_at: {
|
|
7312
|
-
description: '
|
|
7174
|
+
description: 'Time when the event occurred.',
|
|
7313
7175
|
format: 'date-time',
|
|
7314
7176
|
type: 'string',
|
|
7315
|
-
'x-title': 'Occurred At',
|
|
7316
7177
|
},
|
|
7317
7178
|
status: {
|
|
7318
7179
|
description: 'The status of the action.',
|
|
@@ -7320,10 +7181,9 @@ export default {
|
|
|
7320
7181
|
'x-title': 'Status',
|
|
7321
7182
|
},
|
|
7322
7183
|
workspace_id: {
|
|
7323
|
-
description: '
|
|
7184
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7324
7185
|
format: 'uuid',
|
|
7325
7186
|
type: 'string',
|
|
7326
|
-
'x-title': 'Workspace ID',
|
|
7327
7187
|
},
|
|
7328
7188
|
},
|
|
7329
7189
|
required: [
|
|
@@ -7353,26 +7213,23 @@ export default {
|
|
|
7353
7213
|
'x-title': 'Action Type',
|
|
7354
7214
|
},
|
|
7355
7215
|
created_at: {
|
|
7356
|
-
description: '
|
|
7216
|
+
description: 'Time at which the event was created.',
|
|
7357
7217
|
format: 'date-time',
|
|
7358
7218
|
type: 'string',
|
|
7359
|
-
'x-title': 'Created At',
|
|
7360
7219
|
},
|
|
7361
7220
|
event_id: {
|
|
7362
|
-
description: '
|
|
7221
|
+
description: 'ID of the event.',
|
|
7363
7222
|
format: 'uuid',
|
|
7364
7223
|
type: 'string',
|
|
7365
|
-
'x-title': 'Event ID',
|
|
7366
7224
|
},
|
|
7367
7225
|
event_type: {
|
|
7368
7226
|
enum: ['action_attempt.unlock_door.succeeded'],
|
|
7369
7227
|
type: 'string',
|
|
7370
7228
|
},
|
|
7371
7229
|
occurred_at: {
|
|
7372
|
-
description: '
|
|
7230
|
+
description: 'Time when the event occurred.',
|
|
7373
7231
|
format: 'date-time',
|
|
7374
7232
|
type: 'string',
|
|
7375
|
-
'x-title': 'Occurred At',
|
|
7376
7233
|
},
|
|
7377
7234
|
status: {
|
|
7378
7235
|
description: 'The status of the action.',
|
|
@@ -7380,10 +7237,9 @@ export default {
|
|
|
7380
7237
|
'x-title': 'Status',
|
|
7381
7238
|
},
|
|
7382
7239
|
workspace_id: {
|
|
7383
|
-
description: '
|
|
7240
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7384
7241
|
format: 'uuid',
|
|
7385
7242
|
type: 'string',
|
|
7386
|
-
'x-title': 'Workspace ID',
|
|
7387
7243
|
},
|
|
7388
7244
|
},
|
|
7389
7245
|
required: [
|
|
@@ -7413,26 +7269,23 @@ export default {
|
|
|
7413
7269
|
'x-title': 'Action Type',
|
|
7414
7270
|
},
|
|
7415
7271
|
created_at: {
|
|
7416
|
-
description: '
|
|
7272
|
+
description: 'Time at which the event was created.',
|
|
7417
7273
|
format: 'date-time',
|
|
7418
7274
|
type: 'string',
|
|
7419
|
-
'x-title': 'Created At',
|
|
7420
7275
|
},
|
|
7421
7276
|
event_id: {
|
|
7422
|
-
description: '
|
|
7277
|
+
description: 'ID of the event.',
|
|
7423
7278
|
format: 'uuid',
|
|
7424
7279
|
type: 'string',
|
|
7425
|
-
'x-title': 'Event ID',
|
|
7426
7280
|
},
|
|
7427
7281
|
event_type: {
|
|
7428
7282
|
enum: ['action_attempt.unlock_door.failed'],
|
|
7429
7283
|
type: 'string',
|
|
7430
7284
|
},
|
|
7431
7285
|
occurred_at: {
|
|
7432
|
-
description: '
|
|
7286
|
+
description: 'Time when the event occurred.',
|
|
7433
7287
|
format: 'date-time',
|
|
7434
7288
|
type: 'string',
|
|
7435
|
-
'x-title': 'Occurred At',
|
|
7436
7289
|
},
|
|
7437
7290
|
status: {
|
|
7438
7291
|
description: 'The status of the action.',
|
|
@@ -7440,10 +7293,9 @@ export default {
|
|
|
7440
7293
|
'x-title': 'Status',
|
|
7441
7294
|
},
|
|
7442
7295
|
workspace_id: {
|
|
7443
|
-
description: '
|
|
7296
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7444
7297
|
format: 'uuid',
|
|
7445
7298
|
type: 'string',
|
|
7446
|
-
'x-title': 'Workspace ID',
|
|
7447
7299
|
},
|
|
7448
7300
|
},
|
|
7449
7301
|
required: [
|
|
@@ -7474,32 +7326,28 @@ export default {
|
|
|
7474
7326
|
'x-title': 'Connected Account ID',
|
|
7475
7327
|
},
|
|
7476
7328
|
created_at: {
|
|
7477
|
-
description: '
|
|
7329
|
+
description: 'Time at which the event was created.',
|
|
7478
7330
|
format: 'date-time',
|
|
7479
7331
|
type: 'string',
|
|
7480
|
-
'x-title': 'Created At',
|
|
7481
7332
|
},
|
|
7482
7333
|
event_id: {
|
|
7483
|
-
description: '
|
|
7334
|
+
description: 'ID of the event.',
|
|
7484
7335
|
format: 'uuid',
|
|
7485
7336
|
type: 'string',
|
|
7486
|
-
'x-title': 'Event ID',
|
|
7487
7337
|
},
|
|
7488
7338
|
event_type: {
|
|
7489
7339
|
enum: ['connect_webview.login_succeeded'],
|
|
7490
7340
|
type: 'string',
|
|
7491
7341
|
},
|
|
7492
7342
|
occurred_at: {
|
|
7493
|
-
description: '
|
|
7343
|
+
description: 'Time when the event occurred.',
|
|
7494
7344
|
format: 'date-time',
|
|
7495
7345
|
type: 'string',
|
|
7496
|
-
'x-title': 'Occurred At',
|
|
7497
7346
|
},
|
|
7498
7347
|
workspace_id: {
|
|
7499
|
-
description: '
|
|
7348
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7500
7349
|
format: 'uuid',
|
|
7501
7350
|
type: 'string',
|
|
7502
|
-
'x-title': 'Workspace ID',
|
|
7503
7351
|
},
|
|
7504
7352
|
},
|
|
7505
7353
|
required: [
|
|
@@ -7523,32 +7371,28 @@ export default {
|
|
|
7523
7371
|
'x-title': 'Connect Webview ID',
|
|
7524
7372
|
},
|
|
7525
7373
|
created_at: {
|
|
7526
|
-
description: '
|
|
7374
|
+
description: 'Time at which the event was created.',
|
|
7527
7375
|
format: 'date-time',
|
|
7528
7376
|
type: 'string',
|
|
7529
|
-
'x-title': 'Created At',
|
|
7530
7377
|
},
|
|
7531
7378
|
event_id: {
|
|
7532
|
-
description: '
|
|
7379
|
+
description: 'ID of the event.',
|
|
7533
7380
|
format: 'uuid',
|
|
7534
7381
|
type: 'string',
|
|
7535
|
-
'x-title': 'Event ID',
|
|
7536
7382
|
},
|
|
7537
7383
|
event_type: {
|
|
7538
7384
|
enum: ['connect_webview.login_failed'],
|
|
7539
7385
|
type: 'string',
|
|
7540
7386
|
},
|
|
7541
7387
|
occurred_at: {
|
|
7542
|
-
description: '
|
|
7388
|
+
description: 'Time when the event occurred.',
|
|
7543
7389
|
format: 'date-time',
|
|
7544
7390
|
type: 'string',
|
|
7545
|
-
'x-title': 'Occurred At',
|
|
7546
7391
|
},
|
|
7547
7392
|
workspace_id: {
|
|
7548
|
-
description: '
|
|
7393
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7549
7394
|
format: 'uuid',
|
|
7550
7395
|
type: 'string',
|
|
7551
|
-
'x-title': 'Workspace ID',
|
|
7552
7396
|
},
|
|
7553
7397
|
},
|
|
7554
7398
|
required: [
|
|
@@ -7565,41 +7409,35 @@ export default {
|
|
|
7565
7409
|
description: 'A new device was connected to Seam.',
|
|
7566
7410
|
properties: {
|
|
7567
7411
|
connected_account_id: {
|
|
7568
|
-
description: 'ID of the connected account.',
|
|
7412
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7569
7413
|
format: 'uuid',
|
|
7570
7414
|
type: 'string',
|
|
7571
|
-
'x-title': 'Connected Account ID',
|
|
7572
7415
|
},
|
|
7573
7416
|
created_at: {
|
|
7574
|
-
description: '
|
|
7417
|
+
description: 'Time at which the event was created.',
|
|
7575
7418
|
format: 'date-time',
|
|
7576
7419
|
type: 'string',
|
|
7577
|
-
'x-title': 'Created At',
|
|
7578
7420
|
},
|
|
7579
7421
|
device_id: {
|
|
7580
7422
|
description: 'ID of the device.',
|
|
7581
7423
|
format: 'uuid',
|
|
7582
7424
|
type: 'string',
|
|
7583
|
-
'x-title': 'Device ID',
|
|
7584
7425
|
},
|
|
7585
7426
|
event_id: {
|
|
7586
|
-
description: '
|
|
7427
|
+
description: 'ID of the event.',
|
|
7587
7428
|
format: 'uuid',
|
|
7588
7429
|
type: 'string',
|
|
7589
|
-
'x-title': 'Event ID',
|
|
7590
7430
|
},
|
|
7591
7431
|
event_type: { enum: ['device.connected'], type: 'string' },
|
|
7592
7432
|
occurred_at: {
|
|
7593
|
-
description: '
|
|
7433
|
+
description: 'Time when the event occurred.',
|
|
7594
7434
|
format: 'date-time',
|
|
7595
7435
|
type: 'string',
|
|
7596
|
-
'x-title': 'Occurred At',
|
|
7597
7436
|
},
|
|
7598
7437
|
workspace_id: {
|
|
7599
|
-
description: '
|
|
7438
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7600
7439
|
format: 'uuid',
|
|
7601
7440
|
type: 'string',
|
|
7602
|
-
'x-title': 'Workspace ID',
|
|
7603
7441
|
},
|
|
7604
7442
|
},
|
|
7605
7443
|
required: [
|
|
@@ -7614,44 +7452,38 @@ export default {
|
|
|
7614
7452
|
type: 'object',
|
|
7615
7453
|
},
|
|
7616
7454
|
{
|
|
7617
|
-
description: 'A device
|
|
7455
|
+
description: 'A device was added or reconnected to Seam.',
|
|
7618
7456
|
properties: {
|
|
7619
7457
|
connected_account_id: {
|
|
7620
|
-
description: 'ID of the connected account.',
|
|
7458
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7621
7459
|
format: 'uuid',
|
|
7622
7460
|
type: 'string',
|
|
7623
|
-
'x-title': 'Connected Account ID',
|
|
7624
7461
|
},
|
|
7625
7462
|
created_at: {
|
|
7626
|
-
description: '
|
|
7463
|
+
description: 'Time at which the event was created.',
|
|
7627
7464
|
format: 'date-time',
|
|
7628
7465
|
type: 'string',
|
|
7629
|
-
'x-title': 'Created At',
|
|
7630
7466
|
},
|
|
7631
7467
|
device_id: {
|
|
7632
7468
|
description: 'ID of the device.',
|
|
7633
7469
|
format: 'uuid',
|
|
7634
7470
|
type: 'string',
|
|
7635
|
-
'x-title': 'Device ID',
|
|
7636
7471
|
},
|
|
7637
7472
|
event_id: {
|
|
7638
|
-
description: '
|
|
7473
|
+
description: 'ID of the event.',
|
|
7639
7474
|
format: 'uuid',
|
|
7640
7475
|
type: 'string',
|
|
7641
|
-
'x-title': 'Event ID',
|
|
7642
7476
|
},
|
|
7643
7477
|
event_type: { enum: ['device.added'], type: 'string' },
|
|
7644
7478
|
occurred_at: {
|
|
7645
|
-
description: '
|
|
7479
|
+
description: 'Time when the event occurred.',
|
|
7646
7480
|
format: 'date-time',
|
|
7647
7481
|
type: 'string',
|
|
7648
|
-
'x-title': 'Occurred At',
|
|
7649
7482
|
},
|
|
7650
7483
|
workspace_id: {
|
|
7651
|
-
description: '
|
|
7484
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7652
7485
|
format: 'uuid',
|
|
7653
7486
|
type: 'string',
|
|
7654
|
-
'x-title': 'Workspace ID',
|
|
7655
7487
|
},
|
|
7656
7488
|
},
|
|
7657
7489
|
required: [
|
|
@@ -7666,47 +7498,41 @@ export default {
|
|
|
7666
7498
|
type: 'object',
|
|
7667
7499
|
},
|
|
7668
7500
|
{
|
|
7669
|
-
description: 'An unmanaged device was successfully converted to a managed device.',
|
|
7501
|
+
description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.',
|
|
7670
7502
|
properties: {
|
|
7671
7503
|
connected_account_id: {
|
|
7672
|
-
description: 'ID of the connected account.',
|
|
7504
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7673
7505
|
format: 'uuid',
|
|
7674
7506
|
type: 'string',
|
|
7675
|
-
'x-title': 'Connected Account ID',
|
|
7676
7507
|
},
|
|
7677
7508
|
created_at: {
|
|
7678
|
-
description: '
|
|
7509
|
+
description: 'Time at which the event was created.',
|
|
7679
7510
|
format: 'date-time',
|
|
7680
7511
|
type: 'string',
|
|
7681
|
-
'x-title': 'Created At',
|
|
7682
7512
|
},
|
|
7683
7513
|
device_id: {
|
|
7684
7514
|
description: 'ID of the device.',
|
|
7685
7515
|
format: 'uuid',
|
|
7686
7516
|
type: 'string',
|
|
7687
|
-
'x-title': 'Device ID',
|
|
7688
7517
|
},
|
|
7689
7518
|
event_id: {
|
|
7690
|
-
description: '
|
|
7519
|
+
description: 'ID of the event.',
|
|
7691
7520
|
format: 'uuid',
|
|
7692
7521
|
type: 'string',
|
|
7693
|
-
'x-title': 'Event ID',
|
|
7694
7522
|
},
|
|
7695
7523
|
event_type: {
|
|
7696
7524
|
enum: ['device.converted_to_unmanaged'],
|
|
7697
7525
|
type: 'string',
|
|
7698
7526
|
},
|
|
7699
7527
|
occurred_at: {
|
|
7700
|
-
description: '
|
|
7528
|
+
description: 'Time when the event occurred.',
|
|
7701
7529
|
format: 'date-time',
|
|
7702
7530
|
type: 'string',
|
|
7703
|
-
'x-title': 'Occurred At',
|
|
7704
7531
|
},
|
|
7705
7532
|
workspace_id: {
|
|
7706
|
-
description: '
|
|
7533
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7707
7534
|
format: 'uuid',
|
|
7708
7535
|
type: 'string',
|
|
7709
|
-
'x-title': 'Workspace ID',
|
|
7710
7536
|
},
|
|
7711
7537
|
},
|
|
7712
7538
|
required: [
|
|
@@ -7721,47 +7547,41 @@ export default {
|
|
|
7721
7547
|
type: 'object',
|
|
7722
7548
|
},
|
|
7723
7549
|
{
|
|
7724
|
-
description: 'A managed device was successfully converted to an unmanaged device.',
|
|
7550
|
+
description: 'A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).',
|
|
7725
7551
|
properties: {
|
|
7726
7552
|
connected_account_id: {
|
|
7727
|
-
description: 'ID of the connected account.',
|
|
7553
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7728
7554
|
format: 'uuid',
|
|
7729
7555
|
type: 'string',
|
|
7730
|
-
'x-title': 'Connected Account ID',
|
|
7731
7556
|
},
|
|
7732
7557
|
created_at: {
|
|
7733
|
-
description: '
|
|
7558
|
+
description: 'Time at which the event was created.',
|
|
7734
7559
|
format: 'date-time',
|
|
7735
7560
|
type: 'string',
|
|
7736
|
-
'x-title': 'Created At',
|
|
7737
7561
|
},
|
|
7738
7562
|
device_id: {
|
|
7739
7563
|
description: 'ID of the device.',
|
|
7740
7564
|
format: 'uuid',
|
|
7741
7565
|
type: 'string',
|
|
7742
|
-
'x-title': 'Device ID',
|
|
7743
7566
|
},
|
|
7744
7567
|
event_id: {
|
|
7745
|
-
description: '
|
|
7568
|
+
description: 'ID of the event.',
|
|
7746
7569
|
format: 'uuid',
|
|
7747
7570
|
type: 'string',
|
|
7748
|
-
'x-title': 'Event ID',
|
|
7749
7571
|
},
|
|
7750
7572
|
event_type: {
|
|
7751
7573
|
enum: ['device.unmanaged.converted_to_managed'],
|
|
7752
7574
|
type: 'string',
|
|
7753
7575
|
},
|
|
7754
7576
|
occurred_at: {
|
|
7755
|
-
description: '
|
|
7577
|
+
description: 'Time when the event occurred.',
|
|
7756
7578
|
format: 'date-time',
|
|
7757
7579
|
type: 'string',
|
|
7758
|
-
'x-title': 'Occurred At',
|
|
7759
7580
|
},
|
|
7760
7581
|
workspace_id: {
|
|
7761
|
-
description: '
|
|
7582
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7762
7583
|
format: 'uuid',
|
|
7763
7584
|
type: 'string',
|
|
7764
|
-
'x-title': 'Workspace ID',
|
|
7765
7585
|
},
|
|
7766
7586
|
},
|
|
7767
7587
|
required: [
|
|
@@ -7776,47 +7596,41 @@ export default {
|
|
|
7776
7596
|
type: 'object',
|
|
7777
7597
|
},
|
|
7778
7598
|
{
|
|
7779
|
-
description: 'An unmanaged device was connected to Seam',
|
|
7599
|
+
description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was connected to Seam.',
|
|
7780
7600
|
properties: {
|
|
7781
7601
|
connected_account_id: {
|
|
7782
|
-
description: 'ID of the connected account.',
|
|
7602
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7783
7603
|
format: 'uuid',
|
|
7784
7604
|
type: 'string',
|
|
7785
|
-
'x-title': 'Connected Account ID',
|
|
7786
7605
|
},
|
|
7787
7606
|
created_at: {
|
|
7788
|
-
description: '
|
|
7607
|
+
description: 'Time at which the event was created.',
|
|
7789
7608
|
format: 'date-time',
|
|
7790
7609
|
type: 'string',
|
|
7791
|
-
'x-title': 'Created At',
|
|
7792
7610
|
},
|
|
7793
7611
|
device_id: {
|
|
7794
7612
|
description: 'ID of the device.',
|
|
7795
7613
|
format: 'uuid',
|
|
7796
7614
|
type: 'string',
|
|
7797
|
-
'x-title': 'Device ID',
|
|
7798
7615
|
},
|
|
7799
7616
|
event_id: {
|
|
7800
|
-
description: '
|
|
7617
|
+
description: 'ID of the event.',
|
|
7801
7618
|
format: 'uuid',
|
|
7802
7619
|
type: 'string',
|
|
7803
|
-
'x-title': 'Event ID',
|
|
7804
7620
|
},
|
|
7805
7621
|
event_type: {
|
|
7806
7622
|
enum: ['device.unmanaged.connected'],
|
|
7807
7623
|
type: 'string',
|
|
7808
7624
|
},
|
|
7809
7625
|
occurred_at: {
|
|
7810
|
-
description: '
|
|
7626
|
+
description: 'Time when the event occurred.',
|
|
7811
7627
|
format: 'date-time',
|
|
7812
7628
|
type: 'string',
|
|
7813
|
-
'x-title': 'Occurred At',
|
|
7814
7629
|
},
|
|
7815
7630
|
workspace_id: {
|
|
7816
|
-
description: '
|
|
7631
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7817
7632
|
format: 'uuid',
|
|
7818
7633
|
type: 'string',
|
|
7819
|
-
'x-title': 'Workspace ID',
|
|
7820
7634
|
},
|
|
7821
7635
|
},
|
|
7822
7636
|
required: [
|
|
@@ -7831,54 +7645,47 @@ export default {
|
|
|
7831
7645
|
type: 'object',
|
|
7832
7646
|
},
|
|
7833
7647
|
{
|
|
7834
|
-
description: 'A device was disconnected',
|
|
7648
|
+
description: 'A device was disconnected from Seam.',
|
|
7835
7649
|
properties: {
|
|
7836
7650
|
connected_account_id: {
|
|
7837
|
-
description: 'ID of the connected account.',
|
|
7651
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7838
7652
|
format: 'uuid',
|
|
7839
7653
|
type: 'string',
|
|
7840
|
-
'x-title': 'Connected Account ID',
|
|
7841
7654
|
},
|
|
7842
7655
|
created_at: {
|
|
7843
|
-
description: '
|
|
7656
|
+
description: 'Time at which the event was created.',
|
|
7844
7657
|
format: 'date-time',
|
|
7845
7658
|
type: 'string',
|
|
7846
|
-
'x-title': 'Created At',
|
|
7847
7659
|
},
|
|
7848
7660
|
device_id: {
|
|
7849
7661
|
description: 'ID of the device.',
|
|
7850
7662
|
format: 'uuid',
|
|
7851
7663
|
type: 'string',
|
|
7852
|
-
'x-title': 'Device ID',
|
|
7853
7664
|
},
|
|
7854
7665
|
error_code: {
|
|
7855
|
-
description: '
|
|
7666
|
+
description: 'Error code associated with the disconnection event, if any.',
|
|
7856
7667
|
enum: [
|
|
7857
7668
|
'account_disconnected',
|
|
7858
7669
|
'hub_disconnected',
|
|
7859
7670
|
'device_disconnected',
|
|
7860
7671
|
],
|
|
7861
7672
|
type: 'string',
|
|
7862
|
-
'x-title': 'Event Error Code',
|
|
7863
7673
|
},
|
|
7864
7674
|
event_id: {
|
|
7865
|
-
description: '
|
|
7675
|
+
description: 'ID of the event.',
|
|
7866
7676
|
format: 'uuid',
|
|
7867
7677
|
type: 'string',
|
|
7868
|
-
'x-title': 'Event ID',
|
|
7869
7678
|
},
|
|
7870
7679
|
event_type: { enum: ['device.disconnected'], type: 'string' },
|
|
7871
7680
|
occurred_at: {
|
|
7872
|
-
description: '
|
|
7681
|
+
description: 'Time when the event occurred.',
|
|
7873
7682
|
format: 'date-time',
|
|
7874
7683
|
type: 'string',
|
|
7875
|
-
'x-title': 'Occurred At',
|
|
7876
7684
|
},
|
|
7877
7685
|
workspace_id: {
|
|
7878
|
-
description: '
|
|
7686
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7879
7687
|
format: 'uuid',
|
|
7880
7688
|
type: 'string',
|
|
7881
|
-
'x-title': 'Workspace ID',
|
|
7882
7689
|
},
|
|
7883
7690
|
},
|
|
7884
7691
|
required: [
|
|
@@ -7894,57 +7701,50 @@ export default {
|
|
|
7894
7701
|
type: 'object',
|
|
7895
7702
|
},
|
|
7896
7703
|
{
|
|
7897
|
-
description: 'An unmanaged device was disconnected',
|
|
7704
|
+
description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was disconnected from Seam.',
|
|
7898
7705
|
properties: {
|
|
7899
7706
|
connected_account_id: {
|
|
7900
|
-
description: 'ID of the connected account.',
|
|
7707
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7901
7708
|
format: 'uuid',
|
|
7902
7709
|
type: 'string',
|
|
7903
|
-
'x-title': 'Connected Account ID',
|
|
7904
7710
|
},
|
|
7905
7711
|
created_at: {
|
|
7906
|
-
description: '
|
|
7712
|
+
description: 'Time at which the event was created.',
|
|
7907
7713
|
format: 'date-time',
|
|
7908
7714
|
type: 'string',
|
|
7909
|
-
'x-title': 'Created At',
|
|
7910
7715
|
},
|
|
7911
7716
|
device_id: {
|
|
7912
7717
|
description: 'ID of the device.',
|
|
7913
7718
|
format: 'uuid',
|
|
7914
7719
|
type: 'string',
|
|
7915
|
-
'x-title': 'Device ID',
|
|
7916
7720
|
},
|
|
7917
7721
|
error_code: {
|
|
7918
|
-
description: '
|
|
7722
|
+
description: 'Error code associated with the disconnection event, if any.',
|
|
7919
7723
|
enum: [
|
|
7920
7724
|
'account_disconnected',
|
|
7921
7725
|
'hub_disconnected',
|
|
7922
7726
|
'device_disconnected',
|
|
7923
7727
|
],
|
|
7924
7728
|
type: 'string',
|
|
7925
|
-
'x-title': 'Event Error Code',
|
|
7926
7729
|
},
|
|
7927
7730
|
event_id: {
|
|
7928
|
-
description: '
|
|
7731
|
+
description: 'ID of the event.',
|
|
7929
7732
|
format: 'uuid',
|
|
7930
7733
|
type: 'string',
|
|
7931
|
-
'x-title': 'Event ID',
|
|
7932
7734
|
},
|
|
7933
7735
|
event_type: {
|
|
7934
7736
|
enum: ['device.unmanaged.disconnected'],
|
|
7935
7737
|
type: 'string',
|
|
7936
7738
|
},
|
|
7937
7739
|
occurred_at: {
|
|
7938
|
-
description: '
|
|
7740
|
+
description: 'Time when the event occurred.',
|
|
7939
7741
|
format: 'date-time',
|
|
7940
7742
|
type: 'string',
|
|
7941
|
-
'x-title': 'Occurred At',
|
|
7942
7743
|
},
|
|
7943
7744
|
workspace_id: {
|
|
7944
|
-
description: '
|
|
7745
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7945
7746
|
format: 'uuid',
|
|
7946
7747
|
type: 'string',
|
|
7947
|
-
'x-title': 'Workspace ID',
|
|
7948
7748
|
},
|
|
7949
7749
|
},
|
|
7950
7750
|
required: [
|
|
@@ -7960,44 +7760,38 @@ export default {
|
|
|
7960
7760
|
type: 'object',
|
|
7961
7761
|
},
|
|
7962
7762
|
{
|
|
7963
|
-
description: 'A device detected that it was tampered with,
|
|
7763
|
+
description: 'A device detected that it was tampered with, for example, opened or moved.',
|
|
7964
7764
|
properties: {
|
|
7965
7765
|
connected_account_id: {
|
|
7966
|
-
description: 'ID of the connected account.',
|
|
7766
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
7967
7767
|
format: 'uuid',
|
|
7968
7768
|
type: 'string',
|
|
7969
|
-
'x-title': 'Connected Account ID',
|
|
7970
7769
|
},
|
|
7971
7770
|
created_at: {
|
|
7972
|
-
description: '
|
|
7771
|
+
description: 'Time at which the event was created.',
|
|
7973
7772
|
format: 'date-time',
|
|
7974
7773
|
type: 'string',
|
|
7975
|
-
'x-title': 'Created At',
|
|
7976
7774
|
},
|
|
7977
7775
|
device_id: {
|
|
7978
7776
|
description: 'ID of the device.',
|
|
7979
7777
|
format: 'uuid',
|
|
7980
7778
|
type: 'string',
|
|
7981
|
-
'x-title': 'Device ID',
|
|
7982
7779
|
},
|
|
7983
7780
|
event_id: {
|
|
7984
|
-
description: '
|
|
7781
|
+
description: 'ID of the event.',
|
|
7985
7782
|
format: 'uuid',
|
|
7986
7783
|
type: 'string',
|
|
7987
|
-
'x-title': 'Event ID',
|
|
7988
7784
|
},
|
|
7989
7785
|
event_type: { enum: ['device.tampered'], type: 'string' },
|
|
7990
7786
|
occurred_at: {
|
|
7991
|
-
description: '
|
|
7787
|
+
description: 'Time when the event occurred.',
|
|
7992
7788
|
format: 'date-time',
|
|
7993
7789
|
type: 'string',
|
|
7994
|
-
'x-title': 'Occurred At',
|
|
7995
7790
|
},
|
|
7996
7791
|
workspace_id: {
|
|
7997
|
-
description: '
|
|
7792
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
7998
7793
|
format: 'uuid',
|
|
7999
7794
|
type: 'string',
|
|
8000
|
-
'x-title': 'Workspace ID',
|
|
8001
7795
|
},
|
|
8002
7796
|
},
|
|
8003
7797
|
required: [
|
|
@@ -8015,49 +7809,42 @@ export default {
|
|
|
8015
7809
|
description: 'A device battery level dropped below the low threshold.',
|
|
8016
7810
|
properties: {
|
|
8017
7811
|
battery_level: {
|
|
8018
|
-
description: '
|
|
7812
|
+
description: 'Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.',
|
|
8019
7813
|
format: 'float',
|
|
8020
7814
|
maximum: 1,
|
|
8021
7815
|
minimum: 0,
|
|
8022
7816
|
type: 'number',
|
|
8023
|
-
'x-title': 'Battery Level',
|
|
8024
7817
|
},
|
|
8025
7818
|
connected_account_id: {
|
|
8026
|
-
description: 'ID of the connected account.',
|
|
7819
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8027
7820
|
format: 'uuid',
|
|
8028
7821
|
type: 'string',
|
|
8029
|
-
'x-title': 'Connected Account ID',
|
|
8030
7822
|
},
|
|
8031
7823
|
created_at: {
|
|
8032
|
-
description: '
|
|
7824
|
+
description: 'Time at which the event was created.',
|
|
8033
7825
|
format: 'date-time',
|
|
8034
7826
|
type: 'string',
|
|
8035
|
-
'x-title': 'Created At',
|
|
8036
7827
|
},
|
|
8037
7828
|
device_id: {
|
|
8038
7829
|
description: 'ID of the device.',
|
|
8039
7830
|
format: 'uuid',
|
|
8040
7831
|
type: 'string',
|
|
8041
|
-
'x-title': 'Device ID',
|
|
8042
7832
|
},
|
|
8043
7833
|
event_id: {
|
|
8044
|
-
description: '
|
|
7834
|
+
description: 'ID of the event.',
|
|
8045
7835
|
format: 'uuid',
|
|
8046
7836
|
type: 'string',
|
|
8047
|
-
'x-title': 'Event ID',
|
|
8048
7837
|
},
|
|
8049
7838
|
event_type: { enum: ['device.low_battery'], type: 'string' },
|
|
8050
7839
|
occurred_at: {
|
|
8051
|
-
description: '
|
|
7840
|
+
description: 'Time when the event occurred.',
|
|
8052
7841
|
format: 'date-time',
|
|
8053
7842
|
type: 'string',
|
|
8054
|
-
'x-title': 'Occurred At',
|
|
8055
7843
|
},
|
|
8056
7844
|
workspace_id: {
|
|
8057
|
-
description: '
|
|
7845
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8058
7846
|
format: 'uuid',
|
|
8059
7847
|
type: 'string',
|
|
8060
|
-
'x-title': 'Workspace ID',
|
|
8061
7848
|
},
|
|
8062
7849
|
},
|
|
8063
7850
|
required: [
|
|
@@ -8073,61 +7860,53 @@ export default {
|
|
|
8073
7860
|
type: 'object',
|
|
8074
7861
|
},
|
|
8075
7862
|
{
|
|
8076
|
-
description: 'A device battery status changed since the last
|
|
7863
|
+
description: 'A device battery status changed since the last `battery_status_changed` event.',
|
|
8077
7864
|
properties: {
|
|
8078
7865
|
battery_level: {
|
|
8079
|
-
description: '
|
|
7866
|
+
description: 'Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.',
|
|
8080
7867
|
format: 'float',
|
|
8081
7868
|
maximum: 1,
|
|
8082
7869
|
minimum: 0,
|
|
8083
7870
|
type: 'number',
|
|
8084
|
-
'x-title': 'Battery Level',
|
|
8085
7871
|
},
|
|
8086
7872
|
battery_status: {
|
|
8087
|
-
description:
|
|
7873
|
+
description: 'Battery status of the device, calculated from the numeric `battery_level` value.',
|
|
8088
7874
|
enum: ['critical', 'low', 'good', 'full'],
|
|
8089
7875
|
type: 'string',
|
|
8090
|
-
'x-title': 'Battery Status',
|
|
8091
7876
|
},
|
|
8092
7877
|
connected_account_id: {
|
|
8093
|
-
description: 'ID of the connected account.',
|
|
7878
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8094
7879
|
format: 'uuid',
|
|
8095
7880
|
type: 'string',
|
|
8096
|
-
'x-title': 'Connected Account ID',
|
|
8097
7881
|
},
|
|
8098
7882
|
created_at: {
|
|
8099
|
-
description: '
|
|
7883
|
+
description: 'Time at which the event was created.',
|
|
8100
7884
|
format: 'date-time',
|
|
8101
7885
|
type: 'string',
|
|
8102
|
-
'x-title': 'Created At',
|
|
8103
7886
|
},
|
|
8104
7887
|
device_id: {
|
|
8105
7888
|
description: 'ID of the device.',
|
|
8106
7889
|
format: 'uuid',
|
|
8107
7890
|
type: 'string',
|
|
8108
|
-
'x-title': 'Device ID',
|
|
8109
7891
|
},
|
|
8110
7892
|
event_id: {
|
|
8111
|
-
description: '
|
|
7893
|
+
description: 'ID of the event.',
|
|
8112
7894
|
format: 'uuid',
|
|
8113
7895
|
type: 'string',
|
|
8114
|
-
'x-title': 'Event ID',
|
|
8115
7896
|
},
|
|
8116
7897
|
event_type: {
|
|
8117
7898
|
enum: ['device.battery_status_changed'],
|
|
8118
7899
|
type: 'string',
|
|
8119
7900
|
},
|
|
8120
7901
|
occurred_at: {
|
|
8121
|
-
description: '
|
|
7902
|
+
description: 'Time when the event occurred.',
|
|
8122
7903
|
format: 'date-time',
|
|
8123
7904
|
type: 'string',
|
|
8124
|
-
'x-title': 'Occurred At',
|
|
8125
7905
|
},
|
|
8126
7906
|
workspace_id: {
|
|
8127
|
-
description: '
|
|
7907
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8128
7908
|
format: 'uuid',
|
|
8129
7909
|
type: 'string',
|
|
8130
|
-
'x-title': 'Workspace ID',
|
|
8131
7910
|
},
|
|
8132
7911
|
},
|
|
8133
7912
|
required: [
|
|
@@ -8144,44 +7923,38 @@ export default {
|
|
|
8144
7923
|
type: 'object',
|
|
8145
7924
|
},
|
|
8146
7925
|
{
|
|
8147
|
-
description: 'A device was removed externally from the connected account.',
|
|
7926
|
+
description: 'A device was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8148
7927
|
properties: {
|
|
8149
7928
|
connected_account_id: {
|
|
8150
|
-
description: 'ID of the connected account.',
|
|
7929
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8151
7930
|
format: 'uuid',
|
|
8152
7931
|
type: 'string',
|
|
8153
|
-
'x-title': 'Connected Account ID',
|
|
8154
7932
|
},
|
|
8155
7933
|
created_at: {
|
|
8156
|
-
description: '
|
|
7934
|
+
description: 'Time at which the event was created.',
|
|
8157
7935
|
format: 'date-time',
|
|
8158
7936
|
type: 'string',
|
|
8159
|
-
'x-title': 'Created At',
|
|
8160
7937
|
},
|
|
8161
7938
|
device_id: {
|
|
8162
7939
|
description: 'ID of the device.',
|
|
8163
7940
|
format: 'uuid',
|
|
8164
7941
|
type: 'string',
|
|
8165
|
-
'x-title': 'Device ID',
|
|
8166
7942
|
},
|
|
8167
7943
|
event_id: {
|
|
8168
|
-
description: '
|
|
7944
|
+
description: 'ID of the event.',
|
|
8169
7945
|
format: 'uuid',
|
|
8170
7946
|
type: 'string',
|
|
8171
|
-
'x-title': 'Event ID',
|
|
8172
7947
|
},
|
|
8173
7948
|
event_type: { enum: ['device.removed'], type: 'string' },
|
|
8174
7949
|
occurred_at: {
|
|
8175
|
-
description: '
|
|
7950
|
+
description: 'Time when the event occurred.',
|
|
8176
7951
|
format: 'date-time',
|
|
8177
7952
|
type: 'string',
|
|
8178
|
-
'x-title': 'Occurred At',
|
|
8179
7953
|
},
|
|
8180
7954
|
workspace_id: {
|
|
8181
|
-
description: '
|
|
7955
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8182
7956
|
format: 'uuid',
|
|
8183
7957
|
type: 'string',
|
|
8184
|
-
'x-title': 'Workspace ID',
|
|
8185
7958
|
},
|
|
8186
7959
|
},
|
|
8187
7960
|
required: [
|
|
@@ -8196,44 +7969,38 @@ export default {
|
|
|
8196
7969
|
type: 'object',
|
|
8197
7970
|
},
|
|
8198
7971
|
{
|
|
8199
|
-
description: 'A device was deleted.',
|
|
7972
|
+
description: 'A device was [deleted](https://docs.seam.co/latest/api/devices/delete).',
|
|
8200
7973
|
properties: {
|
|
8201
7974
|
connected_account_id: {
|
|
8202
|
-
description: 'ID of the connected account.',
|
|
7975
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8203
7976
|
format: 'uuid',
|
|
8204
7977
|
type: 'string',
|
|
8205
|
-
'x-title': 'Connected Account ID',
|
|
8206
7978
|
},
|
|
8207
7979
|
created_at: {
|
|
8208
|
-
description: '
|
|
7980
|
+
description: 'Time at which the event was created.',
|
|
8209
7981
|
format: 'date-time',
|
|
8210
7982
|
type: 'string',
|
|
8211
|
-
'x-title': 'Created At',
|
|
8212
7983
|
},
|
|
8213
7984
|
device_id: {
|
|
8214
7985
|
description: 'ID of the device.',
|
|
8215
7986
|
format: 'uuid',
|
|
8216
7987
|
type: 'string',
|
|
8217
|
-
'x-title': 'Device ID',
|
|
8218
7988
|
},
|
|
8219
7989
|
event_id: {
|
|
8220
|
-
description: '
|
|
7990
|
+
description: 'ID of the event.',
|
|
8221
7991
|
format: 'uuid',
|
|
8222
7992
|
type: 'string',
|
|
8223
|
-
'x-title': 'Event ID',
|
|
8224
7993
|
},
|
|
8225
7994
|
event_type: { enum: ['device.deleted'], type: 'string' },
|
|
8226
7995
|
occurred_at: {
|
|
8227
|
-
description: '
|
|
7996
|
+
description: 'Time when the event occurred.',
|
|
8228
7997
|
format: 'date-time',
|
|
8229
7998
|
type: 'string',
|
|
8230
|
-
'x-title': 'Occurred At',
|
|
8231
7999
|
},
|
|
8232
8000
|
workspace_id: {
|
|
8233
|
-
description: '
|
|
8001
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8234
8002
|
format: 'uuid',
|
|
8235
8003
|
type: 'string',
|
|
8236
|
-
'x-title': 'Workspace ID',
|
|
8237
8004
|
},
|
|
8238
8005
|
},
|
|
8239
8006
|
required: [
|
|
@@ -8248,47 +8015,41 @@ export default {
|
|
|
8248
8015
|
type: 'object',
|
|
8249
8016
|
},
|
|
8250
8017
|
{
|
|
8251
|
-
description: 'Seam detected a device is using a third
|
|
8018
|
+
description: 'Seam detected that a device is using a third-party integration that will interfere with Seam device management.',
|
|
8252
8019
|
properties: {
|
|
8253
8020
|
connected_account_id: {
|
|
8254
|
-
description: 'ID of the connected account.',
|
|
8021
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8255
8022
|
format: 'uuid',
|
|
8256
8023
|
type: 'string',
|
|
8257
|
-
'x-title': 'Connected Account ID',
|
|
8258
8024
|
},
|
|
8259
8025
|
created_at: {
|
|
8260
|
-
description: '
|
|
8026
|
+
description: 'Time at which the event was created.',
|
|
8261
8027
|
format: 'date-time',
|
|
8262
8028
|
type: 'string',
|
|
8263
|
-
'x-title': 'Created At',
|
|
8264
8029
|
},
|
|
8265
8030
|
device_id: {
|
|
8266
8031
|
description: 'ID of the device.',
|
|
8267
8032
|
format: 'uuid',
|
|
8268
8033
|
type: 'string',
|
|
8269
|
-
'x-title': 'Device ID',
|
|
8270
8034
|
},
|
|
8271
8035
|
event_id: {
|
|
8272
|
-
description: '
|
|
8036
|
+
description: 'ID of the event.',
|
|
8273
8037
|
format: 'uuid',
|
|
8274
8038
|
type: 'string',
|
|
8275
|
-
'x-title': 'Event ID',
|
|
8276
8039
|
},
|
|
8277
8040
|
event_type: {
|
|
8278
8041
|
enum: ['device.third_party_integration_detected'],
|
|
8279
8042
|
type: 'string',
|
|
8280
8043
|
},
|
|
8281
8044
|
occurred_at: {
|
|
8282
|
-
description: '
|
|
8045
|
+
description: 'Time when the event occurred.',
|
|
8283
8046
|
format: 'date-time',
|
|
8284
8047
|
type: 'string',
|
|
8285
|
-
'x-title': 'Occurred At',
|
|
8286
8048
|
},
|
|
8287
8049
|
workspace_id: {
|
|
8288
|
-
description: '
|
|
8050
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8289
8051
|
format: 'uuid',
|
|
8290
8052
|
type: 'string',
|
|
8291
|
-
'x-title': 'Workspace ID',
|
|
8292
8053
|
},
|
|
8293
8054
|
},
|
|
8294
8055
|
required: [
|
|
@@ -8303,47 +8064,41 @@ export default {
|
|
|
8303
8064
|
type: 'object',
|
|
8304
8065
|
},
|
|
8305
8066
|
{
|
|
8306
|
-
description: 'Seam detected a device is no longer using a third
|
|
8067
|
+
description: 'Seam detected that a device is no longer using a third-party integration that was interfering with Seam device management.',
|
|
8307
8068
|
properties: {
|
|
8308
8069
|
connected_account_id: {
|
|
8309
|
-
description: 'ID of the connected account.',
|
|
8070
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8310
8071
|
format: 'uuid',
|
|
8311
8072
|
type: 'string',
|
|
8312
|
-
'x-title': 'Connected Account ID',
|
|
8313
8073
|
},
|
|
8314
8074
|
created_at: {
|
|
8315
|
-
description: '
|
|
8075
|
+
description: 'Time at which the event was created.',
|
|
8316
8076
|
format: 'date-time',
|
|
8317
8077
|
type: 'string',
|
|
8318
|
-
'x-title': 'Created At',
|
|
8319
8078
|
},
|
|
8320
8079
|
device_id: {
|
|
8321
8080
|
description: 'ID of the device.',
|
|
8322
8081
|
format: 'uuid',
|
|
8323
8082
|
type: 'string',
|
|
8324
|
-
'x-title': 'Device ID',
|
|
8325
8083
|
},
|
|
8326
8084
|
event_id: {
|
|
8327
|
-
description: '
|
|
8085
|
+
description: 'ID of the event.',
|
|
8328
8086
|
format: 'uuid',
|
|
8329
8087
|
type: 'string',
|
|
8330
|
-
'x-title': 'Event ID',
|
|
8331
8088
|
},
|
|
8332
8089
|
event_type: {
|
|
8333
8090
|
enum: ['device.third_party_integration_no_longer_detected'],
|
|
8334
8091
|
type: 'string',
|
|
8335
8092
|
},
|
|
8336
8093
|
occurred_at: {
|
|
8337
|
-
description: '
|
|
8094
|
+
description: 'Time when the event occurred.',
|
|
8338
8095
|
format: 'date-time',
|
|
8339
8096
|
type: 'string',
|
|
8340
|
-
'x-title': 'Occurred At',
|
|
8341
8097
|
},
|
|
8342
8098
|
workspace_id: {
|
|
8343
|
-
description: '
|
|
8099
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8344
8100
|
format: 'uuid',
|
|
8345
8101
|
type: 'string',
|
|
8346
|
-
'x-title': 'Workspace ID',
|
|
8347
8102
|
},
|
|
8348
8103
|
},
|
|
8349
8104
|
required: [
|
|
@@ -8361,44 +8116,38 @@ export default {
|
|
|
8361
8116
|
description: 'A Salto device activated privacy mode.',
|
|
8362
8117
|
properties: {
|
|
8363
8118
|
connected_account_id: {
|
|
8364
|
-
description: 'ID of the connected account.',
|
|
8119
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8365
8120
|
format: 'uuid',
|
|
8366
8121
|
type: 'string',
|
|
8367
|
-
'x-title': 'Connected Account ID',
|
|
8368
8122
|
},
|
|
8369
8123
|
created_at: {
|
|
8370
|
-
description: '
|
|
8124
|
+
description: 'Time at which the event was created.',
|
|
8371
8125
|
format: 'date-time',
|
|
8372
8126
|
type: 'string',
|
|
8373
|
-
'x-title': 'Created At',
|
|
8374
8127
|
},
|
|
8375
8128
|
device_id: {
|
|
8376
8129
|
description: 'ID of the device.',
|
|
8377
8130
|
format: 'uuid',
|
|
8378
8131
|
type: 'string',
|
|
8379
|
-
'x-title': 'Device ID',
|
|
8380
8132
|
},
|
|
8381
8133
|
event_id: {
|
|
8382
|
-
description: '
|
|
8134
|
+
description: 'ID of the event.',
|
|
8383
8135
|
format: 'uuid',
|
|
8384
8136
|
type: 'string',
|
|
8385
|
-
'x-title': 'Event ID',
|
|
8386
8137
|
},
|
|
8387
8138
|
event_type: {
|
|
8388
8139
|
enum: ['device.salto.privacy_mode_activated'],
|
|
8389
8140
|
type: 'string',
|
|
8390
8141
|
},
|
|
8391
8142
|
occurred_at: {
|
|
8392
|
-
description: '
|
|
8143
|
+
description: 'Time when the event occurred.',
|
|
8393
8144
|
format: 'date-time',
|
|
8394
8145
|
type: 'string',
|
|
8395
|
-
'x-title': 'Occurred At',
|
|
8396
8146
|
},
|
|
8397
8147
|
workspace_id: {
|
|
8398
|
-
description: '
|
|
8148
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8399
8149
|
format: 'uuid',
|
|
8400
8150
|
type: 'string',
|
|
8401
|
-
'x-title': 'Workspace ID',
|
|
8402
8151
|
},
|
|
8403
8152
|
},
|
|
8404
8153
|
required: [
|
|
@@ -8416,44 +8165,38 @@ export default {
|
|
|
8416
8165
|
description: 'A Salto device deactivated privacy mode.',
|
|
8417
8166
|
properties: {
|
|
8418
8167
|
connected_account_id: {
|
|
8419
|
-
description: 'ID of the connected account.',
|
|
8168
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8420
8169
|
format: 'uuid',
|
|
8421
8170
|
type: 'string',
|
|
8422
|
-
'x-title': 'Connected Account ID',
|
|
8423
8171
|
},
|
|
8424
8172
|
created_at: {
|
|
8425
|
-
description: '
|
|
8173
|
+
description: 'Time at which the event was created.',
|
|
8426
8174
|
format: 'date-time',
|
|
8427
8175
|
type: 'string',
|
|
8428
|
-
'x-title': 'Created At',
|
|
8429
8176
|
},
|
|
8430
8177
|
device_id: {
|
|
8431
8178
|
description: 'ID of the device.',
|
|
8432
8179
|
format: 'uuid',
|
|
8433
8180
|
type: 'string',
|
|
8434
|
-
'x-title': 'Device ID',
|
|
8435
8181
|
},
|
|
8436
8182
|
event_id: {
|
|
8437
|
-
description: '
|
|
8183
|
+
description: 'ID of the event.',
|
|
8438
8184
|
format: 'uuid',
|
|
8439
8185
|
type: 'string',
|
|
8440
|
-
'x-title': 'Event ID',
|
|
8441
8186
|
},
|
|
8442
8187
|
event_type: {
|
|
8443
8188
|
enum: ['device.salto.privacy_mode_deactivated'],
|
|
8444
8189
|
type: 'string',
|
|
8445
8190
|
},
|
|
8446
8191
|
occurred_at: {
|
|
8447
|
-
description: '
|
|
8192
|
+
description: 'Time when the event occurred.',
|
|
8448
8193
|
format: 'date-time',
|
|
8449
8194
|
type: 'string',
|
|
8450
|
-
'x-title': 'Occurred At',
|
|
8451
8195
|
},
|
|
8452
8196
|
workspace_id: {
|
|
8453
|
-
description: '
|
|
8197
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8454
8198
|
format: 'uuid',
|
|
8455
8199
|
type: 'string',
|
|
8456
|
-
'x-title': 'Workspace ID',
|
|
8457
8200
|
},
|
|
8458
8201
|
},
|
|
8459
8202
|
required: [
|
|
@@ -8471,44 +8214,38 @@ export default {
|
|
|
8471
8214
|
description: 'Seam detected a flaky device connection.',
|
|
8472
8215
|
properties: {
|
|
8473
8216
|
connected_account_id: {
|
|
8474
|
-
description: 'ID of the connected account.',
|
|
8217
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8475
8218
|
format: 'uuid',
|
|
8476
8219
|
type: 'string',
|
|
8477
|
-
'x-title': 'Connected Account ID',
|
|
8478
8220
|
},
|
|
8479
8221
|
created_at: {
|
|
8480
|
-
description: '
|
|
8222
|
+
description: 'Time at which the event was created.',
|
|
8481
8223
|
format: 'date-time',
|
|
8482
8224
|
type: 'string',
|
|
8483
|
-
'x-title': 'Created At',
|
|
8484
8225
|
},
|
|
8485
8226
|
device_id: {
|
|
8486
8227
|
description: 'ID of the device.',
|
|
8487
8228
|
format: 'uuid',
|
|
8488
8229
|
type: 'string',
|
|
8489
|
-
'x-title': 'Device ID',
|
|
8490
8230
|
},
|
|
8491
8231
|
event_id: {
|
|
8492
|
-
description: '
|
|
8232
|
+
description: 'ID of the event.',
|
|
8493
8233
|
format: 'uuid',
|
|
8494
8234
|
type: 'string',
|
|
8495
|
-
'x-title': 'Event ID',
|
|
8496
8235
|
},
|
|
8497
8236
|
event_type: {
|
|
8498
8237
|
enum: ['device.connection_became_flaky'],
|
|
8499
8238
|
type: 'string',
|
|
8500
8239
|
},
|
|
8501
8240
|
occurred_at: {
|
|
8502
|
-
description: '
|
|
8241
|
+
description: 'Time when the event occurred.',
|
|
8503
8242
|
format: 'date-time',
|
|
8504
8243
|
type: 'string',
|
|
8505
|
-
'x-title': 'Occurred At',
|
|
8506
8244
|
},
|
|
8507
8245
|
workspace_id: {
|
|
8508
|
-
description: '
|
|
8246
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8509
8247
|
format: 'uuid',
|
|
8510
8248
|
type: 'string',
|
|
8511
|
-
'x-title': 'Workspace ID',
|
|
8512
8249
|
},
|
|
8513
8250
|
},
|
|
8514
8251
|
required: [
|
|
@@ -8523,47 +8260,41 @@ export default {
|
|
|
8523
8260
|
type: 'object',
|
|
8524
8261
|
},
|
|
8525
8262
|
{
|
|
8526
|
-
description: 'Seam detected a previously
|
|
8263
|
+
description: 'Seam detected that a previously-flaky device connection stabilized.',
|
|
8527
8264
|
properties: {
|
|
8528
8265
|
connected_account_id: {
|
|
8529
|
-
description: 'ID of the connected account.',
|
|
8266
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8530
8267
|
format: 'uuid',
|
|
8531
8268
|
type: 'string',
|
|
8532
|
-
'x-title': 'Connected Account ID',
|
|
8533
8269
|
},
|
|
8534
8270
|
created_at: {
|
|
8535
|
-
description: '
|
|
8271
|
+
description: 'Time at which the event was created.',
|
|
8536
8272
|
format: 'date-time',
|
|
8537
8273
|
type: 'string',
|
|
8538
|
-
'x-title': 'Created At',
|
|
8539
8274
|
},
|
|
8540
8275
|
device_id: {
|
|
8541
8276
|
description: 'ID of the device.',
|
|
8542
8277
|
format: 'uuid',
|
|
8543
8278
|
type: 'string',
|
|
8544
|
-
'x-title': 'Device ID',
|
|
8545
8279
|
},
|
|
8546
8280
|
event_id: {
|
|
8547
|
-
description: '
|
|
8281
|
+
description: 'ID of the event.',
|
|
8548
8282
|
format: 'uuid',
|
|
8549
8283
|
type: 'string',
|
|
8550
|
-
'x-title': 'Event ID',
|
|
8551
8284
|
},
|
|
8552
8285
|
event_type: {
|
|
8553
8286
|
enum: ['device.connection_stabilized'],
|
|
8554
8287
|
type: 'string',
|
|
8555
8288
|
},
|
|
8556
8289
|
occurred_at: {
|
|
8557
|
-
description: '
|
|
8290
|
+
description: 'Time when the event occurred.',
|
|
8558
8291
|
format: 'date-time',
|
|
8559
8292
|
type: 'string',
|
|
8560
|
-
'x-title': 'Occurred At',
|
|
8561
8293
|
},
|
|
8562
8294
|
workspace_id: {
|
|
8563
|
-
description: '
|
|
8295
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8564
8296
|
format: 'uuid',
|
|
8565
8297
|
type: 'string',
|
|
8566
|
-
'x-title': 'Workspace ID',
|
|
8567
8298
|
},
|
|
8568
8299
|
},
|
|
8569
8300
|
required: [
|
|
@@ -8578,47 +8309,41 @@ export default {
|
|
|
8578
8309
|
type: 'object',
|
|
8579
8310
|
},
|
|
8580
8311
|
{
|
|
8581
|
-
description: 'A third
|
|
8312
|
+
description: 'A third-party subscription is required to use all device features.',
|
|
8582
8313
|
properties: {
|
|
8583
8314
|
connected_account_id: {
|
|
8584
|
-
description: 'ID of the connected account.',
|
|
8315
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8585
8316
|
format: 'uuid',
|
|
8586
8317
|
type: 'string',
|
|
8587
|
-
'x-title': 'Connected Account ID',
|
|
8588
8318
|
},
|
|
8589
8319
|
created_at: {
|
|
8590
|
-
description: '
|
|
8320
|
+
description: 'Time at which the event was created.',
|
|
8591
8321
|
format: 'date-time',
|
|
8592
8322
|
type: 'string',
|
|
8593
|
-
'x-title': 'Created At',
|
|
8594
8323
|
},
|
|
8595
8324
|
device_id: {
|
|
8596
8325
|
description: 'ID of the device.',
|
|
8597
8326
|
format: 'uuid',
|
|
8598
8327
|
type: 'string',
|
|
8599
|
-
'x-title': 'Device ID',
|
|
8600
8328
|
},
|
|
8601
8329
|
event_id: {
|
|
8602
|
-
description: '
|
|
8330
|
+
description: 'ID of the event.',
|
|
8603
8331
|
format: 'uuid',
|
|
8604
8332
|
type: 'string',
|
|
8605
|
-
'x-title': 'Event ID',
|
|
8606
8333
|
},
|
|
8607
8334
|
event_type: {
|
|
8608
8335
|
enum: ['device.error.subscription_required'],
|
|
8609
8336
|
type: 'string',
|
|
8610
8337
|
},
|
|
8611
8338
|
occurred_at: {
|
|
8612
|
-
description: '
|
|
8339
|
+
description: 'Time when the event occurred.',
|
|
8613
8340
|
format: 'date-time',
|
|
8614
8341
|
type: 'string',
|
|
8615
|
-
'x-title': 'Occurred At',
|
|
8616
8342
|
},
|
|
8617
8343
|
workspace_id: {
|
|
8618
|
-
description: '
|
|
8344
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8619
8345
|
format: 'uuid',
|
|
8620
8346
|
type: 'string',
|
|
8621
|
-
'x-title': 'Workspace ID',
|
|
8622
8347
|
},
|
|
8623
8348
|
},
|
|
8624
8349
|
required: [
|
|
@@ -8633,47 +8358,41 @@ export default {
|
|
|
8633
8358
|
type: 'object',
|
|
8634
8359
|
},
|
|
8635
8360
|
{
|
|
8636
|
-
description: 'A third
|
|
8361
|
+
description: 'A third-party subscription is active or no longer required to use all device features.',
|
|
8637
8362
|
properties: {
|
|
8638
8363
|
connected_account_id: {
|
|
8639
|
-
description: 'ID of the connected account.',
|
|
8364
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8640
8365
|
format: 'uuid',
|
|
8641
8366
|
type: 'string',
|
|
8642
|
-
'x-title': 'Connected Account ID',
|
|
8643
8367
|
},
|
|
8644
8368
|
created_at: {
|
|
8645
|
-
description: '
|
|
8369
|
+
description: 'Time at which the event was created.',
|
|
8646
8370
|
format: 'date-time',
|
|
8647
8371
|
type: 'string',
|
|
8648
|
-
'x-title': 'Created At',
|
|
8649
8372
|
},
|
|
8650
8373
|
device_id: {
|
|
8651
8374
|
description: 'ID of the device.',
|
|
8652
8375
|
format: 'uuid',
|
|
8653
8376
|
type: 'string',
|
|
8654
|
-
'x-title': 'Device ID',
|
|
8655
8377
|
},
|
|
8656
8378
|
event_id: {
|
|
8657
|
-
description: '
|
|
8379
|
+
description: 'ID of the event.',
|
|
8658
8380
|
format: 'uuid',
|
|
8659
8381
|
type: 'string',
|
|
8660
|
-
'x-title': 'Event ID',
|
|
8661
8382
|
},
|
|
8662
8383
|
event_type: {
|
|
8663
8384
|
enum: ['device.error.subscription_required.resolved'],
|
|
8664
8385
|
type: 'string',
|
|
8665
8386
|
},
|
|
8666
8387
|
occurred_at: {
|
|
8667
|
-
description: '
|
|
8388
|
+
description: 'Time when the event occurred.',
|
|
8668
8389
|
format: 'date-time',
|
|
8669
8390
|
type: 'string',
|
|
8670
|
-
'x-title': 'Occurred At',
|
|
8671
8391
|
},
|
|
8672
8392
|
workspace_id: {
|
|
8673
|
-
description: '
|
|
8393
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8674
8394
|
format: 'uuid',
|
|
8675
8395
|
type: 'string',
|
|
8676
|
-
'x-title': 'Workspace ID',
|
|
8677
8396
|
},
|
|
8678
8397
|
},
|
|
8679
8398
|
required: [
|
|
@@ -8688,47 +8407,41 @@ export default {
|
|
|
8688
8407
|
type: 'object',
|
|
8689
8408
|
},
|
|
8690
8409
|
{
|
|
8691
|
-
description: '
|
|
8410
|
+
description: 'An accessory keypad was connected to a device.',
|
|
8692
8411
|
properties: {
|
|
8693
8412
|
connected_account_id: {
|
|
8694
|
-
description: 'ID of the connected account.',
|
|
8413
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8695
8414
|
format: 'uuid',
|
|
8696
8415
|
type: 'string',
|
|
8697
|
-
'x-title': 'Connected Account ID',
|
|
8698
8416
|
},
|
|
8699
8417
|
created_at: {
|
|
8700
|
-
description: '
|
|
8418
|
+
description: 'Time at which the event was created.',
|
|
8701
8419
|
format: 'date-time',
|
|
8702
8420
|
type: 'string',
|
|
8703
|
-
'x-title': 'Created At',
|
|
8704
8421
|
},
|
|
8705
8422
|
device_id: {
|
|
8706
8423
|
description: 'ID of the device.',
|
|
8707
8424
|
format: 'uuid',
|
|
8708
8425
|
type: 'string',
|
|
8709
|
-
'x-title': 'Device ID',
|
|
8710
8426
|
},
|
|
8711
8427
|
event_id: {
|
|
8712
|
-
description: '
|
|
8428
|
+
description: 'ID of the event.',
|
|
8713
8429
|
format: 'uuid',
|
|
8714
8430
|
type: 'string',
|
|
8715
|
-
'x-title': 'Event ID',
|
|
8716
8431
|
},
|
|
8717
8432
|
event_type: {
|
|
8718
8433
|
enum: ['device.accessory_keypad_connected'],
|
|
8719
8434
|
type: 'string',
|
|
8720
8435
|
},
|
|
8721
8436
|
occurred_at: {
|
|
8722
|
-
description: '
|
|
8437
|
+
description: 'Time when the event occurred.',
|
|
8723
8438
|
format: 'date-time',
|
|
8724
8439
|
type: 'string',
|
|
8725
|
-
'x-title': 'Occurred At',
|
|
8726
8440
|
},
|
|
8727
8441
|
workspace_id: {
|
|
8728
|
-
description: '
|
|
8442
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8729
8443
|
format: 'uuid',
|
|
8730
8444
|
type: 'string',
|
|
8731
|
-
'x-title': 'Workspace ID',
|
|
8732
8445
|
},
|
|
8733
8446
|
},
|
|
8734
8447
|
required: [
|
|
@@ -8743,47 +8456,41 @@ export default {
|
|
|
8743
8456
|
type: 'object',
|
|
8744
8457
|
},
|
|
8745
8458
|
{
|
|
8746
|
-
description: '
|
|
8459
|
+
description: 'An accessory keypad was disconnected from a device.',
|
|
8747
8460
|
properties: {
|
|
8748
8461
|
connected_account_id: {
|
|
8749
|
-
description: 'ID of the connected account.',
|
|
8462
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8750
8463
|
format: 'uuid',
|
|
8751
8464
|
type: 'string',
|
|
8752
|
-
'x-title': 'Connected Account ID',
|
|
8753
8465
|
},
|
|
8754
8466
|
created_at: {
|
|
8755
|
-
description: '
|
|
8467
|
+
description: 'Time at which the event was created.',
|
|
8756
8468
|
format: 'date-time',
|
|
8757
8469
|
type: 'string',
|
|
8758
|
-
'x-title': 'Created At',
|
|
8759
8470
|
},
|
|
8760
8471
|
device_id: {
|
|
8761
8472
|
description: 'ID of the device.',
|
|
8762
8473
|
format: 'uuid',
|
|
8763
8474
|
type: 'string',
|
|
8764
|
-
'x-title': 'Device ID',
|
|
8765
8475
|
},
|
|
8766
8476
|
event_id: {
|
|
8767
|
-
description: '
|
|
8477
|
+
description: 'ID of the event.',
|
|
8768
8478
|
format: 'uuid',
|
|
8769
8479
|
type: 'string',
|
|
8770
|
-
'x-title': 'Event ID',
|
|
8771
8480
|
},
|
|
8772
8481
|
event_type: {
|
|
8773
8482
|
enum: ['device.accessory_keypad_disconnected'],
|
|
8774
8483
|
type: 'string',
|
|
8775
8484
|
},
|
|
8776
8485
|
occurred_at: {
|
|
8777
|
-
description: '
|
|
8486
|
+
description: 'Time when the event occurred.',
|
|
8778
8487
|
format: 'date-time',
|
|
8779
8488
|
type: 'string',
|
|
8780
|
-
'x-title': 'Occurred At',
|
|
8781
8489
|
},
|
|
8782
8490
|
workspace_id: {
|
|
8783
|
-
description: '
|
|
8491
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8784
8492
|
format: 'uuid',
|
|
8785
8493
|
type: 'string',
|
|
8786
|
-
'x-title': 'Workspace ID',
|
|
8787
8494
|
},
|
|
8788
8495
|
},
|
|
8789
8496
|
required: [
|
|
@@ -8798,31 +8505,27 @@ export default {
|
|
|
8798
8505
|
type: 'object',
|
|
8799
8506
|
},
|
|
8800
8507
|
{
|
|
8801
|
-
description: 'Extended periods of noise or noise exceeding a threshold
|
|
8508
|
+
description: 'Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected.',
|
|
8802
8509
|
properties: {
|
|
8803
8510
|
connected_account_id: {
|
|
8804
|
-
description: 'ID of the connected account.',
|
|
8511
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8805
8512
|
format: 'uuid',
|
|
8806
8513
|
type: 'string',
|
|
8807
|
-
'x-title': 'Connected Account ID',
|
|
8808
8514
|
},
|
|
8809
8515
|
created_at: {
|
|
8810
|
-
description: '
|
|
8516
|
+
description: 'Time at which the event was created.',
|
|
8811
8517
|
format: 'date-time',
|
|
8812
8518
|
type: 'string',
|
|
8813
|
-
'x-title': 'Created At',
|
|
8814
8519
|
},
|
|
8815
8520
|
device_id: {
|
|
8816
8521
|
description: 'ID of the device.',
|
|
8817
8522
|
format: 'uuid',
|
|
8818
8523
|
type: 'string',
|
|
8819
|
-
'x-title': 'Device ID',
|
|
8820
8524
|
},
|
|
8821
8525
|
event_id: {
|
|
8822
|
-
description: '
|
|
8526
|
+
description: 'ID of the event.',
|
|
8823
8527
|
format: 'uuid',
|
|
8824
8528
|
type: 'string',
|
|
8825
|
-
'x-title': 'Event ID',
|
|
8826
8529
|
},
|
|
8827
8530
|
event_type: {
|
|
8828
8531
|
enum: ['noise_sensor.noise_threshold_triggered'],
|
|
@@ -8830,31 +8533,44 @@ export default {
|
|
|
8830
8533
|
},
|
|
8831
8534
|
minut_metadata: {
|
|
8832
8535
|
additionalProperties: {},
|
|
8833
|
-
description: 'Metadata from
|
|
8536
|
+
description: 'Metadata from Minut.',
|
|
8834
8537
|
type: 'object',
|
|
8835
8538
|
'x-title': 'Minut Metadata',
|
|
8836
8539
|
},
|
|
8837
|
-
noise_level_decibels: {
|
|
8838
|
-
|
|
8839
|
-
|
|
8840
|
-
|
|
8540
|
+
noise_level_decibels: {
|
|
8541
|
+
description: 'Detected noise level in decibels.',
|
|
8542
|
+
format: 'float',
|
|
8543
|
+
type: 'number',
|
|
8544
|
+
},
|
|
8545
|
+
noise_level_nrs: {
|
|
8546
|
+
description: 'Detected noise level in Noiseaware Noise Risk Score (NRS).',
|
|
8547
|
+
format: 'float',
|
|
8548
|
+
type: 'number',
|
|
8549
|
+
},
|
|
8550
|
+
noise_threshold_id: {
|
|
8551
|
+
description: 'ID of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.',
|
|
8552
|
+
format: 'uuid',
|
|
8553
|
+
type: 'string',
|
|
8554
|
+
},
|
|
8555
|
+
noise_threshold_name: {
|
|
8556
|
+
description: 'Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered.',
|
|
8557
|
+
type: 'string',
|
|
8558
|
+
},
|
|
8841
8559
|
noiseaware_metadata: {
|
|
8842
8560
|
additionalProperties: {},
|
|
8843
|
-
description: 'Metadata from
|
|
8561
|
+
description: 'Metadata from Noiseaware.',
|
|
8844
8562
|
type: 'object',
|
|
8845
8563
|
'x-title': 'Noiseaware Metadata',
|
|
8846
8564
|
},
|
|
8847
8565
|
occurred_at: {
|
|
8848
|
-
description: '
|
|
8566
|
+
description: 'Time when the event occurred.',
|
|
8849
8567
|
format: 'date-time',
|
|
8850
8568
|
type: 'string',
|
|
8851
|
-
'x-title': 'Occurred At',
|
|
8852
8569
|
},
|
|
8853
8570
|
workspace_id: {
|
|
8854
|
-
description: '
|
|
8571
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8855
8572
|
format: 'uuid',
|
|
8856
8573
|
type: 'string',
|
|
8857
|
-
'x-title': 'Workspace ID',
|
|
8858
8574
|
},
|
|
8859
8575
|
},
|
|
8860
8576
|
required: [
|
|
@@ -8871,50 +8587,51 @@ export default {
|
|
|
8871
8587
|
{
|
|
8872
8588
|
description: 'A lock was locked.',
|
|
8873
8589
|
properties: {
|
|
8874
|
-
access_code_id: {
|
|
8875
|
-
|
|
8590
|
+
access_code_id: {
|
|
8591
|
+
description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to lock the device.',
|
|
8592
|
+
format: 'uuid',
|
|
8593
|
+
type: 'string',
|
|
8594
|
+
},
|
|
8595
|
+
action_attempt_id: {
|
|
8596
|
+
description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action.',
|
|
8597
|
+
format: 'uuid',
|
|
8598
|
+
type: 'string',
|
|
8599
|
+
},
|
|
8876
8600
|
connected_account_id: {
|
|
8877
|
-
description: 'ID of the connected account.',
|
|
8601
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8878
8602
|
format: 'uuid',
|
|
8879
8603
|
type: 'string',
|
|
8880
|
-
'x-title': 'Connected Account ID',
|
|
8881
8604
|
},
|
|
8882
8605
|
created_at: {
|
|
8883
|
-
description: '
|
|
8606
|
+
description: 'Time at which the event was created.',
|
|
8884
8607
|
format: 'date-time',
|
|
8885
8608
|
type: 'string',
|
|
8886
|
-
'x-title': 'Created At',
|
|
8887
8609
|
},
|
|
8888
8610
|
device_id: {
|
|
8889
8611
|
description: 'ID of the device.',
|
|
8890
8612
|
format: 'uuid',
|
|
8891
8613
|
type: 'string',
|
|
8892
|
-
'x-title': 'Device ID',
|
|
8893
8614
|
},
|
|
8894
8615
|
event_id: {
|
|
8895
|
-
description: '
|
|
8616
|
+
description: 'ID of the event.',
|
|
8896
8617
|
format: 'uuid',
|
|
8897
8618
|
type: 'string',
|
|
8898
|
-
'x-title': 'Event ID',
|
|
8899
8619
|
},
|
|
8900
8620
|
event_type: { enum: ['lock.locked'], type: 'string' },
|
|
8901
8621
|
method: {
|
|
8902
|
-
description: 'Method by which a lock device was locked
|
|
8622
|
+
description: 'Method by which a lock device was locked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
8903
8623
|
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
8904
8624
|
type: 'string',
|
|
8905
|
-
'x-title': 'Lock Lock/Unlock Method',
|
|
8906
8625
|
},
|
|
8907
8626
|
occurred_at: {
|
|
8908
|
-
description: '
|
|
8627
|
+
description: 'Time when the event occurred.',
|
|
8909
8628
|
format: 'date-time',
|
|
8910
8629
|
type: 'string',
|
|
8911
|
-
'x-title': 'Occurred At',
|
|
8912
8630
|
},
|
|
8913
8631
|
workspace_id: {
|
|
8914
|
-
description: '
|
|
8632
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8915
8633
|
format: 'uuid',
|
|
8916
8634
|
type: 'string',
|
|
8917
|
-
'x-title': 'Workspace ID',
|
|
8918
8635
|
},
|
|
8919
8636
|
},
|
|
8920
8637
|
required: [
|
|
@@ -8932,50 +8649,51 @@ export default {
|
|
|
8932
8649
|
{
|
|
8933
8650
|
description: 'A lock was unlocked.',
|
|
8934
8651
|
properties: {
|
|
8935
|
-
access_code_id: {
|
|
8936
|
-
|
|
8652
|
+
access_code_id: {
|
|
8653
|
+
description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used to unlock the device.',
|
|
8654
|
+
format: 'uuid',
|
|
8655
|
+
type: 'string',
|
|
8656
|
+
},
|
|
8657
|
+
action_attempt_id: {
|
|
8658
|
+
description: 'ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action.',
|
|
8659
|
+
format: 'uuid',
|
|
8660
|
+
type: 'string',
|
|
8661
|
+
},
|
|
8937
8662
|
connected_account_id: {
|
|
8938
|
-
description: 'ID of the connected account.',
|
|
8663
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8939
8664
|
format: 'uuid',
|
|
8940
8665
|
type: 'string',
|
|
8941
|
-
'x-title': 'Connected Account ID',
|
|
8942
8666
|
},
|
|
8943
8667
|
created_at: {
|
|
8944
|
-
description: '
|
|
8668
|
+
description: 'Time at which the event was created.',
|
|
8945
8669
|
format: 'date-time',
|
|
8946
8670
|
type: 'string',
|
|
8947
|
-
'x-title': 'Created At',
|
|
8948
8671
|
},
|
|
8949
8672
|
device_id: {
|
|
8950
8673
|
description: 'ID of the device.',
|
|
8951
8674
|
format: 'uuid',
|
|
8952
8675
|
type: 'string',
|
|
8953
|
-
'x-title': 'Device ID',
|
|
8954
8676
|
},
|
|
8955
8677
|
event_id: {
|
|
8956
|
-
description: '
|
|
8678
|
+
description: 'ID of the event.',
|
|
8957
8679
|
format: 'uuid',
|
|
8958
8680
|
type: 'string',
|
|
8959
|
-
'x-title': 'Event ID',
|
|
8960
8681
|
},
|
|
8961
8682
|
event_type: { enum: ['lock.unlocked'], type: 'string' },
|
|
8962
8683
|
method: {
|
|
8963
|
-
description: 'Method by which a lock device was
|
|
8684
|
+
description: 'Method by which a lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.',
|
|
8964
8685
|
enum: ['keycode', 'manual', 'automatic', 'unknown', 'seamapi'],
|
|
8965
8686
|
type: 'string',
|
|
8966
|
-
'x-title': 'Lock Lock/Unlock Method',
|
|
8967
8687
|
},
|
|
8968
8688
|
occurred_at: {
|
|
8969
|
-
description: '
|
|
8689
|
+
description: 'Time when the event occurred.',
|
|
8970
8690
|
format: 'date-time',
|
|
8971
8691
|
type: 'string',
|
|
8972
|
-
'x-title': 'Occurred At',
|
|
8973
8692
|
},
|
|
8974
8693
|
workspace_id: {
|
|
8975
|
-
description: '
|
|
8694
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
8976
8695
|
format: 'uuid',
|
|
8977
8696
|
type: 'string',
|
|
8978
|
-
'x-title': 'Workspace ID',
|
|
8979
8697
|
},
|
|
8980
8698
|
},
|
|
8981
8699
|
required: [
|
|
@@ -8993,43 +8711,41 @@ export default {
|
|
|
8993
8711
|
{
|
|
8994
8712
|
description: 'The lock denied access to a user after one or more consecutive invalid attempts to unlock the device.',
|
|
8995
8713
|
properties: {
|
|
8996
|
-
access_code_id: {
|
|
8714
|
+
access_code_id: {
|
|
8715
|
+
description: 'ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts.',
|
|
8716
|
+
format: 'uuid',
|
|
8717
|
+
type: 'string',
|
|
8718
|
+
},
|
|
8997
8719
|
connected_account_id: {
|
|
8998
|
-
description: 'ID of the connected account.',
|
|
8720
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
8999
8721
|
format: 'uuid',
|
|
9000
8722
|
type: 'string',
|
|
9001
|
-
'x-title': 'Connected Account ID',
|
|
9002
8723
|
},
|
|
9003
8724
|
created_at: {
|
|
9004
|
-
description: '
|
|
8725
|
+
description: 'Time at which the event was created.',
|
|
9005
8726
|
format: 'date-time',
|
|
9006
8727
|
type: 'string',
|
|
9007
|
-
'x-title': 'Created At',
|
|
9008
8728
|
},
|
|
9009
8729
|
device_id: {
|
|
9010
8730
|
description: 'ID of the device.',
|
|
9011
8731
|
format: 'uuid',
|
|
9012
8732
|
type: 'string',
|
|
9013
|
-
'x-title': 'Device ID',
|
|
9014
8733
|
},
|
|
9015
8734
|
event_id: {
|
|
9016
|
-
description: '
|
|
8735
|
+
description: 'ID of the event.',
|
|
9017
8736
|
format: 'uuid',
|
|
9018
8737
|
type: 'string',
|
|
9019
|
-
'x-title': 'Event ID',
|
|
9020
8738
|
},
|
|
9021
8739
|
event_type: { enum: ['lock.access_denied'], type: 'string' },
|
|
9022
8740
|
occurred_at: {
|
|
9023
|
-
description: '
|
|
8741
|
+
description: 'Time when the event occurred.',
|
|
9024
8742
|
format: 'date-time',
|
|
9025
8743
|
type: 'string',
|
|
9026
|
-
'x-title': 'Occurred At',
|
|
9027
8744
|
},
|
|
9028
8745
|
workspace_id: {
|
|
9029
|
-
description: '
|
|
8746
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9030
8747
|
format: 'uuid',
|
|
9031
8748
|
type: 'string',
|
|
9032
|
-
'x-title': 'Workspace ID',
|
|
9033
8749
|
},
|
|
9034
8750
|
},
|
|
9035
8751
|
required: [
|
|
@@ -9044,54 +8760,55 @@ export default {
|
|
|
9044
8760
|
type: 'object',
|
|
9045
8761
|
},
|
|
9046
8762
|
{
|
|
9047
|
-
description: 'A thermostat climate preset was activated.',
|
|
8763
|
+
description: 'A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.',
|
|
9048
8764
|
properties: {
|
|
9049
|
-
climate_preset_key: {
|
|
8765
|
+
climate_preset_key: {
|
|
8766
|
+
description: 'Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated.',
|
|
8767
|
+
type: 'string',
|
|
8768
|
+
},
|
|
9050
8769
|
connected_account_id: {
|
|
9051
|
-
description: 'ID of the connected account.',
|
|
8770
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9052
8771
|
format: 'uuid',
|
|
9053
8772
|
type: 'string',
|
|
9054
|
-
'x-title': 'Connected Account ID',
|
|
9055
8773
|
},
|
|
9056
8774
|
created_at: {
|
|
9057
|
-
description: '
|
|
8775
|
+
description: 'Time at which the event was created.',
|
|
9058
8776
|
format: 'date-time',
|
|
9059
8777
|
type: 'string',
|
|
9060
|
-
'x-title': 'Created At',
|
|
9061
8778
|
},
|
|
9062
8779
|
device_id: {
|
|
9063
8780
|
description: 'ID of the device.',
|
|
9064
8781
|
format: 'uuid',
|
|
9065
8782
|
type: 'string',
|
|
9066
|
-
'x-title': 'Device ID',
|
|
9067
8783
|
},
|
|
9068
8784
|
event_id: {
|
|
9069
|
-
description: '
|
|
8785
|
+
description: 'ID of the event.',
|
|
9070
8786
|
format: 'uuid',
|
|
9071
8787
|
type: 'string',
|
|
9072
|
-
'x-title': 'Event ID',
|
|
9073
8788
|
},
|
|
9074
8789
|
event_type: {
|
|
9075
8790
|
enum: ['thermostat.climate_preset_activated'],
|
|
9076
8791
|
type: 'string',
|
|
9077
8792
|
},
|
|
9078
|
-
is_fallback_climate_preset: {
|
|
8793
|
+
is_fallback_climate_preset: {
|
|
8794
|
+
description: 'Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated is the [fallback climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets/setting-the-fallback-climate-preset) for the thermostat.',
|
|
8795
|
+
type: 'boolean',
|
|
8796
|
+
},
|
|
9079
8797
|
occurred_at: {
|
|
9080
|
-
description: '
|
|
8798
|
+
description: 'Time when the event occurred.',
|
|
9081
8799
|
format: 'date-time',
|
|
9082
8800
|
type: 'string',
|
|
9083
|
-
'x-title': 'Occurred At',
|
|
9084
8801
|
},
|
|
9085
8802
|
thermostat_schedule_id: {
|
|
8803
|
+
description: '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.',
|
|
9086
8804
|
format: 'uuid',
|
|
9087
8805
|
nullable: true,
|
|
9088
8806
|
type: 'string',
|
|
9089
8807
|
},
|
|
9090
8808
|
workspace_id: {
|
|
9091
|
-
description: '
|
|
8809
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9092
8810
|
format: 'uuid',
|
|
9093
8811
|
type: 'string',
|
|
9094
|
-
'x-title': 'Workspace ID',
|
|
9095
8812
|
},
|
|
9096
8813
|
},
|
|
9097
8814
|
required: [
|
|
@@ -9109,13 +8826,12 @@ export default {
|
|
|
9109
8826
|
type: 'object',
|
|
9110
8827
|
},
|
|
9111
8828
|
{
|
|
9112
|
-
description: 'A thermostat was manually
|
|
8829
|
+
description: 'A thermostat was adjusted manually.',
|
|
9113
8830
|
properties: {
|
|
9114
8831
|
connected_account_id: {
|
|
9115
|
-
description: 'ID of the connected account.',
|
|
8832
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9116
8833
|
format: 'uuid',
|
|
9117
8834
|
type: 'string',
|
|
9118
|
-
'x-title': 'Connected Account ID',
|
|
9119
8835
|
},
|
|
9120
8836
|
cooling_set_point_celsius: {
|
|
9121
8837
|
description: 'Temperature to which the thermostat should cool (in °C). See also [Set Points](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).',
|
|
@@ -9128,22 +8844,19 @@ export default {
|
|
|
9128
8844
|
type: 'number',
|
|
9129
8845
|
},
|
|
9130
8846
|
created_at: {
|
|
9131
|
-
description: '
|
|
8847
|
+
description: 'Time at which the event was created.',
|
|
9132
8848
|
format: 'date-time',
|
|
9133
8849
|
type: 'string',
|
|
9134
|
-
'x-title': 'Created At',
|
|
9135
8850
|
},
|
|
9136
8851
|
device_id: {
|
|
9137
8852
|
description: 'ID of the device.',
|
|
9138
8853
|
format: 'uuid',
|
|
9139
8854
|
type: 'string',
|
|
9140
|
-
'x-title': 'Device ID',
|
|
9141
8855
|
},
|
|
9142
8856
|
event_id: {
|
|
9143
|
-
description: '
|
|
8857
|
+
description: 'ID of the event.',
|
|
9144
8858
|
format: 'uuid',
|
|
9145
8859
|
type: 'string',
|
|
9146
|
-
'x-title': 'Event ID',
|
|
9147
8860
|
},
|
|
9148
8861
|
event_type: {
|
|
9149
8862
|
enum: ['thermostat.manually_adjusted'],
|
|
@@ -9169,18 +8882,20 @@ export default {
|
|
|
9169
8882
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
9170
8883
|
type: 'string',
|
|
9171
8884
|
},
|
|
9172
|
-
method: {
|
|
8885
|
+
method: {
|
|
8886
|
+
description: 'Method used to adjust the thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.',
|
|
8887
|
+
enum: ['seam', 'external'],
|
|
8888
|
+
type: 'string',
|
|
8889
|
+
},
|
|
9173
8890
|
occurred_at: {
|
|
9174
|
-
description: '
|
|
8891
|
+
description: 'Time when the event occurred.',
|
|
9175
8892
|
format: 'date-time',
|
|
9176
8893
|
type: 'string',
|
|
9177
|
-
'x-title': 'Occurred At',
|
|
9178
8894
|
},
|
|
9179
8895
|
workspace_id: {
|
|
9180
|
-
description: '
|
|
8896
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9181
8897
|
format: 'uuid',
|
|
9182
8898
|
type: 'string',
|
|
9183
|
-
'x-title': 'Workspace ID',
|
|
9184
8899
|
},
|
|
9185
8900
|
},
|
|
9186
8901
|
required: [
|
|
@@ -9196,69 +8911,75 @@ export default {
|
|
|
9196
8911
|
type: 'object',
|
|
9197
8912
|
},
|
|
9198
8913
|
{
|
|
9199
|
-
description: "A thermostat's temperature reading exceeded the set threshold.",
|
|
8914
|
+
description: "A thermostat's temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
9200
8915
|
properties: {
|
|
9201
8916
|
connected_account_id: {
|
|
9202
|
-
description: 'ID of the connected account.',
|
|
8917
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9203
8918
|
format: 'uuid',
|
|
9204
8919
|
type: 'string',
|
|
9205
|
-
'x-title': 'Connected Account ID',
|
|
9206
8920
|
},
|
|
9207
8921
|
created_at: {
|
|
9208
|
-
description: '
|
|
8922
|
+
description: 'Time at which the event was created.',
|
|
9209
8923
|
format: 'date-time',
|
|
9210
8924
|
type: 'string',
|
|
9211
|
-
'x-title': 'Created At',
|
|
9212
8925
|
},
|
|
9213
8926
|
device_id: {
|
|
9214
8927
|
description: 'ID of the device.',
|
|
9215
8928
|
format: 'uuid',
|
|
9216
8929
|
type: 'string',
|
|
9217
|
-
'x-title': 'Device ID',
|
|
9218
8930
|
},
|
|
9219
8931
|
event_id: {
|
|
9220
|
-
description: '
|
|
8932
|
+
description: 'ID of the event.',
|
|
9221
8933
|
format: 'uuid',
|
|
9222
8934
|
type: 'string',
|
|
9223
|
-
'x-title': 'Event ID',
|
|
9224
8935
|
},
|
|
9225
8936
|
event_type: {
|
|
9226
8937
|
enum: ['thermostat.temperature_threshold_exceeded'],
|
|
9227
8938
|
type: 'string',
|
|
9228
8939
|
},
|
|
9229
8940
|
lower_limit_celsius: {
|
|
8941
|
+
description: 'Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9230
8942
|
format: 'float',
|
|
9231
8943
|
nullable: true,
|
|
9232
8944
|
type: 'number',
|
|
9233
8945
|
},
|
|
9234
8946
|
lower_limit_fahrenheit: {
|
|
8947
|
+
description: 'Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9235
8948
|
format: 'float',
|
|
9236
8949
|
nullable: true,
|
|
9237
8950
|
type: 'number',
|
|
9238
8951
|
},
|
|
9239
8952
|
occurred_at: {
|
|
9240
|
-
description: '
|
|
8953
|
+
description: 'Time when the event occurred.',
|
|
9241
8954
|
format: 'date-time',
|
|
9242
8955
|
type: 'string',
|
|
9243
|
-
'x-title': 'Occurred At',
|
|
9244
8956
|
},
|
|
9245
|
-
temperature_celsius: {
|
|
9246
|
-
|
|
8957
|
+
temperature_celsius: {
|
|
8958
|
+
description: 'Temperature, in °C, reported by the thermostat.',
|
|
8959
|
+
format: 'float',
|
|
8960
|
+
type: 'number',
|
|
8961
|
+
},
|
|
8962
|
+
temperature_fahrenheit: {
|
|
8963
|
+
description: 'Temperature, in °F, reported by the thermostat.',
|
|
8964
|
+
format: 'float',
|
|
8965
|
+
type: 'number',
|
|
8966
|
+
},
|
|
9247
8967
|
upper_limit_celsius: {
|
|
8968
|
+
description: 'Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9248
8969
|
format: 'float',
|
|
9249
8970
|
nullable: true,
|
|
9250
8971
|
type: 'number',
|
|
9251
8972
|
},
|
|
9252
8973
|
upper_limit_fahrenheit: {
|
|
8974
|
+
description: 'Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9253
8975
|
format: 'float',
|
|
9254
8976
|
nullable: true,
|
|
9255
8977
|
type: 'number',
|
|
9256
8978
|
},
|
|
9257
8979
|
workspace_id: {
|
|
9258
|
-
description: '
|
|
8980
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9259
8981
|
format: 'uuid',
|
|
9260
8982
|
type: 'string',
|
|
9261
|
-
'x-title': 'Workspace ID',
|
|
9262
8983
|
},
|
|
9263
8984
|
},
|
|
9264
8985
|
required: [
|
|
@@ -9279,69 +9000,75 @@ export default {
|
|
|
9279
9000
|
type: 'object',
|
|
9280
9001
|
},
|
|
9281
9002
|
{
|
|
9282
|
-
description: "A thermostat's temperature reading
|
|
9003
|
+
description: "A thermostat's temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
9283
9004
|
properties: {
|
|
9284
9005
|
connected_account_id: {
|
|
9285
|
-
description: 'ID of the connected account.',
|
|
9006
|
+
description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
9286
9007
|
format: 'uuid',
|
|
9287
9008
|
type: 'string',
|
|
9288
|
-
'x-title': 'Connected Account ID',
|
|
9289
9009
|
},
|
|
9290
9010
|
created_at: {
|
|
9291
|
-
description: '
|
|
9011
|
+
description: 'Time at which the event was created.',
|
|
9292
9012
|
format: 'date-time',
|
|
9293
9013
|
type: 'string',
|
|
9294
|
-
'x-title': 'Created At',
|
|
9295
9014
|
},
|
|
9296
9015
|
device_id: {
|
|
9297
9016
|
description: 'ID of the device.',
|
|
9298
9017
|
format: 'uuid',
|
|
9299
9018
|
type: 'string',
|
|
9300
|
-
'x-title': 'Device ID',
|
|
9301
9019
|
},
|
|
9302
9020
|
event_id: {
|
|
9303
|
-
description: '
|
|
9021
|
+
description: 'ID of the event.',
|
|
9304
9022
|
format: 'uuid',
|
|
9305
9023
|
type: 'string',
|
|
9306
|
-
'x-title': 'Event ID',
|
|
9307
9024
|
},
|
|
9308
9025
|
event_type: {
|
|
9309
9026
|
enum: ['thermostat.temperature_threshold_no_longer_exceeded'],
|
|
9310
9027
|
type: 'string',
|
|
9311
9028
|
},
|
|
9312
9029
|
lower_limit_celsius: {
|
|
9030
|
+
description: 'Lower temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9313
9031
|
format: 'float',
|
|
9314
9032
|
nullable: true,
|
|
9315
9033
|
type: 'number',
|
|
9316
9034
|
},
|
|
9317
9035
|
lower_limit_fahrenheit: {
|
|
9036
|
+
description: 'Lower temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9318
9037
|
format: 'float',
|
|
9319
9038
|
nullable: true,
|
|
9320
9039
|
type: 'number',
|
|
9321
9040
|
},
|
|
9322
9041
|
occurred_at: {
|
|
9323
|
-
description: '
|
|
9042
|
+
description: 'Time when the event occurred.',
|
|
9324
9043
|
format: 'date-time',
|
|
9325
9044
|
type: 'string',
|
|
9326
|
-
'x-title': 'Occurred At',
|
|
9327
9045
|
},
|
|
9328
|
-
temperature_celsius: {
|
|
9329
|
-
|
|
9046
|
+
temperature_celsius: {
|
|
9047
|
+
description: 'Temperature, in °C, reported by the thermostat.',
|
|
9048
|
+
format: 'float',
|
|
9049
|
+
type: 'number',
|
|
9050
|
+
},
|
|
9051
|
+
temperature_fahrenheit: {
|
|
9052
|
+
description: 'Temperature, in °F, reported by the thermostat.',
|
|
9053
|
+
format: 'float',
|
|
9054
|
+
type: 'number',
|
|
9055
|
+
},
|
|
9330
9056
|
upper_limit_celsius: {
|
|
9057
|
+
description: 'Upper temperature limit, in °C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9331
9058
|
format: 'float',
|
|
9332
9059
|
nullable: true,
|
|
9333
9060
|
type: 'number',
|
|
9334
9061
|
},
|
|
9335
9062
|
upper_limit_fahrenheit: {
|
|
9063
|
+
description: 'Upper temperature limit, in °F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).',
|
|
9336
9064
|
format: 'float',
|
|
9337
9065
|
nullable: true,
|
|
9338
9066
|
type: 'number',
|
|
9339
9067
|
},
|
|
9340
9068
|
workspace_id: {
|
|
9341
|
-
description: '
|
|
9069
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9342
9070
|
format: 'uuid',
|
|
9343
9071
|
type: 'string',
|
|
9344
|
-
'x-title': 'Workspace ID',
|
|
9345
9072
|
},
|
|
9346
9073
|
},
|
|
9347
9074
|
required: [
|
|
@@ -9365,10 +9092,9 @@ export default {
|
|
|
9365
9092
|
description: 'An enrollment automation was deleted.',
|
|
9366
9093
|
properties: {
|
|
9367
9094
|
created_at: {
|
|
9368
|
-
description: '
|
|
9095
|
+
description: 'Time at which the event was created.',
|
|
9369
9096
|
format: 'date-time',
|
|
9370
9097
|
type: 'string',
|
|
9371
|
-
'x-title': 'Created At',
|
|
9372
9098
|
},
|
|
9373
9099
|
enrollment_automation_id: {
|
|
9374
9100
|
description: 'ID of the enrollment automation.',
|
|
@@ -9377,26 +9103,23 @@ export default {
|
|
|
9377
9103
|
'x-title': 'Enrollment Automation ID',
|
|
9378
9104
|
},
|
|
9379
9105
|
event_id: {
|
|
9380
|
-
description: '
|
|
9106
|
+
description: 'ID of the event.',
|
|
9381
9107
|
format: 'uuid',
|
|
9382
9108
|
type: 'string',
|
|
9383
|
-
'x-title': 'Event ID',
|
|
9384
9109
|
},
|
|
9385
9110
|
event_type: {
|
|
9386
9111
|
enum: ['enrollment_automation.deleted'],
|
|
9387
9112
|
type: 'string',
|
|
9388
9113
|
},
|
|
9389
9114
|
occurred_at: {
|
|
9390
|
-
description: '
|
|
9115
|
+
description: 'Time when the event occurred.',
|
|
9391
9116
|
format: 'date-time',
|
|
9392
9117
|
type: 'string',
|
|
9393
|
-
'x-title': 'Occurred At',
|
|
9394
9118
|
},
|
|
9395
9119
|
workspace_id: {
|
|
9396
|
-
description: '
|
|
9120
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9397
9121
|
format: 'uuid',
|
|
9398
9122
|
type: 'string',
|
|
9399
|
-
'x-title': 'Workspace ID',
|
|
9400
9123
|
},
|
|
9401
9124
|
},
|
|
9402
9125
|
required: [
|
|
@@ -9413,10 +9136,9 @@ export default {
|
|
|
9413
9136
|
description: 'A phone device was deactivated.',
|
|
9414
9137
|
properties: {
|
|
9415
9138
|
created_at: {
|
|
9416
|
-
description: '
|
|
9139
|
+
description: 'Time at which the event was created.',
|
|
9417
9140
|
format: 'date-time',
|
|
9418
9141
|
type: 'string',
|
|
9419
|
-
'x-title': 'Created At',
|
|
9420
9142
|
},
|
|
9421
9143
|
device_id: {
|
|
9422
9144
|
description: 'ID of the device.',
|
|
@@ -9425,23 +9147,20 @@ export default {
|
|
|
9425
9147
|
'x-title': 'Device ID',
|
|
9426
9148
|
},
|
|
9427
9149
|
event_id: {
|
|
9428
|
-
description: '
|
|
9150
|
+
description: 'ID of the event.',
|
|
9429
9151
|
format: 'uuid',
|
|
9430
9152
|
type: 'string',
|
|
9431
|
-
'x-title': 'Event ID',
|
|
9432
9153
|
},
|
|
9433
9154
|
event_type: { enum: ['phone.deactivated'], type: 'string' },
|
|
9434
9155
|
occurred_at: {
|
|
9435
|
-
description: '
|
|
9156
|
+
description: 'Time when the event occurred.',
|
|
9436
9157
|
format: 'date-time',
|
|
9437
9158
|
type: 'string',
|
|
9438
|
-
'x-title': 'Occurred At',
|
|
9439
9159
|
},
|
|
9440
9160
|
workspace_id: {
|
|
9441
|
-
description: '
|
|
9161
|
+
description: 'ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).',
|
|
9442
9162
|
format: 'uuid',
|
|
9443
9163
|
type: 'string',
|
|
9444
|
-
'x-title': 'Workspace ID',
|
|
9445
9164
|
},
|
|
9446
9165
|
},
|
|
9447
9166
|
required: [
|
|
@@ -14047,13 +13766,8 @@ export default {
|
|
|
14047
13766
|
format: 'uuid',
|
|
14048
13767
|
type: 'string',
|
|
14049
13768
|
},
|
|
14050
|
-
acs_system_id: {
|
|
14051
|
-
description: 'ID of the acs_system the encoder belongs to.',
|
|
14052
|
-
format: 'uuid',
|
|
14053
|
-
type: 'string',
|
|
14054
|
-
},
|
|
14055
13769
|
},
|
|
14056
|
-
required: ['
|
|
13770
|
+
required: ['acs_encoder_id'],
|
|
14057
13771
|
type: 'object',
|
|
14058
13772
|
},
|
|
14059
13773
|
},
|