@seamapi/types 1.437.0 → 1.438.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (35) hide show
  1. package/dist/connect.cjs +917 -5
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +1335 -0
  4. package/lib/seam/connect/models/events/access-codes.d.ts +204 -0
  5. package/lib/seam/connect/models/events/access-codes.js +7 -0
  6. package/lib/seam/connect/models/events/access-codes.js.map +1 -1
  7. package/lib/seam/connect/models/events/connect-webviews.d.ts +6 -0
  8. package/lib/seam/connect/models/events/connect-webviews.js +5 -0
  9. package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
  10. package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -0
  11. package/lib/seam/connect/models/events/connected-accounts.js +4 -0
  12. package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
  13. package/lib/seam/connect/models/events/devices.d.ts +396 -0
  14. package/lib/seam/connect/models/events/devices.js +7 -0
  15. package/lib/seam/connect/models/events/devices.js.map +1 -1
  16. package/lib/seam/connect/models/events/phones.d.ts +6 -0
  17. package/lib/seam/connect/models/events/phones.js +4 -0
  18. package/lib/seam/connect/models/events/phones.js.map +1 -1
  19. package/lib/seam/connect/models/events/seam-event.d.ts +327 -0
  20. package/lib/seam/connect/models/user-identities/user-identity.d.ts +3 -0
  21. package/lib/seam/connect/models/user-identities/user-identity.js +3 -0
  22. package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
  23. package/lib/seam/connect/openapi.d.ts +537 -0
  24. package/lib/seam/connect/openapi.js +887 -0
  25. package/lib/seam/connect/openapi.js.map +1 -1
  26. package/lib/seam/connect/route-types.d.ts +468 -0
  27. package/package.json +1 -1
  28. package/src/lib/seam/connect/models/events/access-codes.ts +11 -0
  29. package/src/lib/seam/connect/models/events/connect-webviews.ts +8 -0
  30. package/src/lib/seam/connect/models/events/connected-accounts.ts +6 -0
  31. package/src/lib/seam/connect/models/events/devices.ts +11 -0
  32. package/src/lib/seam/connect/models/events/phones.ts +6 -0
  33. package/src/lib/seam/connect/models/user-identities/user-identity.ts +5 -0
  34. package/src/lib/seam/connect/openapi.ts +1003 -0
  35. package/src/lib/seam/connect/route-types.ts +904 -0
@@ -11448,6 +11448,13 @@ export default {
11448
11448
  format: 'uuid',
11449
11449
  type: 'string',
11450
11450
  },
11451
+ connected_account_custom_metadata: {
11452
+ additionalProperties: {
11453
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11454
+ },
11455
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11456
+ type: 'object',
11457
+ },
11451
11458
  connected_account_id: {
11452
11459
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11453
11460
  format: 'uuid',
@@ -11458,6 +11465,13 @@ export default {
11458
11465
  format: 'date-time',
11459
11466
  type: 'string',
11460
11467
  },
11468
+ device_custom_metadata: {
11469
+ additionalProperties: {
11470
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11471
+ },
11472
+ description: 'Custom metadata of the device, present when device_id is provided.',
11473
+ type: 'object',
11474
+ },
11461
11475
  device_id: {
11462
11476
  description: 'ID of the device associated with the affected access code.',
11463
11477
  format: 'uuid',
@@ -11501,6 +11515,13 @@ export default {
11501
11515
  format: 'uuid',
11502
11516
  type: 'string',
11503
11517
  },
11518
+ connected_account_custom_metadata: {
11519
+ additionalProperties: {
11520
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11521
+ },
11522
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11523
+ type: 'object',
11524
+ },
11504
11525
  connected_account_id: {
11505
11526
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11506
11527
  format: 'uuid',
@@ -11511,6 +11532,13 @@ export default {
11511
11532
  format: 'date-time',
11512
11533
  type: 'string',
11513
11534
  },
11535
+ device_custom_metadata: {
11536
+ additionalProperties: {
11537
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11538
+ },
11539
+ description: 'Custom metadata of the device, present when device_id is provided.',
11540
+ type: 'object',
11541
+ },
11514
11542
  device_id: {
11515
11543
  description: 'ID of the device associated with the affected access code.',
11516
11544
  format: 'uuid',
@@ -11558,6 +11586,13 @@ export default {
11558
11586
  description: 'Code for the affected access code.',
11559
11587
  type: 'string',
11560
11588
  },
11589
+ connected_account_custom_metadata: {
11590
+ additionalProperties: {
11591
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11592
+ },
11593
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11594
+ type: 'object',
11595
+ },
11561
11596
  connected_account_id: {
11562
11597
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11563
11598
  format: 'uuid',
@@ -11568,6 +11603,13 @@ export default {
11568
11603
  format: 'date-time',
11569
11604
  type: 'string',
11570
11605
  },
11606
+ device_custom_metadata: {
11607
+ additionalProperties: {
11608
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11609
+ },
11610
+ description: 'Custom metadata of the device, present when device_id is provided.',
11611
+ type: 'object',
11612
+ },
11571
11613
  device_id: {
11572
11614
  description: 'ID of the device associated with the affected access code.',
11573
11615
  format: 'uuid',
@@ -11619,6 +11661,13 @@ export default {
11619
11661
  description: 'Code for the affected access code.',
11620
11662
  type: 'string',
11621
11663
  },
11664
+ connected_account_custom_metadata: {
11665
+ additionalProperties: {
11666
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11667
+ },
11668
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11669
+ type: 'object',
11670
+ },
11622
11671
  connected_account_id: {
11623
11672
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11624
11673
  format: 'uuid',
@@ -11629,6 +11678,13 @@ export default {
11629
11678
  format: 'date-time',
11630
11679
  type: 'string',
11631
11680
  },
11681
+ device_custom_metadata: {
11682
+ additionalProperties: {
11683
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11684
+ },
11685
+ description: 'Custom metadata of the device, present when device_id is provided.',
11686
+ type: 'object',
11687
+ },
11632
11688
  device_id: {
11633
11689
  description: 'ID of the device associated with the affected access code.',
11634
11690
  format: 'uuid',
@@ -11676,6 +11732,13 @@ export default {
11676
11732
  format: 'uuid',
11677
11733
  type: 'string',
11678
11734
  },
11735
+ connected_account_custom_metadata: {
11736
+ additionalProperties: {
11737
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11738
+ },
11739
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11740
+ type: 'object',
11741
+ },
11679
11742
  connected_account_id: {
11680
11743
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11681
11744
  format: 'uuid',
@@ -11686,6 +11749,13 @@ export default {
11686
11749
  format: 'date-time',
11687
11750
  type: 'string',
11688
11751
  },
11752
+ device_custom_metadata: {
11753
+ additionalProperties: {
11754
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11755
+ },
11756
+ description: 'Custom metadata of the device, present when device_id is provided.',
11757
+ type: 'object',
11758
+ },
11689
11759
  device_id: {
11690
11760
  description: 'ID of the device associated with the affected access code.',
11691
11761
  format: 'uuid',
@@ -11732,6 +11802,13 @@ export default {
11732
11802
  format: 'uuid',
11733
11803
  type: 'string',
11734
11804
  },
11805
+ connected_account_custom_metadata: {
11806
+ additionalProperties: {
11807
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11808
+ },
11809
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11810
+ type: 'object',
11811
+ },
11735
11812
  connected_account_id: {
11736
11813
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11737
11814
  format: 'uuid',
@@ -11742,6 +11819,13 @@ export default {
11742
11819
  format: 'date-time',
11743
11820
  type: 'string',
11744
11821
  },
11822
+ device_custom_metadata: {
11823
+ additionalProperties: {
11824
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11825
+ },
11826
+ description: 'Custom metadata of the device, present when device_id is provided.',
11827
+ type: 'object',
11828
+ },
11745
11829
  device_id: {
11746
11830
  description: 'ID of the device associated with the affected access code.',
11747
11831
  format: 'uuid',
@@ -11788,6 +11872,13 @@ export default {
11788
11872
  format: 'uuid',
11789
11873
  type: 'string',
11790
11874
  },
11875
+ connected_account_custom_metadata: {
11876
+ additionalProperties: {
11877
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11878
+ },
11879
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11880
+ type: 'object',
11881
+ },
11791
11882
  connected_account_id: {
11792
11883
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11793
11884
  format: 'uuid',
@@ -11798,6 +11889,13 @@ export default {
11798
11889
  format: 'date-time',
11799
11890
  type: 'string',
11800
11891
  },
11892
+ device_custom_metadata: {
11893
+ additionalProperties: {
11894
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11895
+ },
11896
+ description: 'Custom metadata of the device, present when device_id is provided.',
11897
+ type: 'object',
11898
+ },
11801
11899
  device_id: {
11802
11900
  description: 'ID of the device associated with the affected access code.',
11803
11901
  format: 'uuid',
@@ -11849,6 +11947,13 @@ export default {
11849
11947
  nullable: true,
11850
11948
  type: 'string',
11851
11949
  },
11950
+ connected_account_custom_metadata: {
11951
+ additionalProperties: {
11952
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11953
+ },
11954
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
11955
+ type: 'object',
11956
+ },
11852
11957
  connected_account_id: {
11853
11958
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11854
11959
  format: 'uuid',
@@ -11859,6 +11964,13 @@ export default {
11859
11964
  format: 'date-time',
11860
11965
  type: 'string',
11861
11966
  },
11967
+ device_custom_metadata: {
11968
+ additionalProperties: {
11969
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
11970
+ },
11971
+ description: 'Custom metadata of the device, present when device_id is provided.',
11972
+ type: 'object',
11973
+ },
11862
11974
  device_id: {
11863
11975
  description: 'ID of the device associated with the affected access code.',
11864
11976
  format: 'uuid',
@@ -11903,6 +12015,13 @@ export default {
11903
12015
  format: 'uuid',
11904
12016
  type: 'string',
11905
12017
  },
12018
+ connected_account_custom_metadata: {
12019
+ additionalProperties: {
12020
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12021
+ },
12022
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12023
+ type: 'object',
12024
+ },
11906
12025
  connected_account_id: {
11907
12026
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11908
12027
  format: 'uuid',
@@ -11913,6 +12032,13 @@ export default {
11913
12032
  format: 'date-time',
11914
12033
  type: 'string',
11915
12034
  },
12035
+ device_custom_metadata: {
12036
+ additionalProperties: {
12037
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12038
+ },
12039
+ description: 'Custom metadata of the device, present when device_id is provided.',
12040
+ type: 'object',
12041
+ },
11916
12042
  device_id: {
11917
12043
  description: 'ID of the device associated with the affected access code.',
11918
12044
  format: 'uuid',
@@ -11959,6 +12085,13 @@ export default {
11959
12085
  format: 'uuid',
11960
12086
  type: 'string',
11961
12087
  },
12088
+ connected_account_custom_metadata: {
12089
+ additionalProperties: {
12090
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12091
+ },
12092
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12093
+ type: 'object',
12094
+ },
11962
12095
  connected_account_id: {
11963
12096
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
11964
12097
  format: 'uuid',
@@ -11969,6 +12102,13 @@ export default {
11969
12102
  format: 'date-time',
11970
12103
  type: 'string',
11971
12104
  },
12105
+ device_custom_metadata: {
12106
+ additionalProperties: {
12107
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12108
+ },
12109
+ description: 'Custom metadata of the device, present when device_id is provided.',
12110
+ type: 'object',
12111
+ },
11972
12112
  device_id: {
11973
12113
  description: 'ID of the device associated with the affected access code.',
11974
12114
  format: 'uuid',
@@ -12015,6 +12155,13 @@ export default {
12015
12155
  format: 'uuid',
12016
12156
  type: 'string',
12017
12157
  },
12158
+ connected_account_custom_metadata: {
12159
+ additionalProperties: {
12160
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12161
+ },
12162
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12163
+ type: 'object',
12164
+ },
12018
12165
  connected_account_id: {
12019
12166
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12020
12167
  format: 'uuid',
@@ -12025,6 +12172,13 @@ export default {
12025
12172
  format: 'date-time',
12026
12173
  type: 'string',
12027
12174
  },
12175
+ device_custom_metadata: {
12176
+ additionalProperties: {
12177
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12178
+ },
12179
+ description: 'Custom metadata of the device, present when device_id is provided.',
12180
+ type: 'object',
12181
+ },
12028
12182
  device_id: {
12029
12183
  description: 'ID of the device associated with the affected access code.',
12030
12184
  format: 'uuid',
@@ -12071,6 +12225,13 @@ export default {
12071
12225
  format: 'uuid',
12072
12226
  type: 'string',
12073
12227
  },
12228
+ connected_account_custom_metadata: {
12229
+ additionalProperties: {
12230
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12231
+ },
12232
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12233
+ type: 'object',
12234
+ },
12074
12235
  connected_account_id: {
12075
12236
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12076
12237
  format: 'uuid',
@@ -12081,6 +12242,13 @@ export default {
12081
12242
  format: 'date-time',
12082
12243
  type: 'string',
12083
12244
  },
12245
+ device_custom_metadata: {
12246
+ additionalProperties: {
12247
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12248
+ },
12249
+ description: 'Custom metadata of the device, present when device_id is provided.',
12250
+ type: 'object',
12251
+ },
12084
12252
  device_id: {
12085
12253
  description: 'ID of the device associated with the affected access code.',
12086
12254
  format: 'uuid',
@@ -12128,6 +12296,13 @@ export default {
12128
12296
  type: 'string',
12129
12297
  },
12130
12298
  backup_access_code_id: { type: 'string' },
12299
+ connected_account_custom_metadata: {
12300
+ additionalProperties: {
12301
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12302
+ },
12303
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12304
+ type: 'object',
12305
+ },
12131
12306
  connected_account_id: {
12132
12307
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12133
12308
  format: 'uuid',
@@ -12138,6 +12313,13 @@ export default {
12138
12313
  format: 'date-time',
12139
12314
  type: 'string',
12140
12315
  },
12316
+ device_custom_metadata: {
12317
+ additionalProperties: {
12318
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12319
+ },
12320
+ description: 'Custom metadata of the device, present when device_id is provided.',
12321
+ type: 'object',
12322
+ },
12141
12323
  device_id: {
12142
12324
  description: 'ID of the device associated with the affected access code.',
12143
12325
  format: 'uuid',
@@ -12185,6 +12367,13 @@ export default {
12185
12367
  format: 'uuid',
12186
12368
  type: 'string',
12187
12369
  },
12370
+ connected_account_custom_metadata: {
12371
+ additionalProperties: {
12372
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12373
+ },
12374
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12375
+ type: 'object',
12376
+ },
12188
12377
  connected_account_id: {
12189
12378
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12190
12379
  format: 'uuid',
@@ -12195,6 +12384,13 @@ export default {
12195
12384
  format: 'date-time',
12196
12385
  type: 'string',
12197
12386
  },
12387
+ device_custom_metadata: {
12388
+ additionalProperties: {
12389
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12390
+ },
12391
+ description: 'Custom metadata of the device, present when device_id is provided.',
12392
+ type: 'object',
12393
+ },
12198
12394
  device_id: {
12199
12395
  description: 'ID of the device associated with the affected access code.',
12200
12396
  format: 'uuid',
@@ -12241,6 +12437,13 @@ export default {
12241
12437
  format: 'uuid',
12242
12438
  type: 'string',
12243
12439
  },
12440
+ connected_account_custom_metadata: {
12441
+ additionalProperties: {
12442
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12443
+ },
12444
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12445
+ type: 'object',
12446
+ },
12244
12447
  connected_account_id: {
12245
12448
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12246
12449
  format: 'uuid',
@@ -12251,6 +12454,13 @@ export default {
12251
12454
  format: 'date-time',
12252
12455
  type: 'string',
12253
12456
  },
12457
+ device_custom_metadata: {
12458
+ additionalProperties: {
12459
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12460
+ },
12461
+ description: 'Custom metadata of the device, present when device_id is provided.',
12462
+ type: 'object',
12463
+ },
12254
12464
  device_id: {
12255
12465
  description: 'ID of the device associated with the affected access code.',
12256
12466
  format: 'uuid',
@@ -12297,6 +12507,13 @@ export default {
12297
12507
  format: 'uuid',
12298
12508
  type: 'string',
12299
12509
  },
12510
+ connected_account_custom_metadata: {
12511
+ additionalProperties: {
12512
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12513
+ },
12514
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12515
+ type: 'object',
12516
+ },
12300
12517
  connected_account_id: {
12301
12518
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12302
12519
  format: 'uuid',
@@ -12307,6 +12524,13 @@ export default {
12307
12524
  format: 'date-time',
12308
12525
  type: 'string',
12309
12526
  },
12527
+ device_custom_metadata: {
12528
+ additionalProperties: {
12529
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12530
+ },
12531
+ description: 'Custom metadata of the device, present when device_id is provided.',
12532
+ type: 'object',
12533
+ },
12310
12534
  device_id: {
12311
12535
  description: 'ID of the device associated with the affected access code.',
12312
12536
  format: 'uuid',
@@ -12353,6 +12577,13 @@ export default {
12353
12577
  format: 'uuid',
12354
12578
  type: 'string',
12355
12579
  },
12580
+ connected_account_custom_metadata: {
12581
+ additionalProperties: {
12582
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12583
+ },
12584
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
12585
+ type: 'object',
12586
+ },
12356
12587
  connected_account_id: {
12357
12588
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
12358
12589
  format: 'uuid',
@@ -12363,6 +12594,13 @@ export default {
12363
12594
  format: 'date-time',
12364
12595
  type: 'string',
12365
12596
  },
12597
+ device_custom_metadata: {
12598
+ additionalProperties: {
12599
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
12600
+ },
12601
+ description: 'Custom metadata of the device, present when device_id is provided.',
12602
+ type: 'object',
12603
+ },
12366
12604
  device_id: {
12367
12605
  description: 'ID of the device associated with the affected access code.',
12368
12606
  format: 'uuid',
@@ -13584,6 +13822,13 @@ export default {
13584
13822
  format: 'uuid',
13585
13823
  type: 'string',
13586
13824
  },
13825
+ connected_account_custom_metadata: {
13826
+ additionalProperties: {
13827
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
13828
+ },
13829
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
13830
+ type: 'object',
13831
+ },
13587
13832
  connected_account_id: {
13588
13833
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13589
13834
  format: 'uuid',
@@ -13634,6 +13879,13 @@ export default {
13634
13879
  format: 'uuid',
13635
13880
  type: 'string',
13636
13881
  },
13882
+ connected_account_custom_metadata: {
13883
+ additionalProperties: {
13884
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
13885
+ },
13886
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
13887
+ type: 'object',
13888
+ },
13637
13889
  connected_account_id: {
13638
13890
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13639
13891
  format: 'uuid',
@@ -13685,6 +13937,13 @@ export default {
13685
13937
  format: 'uuid',
13686
13938
  type: 'string',
13687
13939
  },
13940
+ connected_account_custom_metadata: {
13941
+ additionalProperties: {
13942
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
13943
+ },
13944
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
13945
+ type: 'object',
13946
+ },
13688
13947
  connected_account_id: {
13689
13948
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13690
13949
  format: 'uuid',
@@ -13731,6 +13990,13 @@ export default {
13731
13990
  {
13732
13991
  description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.',
13733
13992
  properties: {
13993
+ connected_account_custom_metadata: {
13994
+ additionalProperties: {
13995
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
13996
+ },
13997
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
13998
+ type: 'object',
13999
+ },
13734
14000
  connected_account_id: {
13735
14001
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13736
14002
  format: 'uuid',
@@ -13775,6 +14041,13 @@ export default {
13775
14041
  {
13776
14042
  description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available.',
13777
14043
  properties: {
14044
+ connected_account_custom_metadata: {
14045
+ additionalProperties: {
14046
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14047
+ },
14048
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14049
+ type: 'object',
14050
+ },
13778
14051
  connected_account_id: {
13779
14052
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13780
14053
  format: 'uuid',
@@ -13819,6 +14092,13 @@ export default {
13819
14092
  {
13820
14093
  description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.',
13821
14094
  properties: {
14095
+ connected_account_custom_metadata: {
14096
+ additionalProperties: {
14097
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14098
+ },
14099
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14100
+ type: 'object',
14101
+ },
13822
14102
  connected_account_id: {
13823
14103
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13824
14104
  format: 'uuid',
@@ -13863,6 +14143,13 @@ export default {
13863
14143
  {
13864
14144
  description: 'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available.',
13865
14145
  properties: {
14146
+ connected_account_custom_metadata: {
14147
+ additionalProperties: {
14148
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14149
+ },
14150
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14151
+ type: 'object',
14152
+ },
13866
14153
  connected_account_id: {
13867
14154
  description: 'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
13868
14155
  format: 'uuid',
@@ -14118,6 +14405,13 @@ export default {
14118
14405
  format: 'uuid',
14119
14406
  type: 'string',
14120
14407
  },
14408
+ connected_account_custom_metadata: {
14409
+ additionalProperties: {
14410
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14411
+ },
14412
+ description: 'Custom metadata of the connected account; present when connected_account_id is provided.',
14413
+ type: 'object',
14414
+ },
14121
14415
  connected_account_id: {
14122
14416
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14123
14417
  format: 'uuid',
@@ -14207,6 +14501,13 @@ export default {
14207
14501
  {
14208
14502
  description: 'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices.',
14209
14503
  properties: {
14504
+ connected_account_custom_metadata: {
14505
+ additionalProperties: {
14506
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14507
+ },
14508
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14509
+ type: 'object',
14510
+ },
14210
14511
  connected_account_id: {
14211
14512
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14212
14513
  format: 'uuid',
@@ -14217,6 +14518,13 @@ export default {
14217
14518
  format: 'date-time',
14218
14519
  type: 'string',
14219
14520
  },
14521
+ device_custom_metadata: {
14522
+ additionalProperties: {
14523
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14524
+ },
14525
+ description: 'Custom metadata of the device, present when device_id is provided.',
14526
+ type: 'object',
14527
+ },
14220
14528
  device_id: {
14221
14529
  description: 'ID of the affected device.',
14222
14530
  format: 'uuid',
@@ -14254,6 +14562,13 @@ export default {
14254
14562
  {
14255
14563
  description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.',
14256
14564
  properties: {
14565
+ connected_account_custom_metadata: {
14566
+ additionalProperties: {
14567
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14568
+ },
14569
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14570
+ type: 'object',
14571
+ },
14257
14572
  connected_account_id: {
14258
14573
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14259
14574
  format: 'uuid',
@@ -14264,6 +14579,13 @@ export default {
14264
14579
  format: 'date-time',
14265
14580
  type: 'string',
14266
14581
  },
14582
+ device_custom_metadata: {
14583
+ additionalProperties: {
14584
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14585
+ },
14586
+ description: 'Custom metadata of the device, present when device_id is provided.',
14587
+ type: 'object',
14588
+ },
14267
14589
  device_id: {
14268
14590
  description: 'ID of the affected device.',
14269
14591
  format: 'uuid',
@@ -14301,6 +14623,13 @@ export default {
14301
14623
  {
14302
14624
  description: 'A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).',
14303
14625
  properties: {
14626
+ connected_account_custom_metadata: {
14627
+ additionalProperties: {
14628
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14629
+ },
14630
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14631
+ type: 'object',
14632
+ },
14304
14633
  connected_account_id: {
14305
14634
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14306
14635
  format: 'uuid',
@@ -14311,6 +14640,13 @@ export default {
14311
14640
  format: 'date-time',
14312
14641
  type: 'string',
14313
14642
  },
14643
+ device_custom_metadata: {
14644
+ additionalProperties: {
14645
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14646
+ },
14647
+ description: 'Custom metadata of the device, present when device_id is provided.',
14648
+ type: 'object',
14649
+ },
14314
14650
  device_id: {
14315
14651
  description: 'ID of the affected device.',
14316
14652
  format: 'uuid',
@@ -14351,6 +14687,13 @@ export default {
14351
14687
  {
14352
14688
  description: 'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.',
14353
14689
  properties: {
14690
+ connected_account_custom_metadata: {
14691
+ additionalProperties: {
14692
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14693
+ },
14694
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14695
+ type: 'object',
14696
+ },
14354
14697
  connected_account_id: {
14355
14698
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14356
14699
  format: 'uuid',
@@ -14361,6 +14704,13 @@ export default {
14361
14704
  format: 'date-time',
14362
14705
  type: 'string',
14363
14706
  },
14707
+ device_custom_metadata: {
14708
+ additionalProperties: {
14709
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14710
+ },
14711
+ description: 'Custom metadata of the device, present when device_id is provided.',
14712
+ type: 'object',
14713
+ },
14364
14714
  device_id: {
14365
14715
  description: 'ID of the affected device.',
14366
14716
  format: 'uuid',
@@ -14401,6 +14751,13 @@ export default {
14401
14751
  {
14402
14752
  description: 'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.',
14403
14753
  properties: {
14754
+ connected_account_custom_metadata: {
14755
+ additionalProperties: {
14756
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14757
+ },
14758
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14759
+ type: 'object',
14760
+ },
14404
14761
  connected_account_id: {
14405
14762
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14406
14763
  format: 'uuid',
@@ -14411,6 +14768,13 @@ export default {
14411
14768
  format: 'date-time',
14412
14769
  type: 'string',
14413
14770
  },
14771
+ device_custom_metadata: {
14772
+ additionalProperties: {
14773
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14774
+ },
14775
+ description: 'Custom metadata of the device, present when device_id is provided.',
14776
+ type: 'object',
14777
+ },
14414
14778
  device_id: {
14415
14779
  description: 'ID of the affected device.',
14416
14780
  format: 'uuid',
@@ -14451,6 +14815,13 @@ export default {
14451
14815
  {
14452
14816
  description: 'The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
14453
14817
  properties: {
14818
+ connected_account_custom_metadata: {
14819
+ additionalProperties: {
14820
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14821
+ },
14822
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14823
+ type: 'object',
14824
+ },
14454
14825
  connected_account_id: {
14455
14826
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14456
14827
  format: 'uuid',
@@ -14461,6 +14832,13 @@ export default {
14461
14832
  format: 'date-time',
14462
14833
  type: 'string',
14463
14834
  },
14835
+ device_custom_metadata: {
14836
+ additionalProperties: {
14837
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14838
+ },
14839
+ description: 'Custom metadata of the device, present when device_id is provided.',
14840
+ type: 'object',
14841
+ },
14464
14842
  device_id: {
14465
14843
  description: 'ID of the affected device.',
14466
14844
  format: 'uuid',
@@ -14508,6 +14886,13 @@ export default {
14508
14886
  {
14509
14887
  description: 'The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.',
14510
14888
  properties: {
14889
+ connected_account_custom_metadata: {
14890
+ additionalProperties: {
14891
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14892
+ },
14893
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14894
+ type: 'object',
14895
+ },
14511
14896
  connected_account_id: {
14512
14897
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14513
14898
  format: 'uuid',
@@ -14518,6 +14903,13 @@ export default {
14518
14903
  format: 'date-time',
14519
14904
  type: 'string',
14520
14905
  },
14906
+ device_custom_metadata: {
14907
+ additionalProperties: {
14908
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14909
+ },
14910
+ description: 'Custom metadata of the device, present when device_id is provided.',
14911
+ type: 'object',
14912
+ },
14521
14913
  device_id: {
14522
14914
  description: 'ID of the affected device.',
14523
14915
  format: 'uuid',
@@ -14568,6 +14960,13 @@ export default {
14568
14960
  {
14569
14961
  description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.',
14570
14962
  properties: {
14963
+ connected_account_custom_metadata: {
14964
+ additionalProperties: {
14965
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14966
+ },
14967
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
14968
+ type: 'object',
14969
+ },
14571
14970
  connected_account_id: {
14572
14971
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14573
14972
  format: 'uuid',
@@ -14578,6 +14977,13 @@ export default {
14578
14977
  format: 'date-time',
14579
14978
  type: 'string',
14580
14979
  },
14980
+ device_custom_metadata: {
14981
+ additionalProperties: {
14982
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
14983
+ },
14984
+ description: 'Custom metadata of the device, present when device_id is provided.',
14985
+ type: 'object',
14986
+ },
14581
14987
  device_id: {
14582
14988
  description: 'ID of the affected device.',
14583
14989
  format: 'uuid',
@@ -14622,6 +15028,13 @@ export default {
14622
15028
  minimum: 0,
14623
15029
  type: 'number',
14624
15030
  },
15031
+ connected_account_custom_metadata: {
15032
+ additionalProperties: {
15033
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15034
+ },
15035
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15036
+ type: 'object',
15037
+ },
14625
15038
  connected_account_id: {
14626
15039
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14627
15040
  format: 'uuid',
@@ -14632,6 +15045,13 @@ export default {
14632
15045
  format: 'date-time',
14633
15046
  type: 'string',
14634
15047
  },
15048
+ device_custom_metadata: {
15049
+ additionalProperties: {
15050
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15051
+ },
15052
+ description: 'Custom metadata of the device, present when device_id is provided.',
15053
+ type: 'object',
15054
+ },
14635
15055
  device_id: {
14636
15056
  description: 'ID of the affected device.',
14637
15057
  format: 'uuid',
@@ -14682,6 +15102,13 @@ export default {
14682
15102
  enum: ['critical', 'low', 'good', 'full'],
14683
15103
  type: 'string',
14684
15104
  },
15105
+ connected_account_custom_metadata: {
15106
+ additionalProperties: {
15107
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15108
+ },
15109
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15110
+ type: 'object',
15111
+ },
14685
15112
  connected_account_id: {
14686
15113
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14687
15114
  format: 'uuid',
@@ -14692,6 +15119,13 @@ export default {
14692
15119
  format: 'date-time',
14693
15120
  type: 'string',
14694
15121
  },
15122
+ device_custom_metadata: {
15123
+ additionalProperties: {
15124
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15125
+ },
15126
+ description: 'Custom metadata of the device, present when device_id is provided.',
15127
+ type: 'object',
15128
+ },
14695
15129
  device_id: {
14696
15130
  description: 'ID of the affected device.',
14697
15131
  format: 'uuid',
@@ -14734,6 +15168,13 @@ export default {
14734
15168
  {
14735
15169
  description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
14736
15170
  properties: {
15171
+ connected_account_custom_metadata: {
15172
+ additionalProperties: {
15173
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15174
+ },
15175
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15176
+ type: 'object',
15177
+ },
14737
15178
  connected_account_id: {
14738
15179
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14739
15180
  format: 'uuid',
@@ -14744,6 +15185,13 @@ export default {
14744
15185
  format: 'date-time',
14745
15186
  type: 'string',
14746
15187
  },
15188
+ device_custom_metadata: {
15189
+ additionalProperties: {
15190
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15191
+ },
15192
+ description: 'Custom metadata of the device, present when device_id is provided.',
15193
+ type: 'object',
15194
+ },
14747
15195
  device_id: {
14748
15196
  description: 'ID of the affected device.',
14749
15197
  format: 'uuid',
@@ -14781,6 +15229,13 @@ export default {
14781
15229
  {
14782
15230
  description: 'A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.',
14783
15231
  properties: {
15232
+ connected_account_custom_metadata: {
15233
+ additionalProperties: {
15234
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15235
+ },
15236
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15237
+ type: 'object',
15238
+ },
14784
15239
  connected_account_id: {
14785
15240
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14786
15241
  format: 'uuid',
@@ -14791,6 +15246,13 @@ export default {
14791
15246
  format: 'date-time',
14792
15247
  type: 'string',
14793
15248
  },
15249
+ device_custom_metadata: {
15250
+ additionalProperties: {
15251
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15252
+ },
15253
+ description: 'Custom metadata of the device, present when device_id is provided.',
15254
+ type: 'object',
15255
+ },
14794
15256
  device_id: {
14795
15257
  description: 'ID of the affected device.',
14796
15258
  format: 'uuid',
@@ -14828,6 +15290,13 @@ export default {
14828
15290
  {
14829
15291
  description: 'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management.',
14830
15292
  properties: {
15293
+ connected_account_custom_metadata: {
15294
+ additionalProperties: {
15295
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15296
+ },
15297
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15298
+ type: 'object',
15299
+ },
14831
15300
  connected_account_id: {
14832
15301
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14833
15302
  format: 'uuid',
@@ -14838,6 +15307,13 @@ export default {
14838
15307
  format: 'date-time',
14839
15308
  type: 'string',
14840
15309
  },
15310
+ device_custom_metadata: {
15311
+ additionalProperties: {
15312
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15313
+ },
15314
+ description: 'Custom metadata of the device, present when device_id is provided.',
15315
+ type: 'object',
15316
+ },
14841
15317
  device_id: {
14842
15318
  description: 'ID of the affected device.',
14843
15319
  format: 'uuid',
@@ -14878,6 +15354,13 @@ export default {
14878
15354
  {
14879
15355
  description: 'Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management.',
14880
15356
  properties: {
15357
+ connected_account_custom_metadata: {
15358
+ additionalProperties: {
15359
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15360
+ },
15361
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15362
+ type: 'object',
15363
+ },
14881
15364
  connected_account_id: {
14882
15365
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14883
15366
  format: 'uuid',
@@ -14888,6 +15371,13 @@ export default {
14888
15371
  format: 'date-time',
14889
15372
  type: 'string',
14890
15373
  },
15374
+ device_custom_metadata: {
15375
+ additionalProperties: {
15376
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15377
+ },
15378
+ description: 'Custom metadata of the device, present when device_id is provided.',
15379
+ type: 'object',
15380
+ },
14891
15381
  device_id: {
14892
15382
  description: 'ID of the affected device.',
14893
15383
  format: 'uuid',
@@ -14928,6 +15418,13 @@ export default {
14928
15418
  {
14929
15419
  description: 'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.',
14930
15420
  properties: {
15421
+ connected_account_custom_metadata: {
15422
+ additionalProperties: {
15423
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15424
+ },
15425
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15426
+ type: 'object',
15427
+ },
14931
15428
  connected_account_id: {
14932
15429
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14933
15430
  format: 'uuid',
@@ -14938,6 +15435,13 @@ export default {
14938
15435
  format: 'date-time',
14939
15436
  type: 'string',
14940
15437
  },
15438
+ device_custom_metadata: {
15439
+ additionalProperties: {
15440
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15441
+ },
15442
+ description: 'Custom metadata of the device, present when device_id is provided.',
15443
+ type: 'object',
15444
+ },
14941
15445
  device_id: {
14942
15446
  description: 'ID of the affected device.',
14943
15447
  format: 'uuid',
@@ -14978,6 +15482,13 @@ export default {
14978
15482
  {
14979
15483
  description: 'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.',
14980
15484
  properties: {
15485
+ connected_account_custom_metadata: {
15486
+ additionalProperties: {
15487
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15488
+ },
15489
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15490
+ type: 'object',
15491
+ },
14981
15492
  connected_account_id: {
14982
15493
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
14983
15494
  format: 'uuid',
@@ -14988,6 +15499,13 @@ export default {
14988
15499
  format: 'date-time',
14989
15500
  type: 'string',
14990
15501
  },
15502
+ device_custom_metadata: {
15503
+ additionalProperties: {
15504
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15505
+ },
15506
+ description: 'Custom metadata of the device, present when device_id is provided.',
15507
+ type: 'object',
15508
+ },
14991
15509
  device_id: {
14992
15510
  description: 'ID of the affected device.',
14993
15511
  format: 'uuid',
@@ -15028,6 +15546,13 @@ export default {
15028
15546
  {
15029
15547
  description: 'Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.',
15030
15548
  properties: {
15549
+ connected_account_custom_metadata: {
15550
+ additionalProperties: {
15551
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15552
+ },
15553
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15554
+ type: 'object',
15555
+ },
15031
15556
  connected_account_id: {
15032
15557
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15033
15558
  format: 'uuid',
@@ -15038,6 +15563,13 @@ export default {
15038
15563
  format: 'date-time',
15039
15564
  type: 'string',
15040
15565
  },
15566
+ device_custom_metadata: {
15567
+ additionalProperties: {
15568
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15569
+ },
15570
+ description: 'Custom metadata of the device, present when device_id is provided.',
15571
+ type: 'object',
15572
+ },
15041
15573
  device_id: {
15042
15574
  description: 'ID of the affected device.',
15043
15575
  format: 'uuid',
@@ -15078,6 +15610,13 @@ export default {
15078
15610
  {
15079
15611
  description: 'Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.',
15080
15612
  properties: {
15613
+ connected_account_custom_metadata: {
15614
+ additionalProperties: {
15615
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15616
+ },
15617
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15618
+ type: 'object',
15619
+ },
15081
15620
  connected_account_id: {
15082
15621
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15083
15622
  format: 'uuid',
@@ -15088,6 +15627,13 @@ export default {
15088
15627
  format: 'date-time',
15089
15628
  type: 'string',
15090
15629
  },
15630
+ device_custom_metadata: {
15631
+ additionalProperties: {
15632
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15633
+ },
15634
+ description: 'Custom metadata of the device, present when device_id is provided.',
15635
+ type: 'object',
15636
+ },
15091
15637
  device_id: {
15092
15638
  description: 'ID of the affected device.',
15093
15639
  format: 'uuid',
@@ -15128,6 +15674,13 @@ export default {
15128
15674
  {
15129
15675
  description: 'A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
15130
15676
  properties: {
15677
+ connected_account_custom_metadata: {
15678
+ additionalProperties: {
15679
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15680
+ },
15681
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15682
+ type: 'object',
15683
+ },
15131
15684
  connected_account_id: {
15132
15685
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15133
15686
  format: 'uuid',
@@ -15138,6 +15691,13 @@ export default {
15138
15691
  format: 'date-time',
15139
15692
  type: 'string',
15140
15693
  },
15694
+ device_custom_metadata: {
15695
+ additionalProperties: {
15696
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15697
+ },
15698
+ description: 'Custom metadata of the device, present when device_id is provided.',
15699
+ type: 'object',
15700
+ },
15141
15701
  device_id: {
15142
15702
  description: 'ID of the affected device.',
15143
15703
  format: 'uuid',
@@ -15178,6 +15738,13 @@ export default {
15178
15738
  {
15179
15739
  description: 'A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
15180
15740
  properties: {
15741
+ connected_account_custom_metadata: {
15742
+ additionalProperties: {
15743
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15744
+ },
15745
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15746
+ type: 'object',
15747
+ },
15181
15748
  connected_account_id: {
15182
15749
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15183
15750
  format: 'uuid',
@@ -15188,6 +15755,13 @@ export default {
15188
15755
  format: 'date-time',
15189
15756
  type: 'string',
15190
15757
  },
15758
+ device_custom_metadata: {
15759
+ additionalProperties: {
15760
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15761
+ },
15762
+ description: 'Custom metadata of the device, present when device_id is provided.',
15763
+ type: 'object',
15764
+ },
15191
15765
  device_id: {
15192
15766
  description: 'ID of the affected device.',
15193
15767
  format: 'uuid',
@@ -15228,6 +15802,13 @@ export default {
15228
15802
  {
15229
15803
  description: 'An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).',
15230
15804
  properties: {
15805
+ connected_account_custom_metadata: {
15806
+ additionalProperties: {
15807
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15808
+ },
15809
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15810
+ type: 'object',
15811
+ },
15231
15812
  connected_account_id: {
15232
15813
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15233
15814
  format: 'uuid',
@@ -15238,6 +15819,13 @@ export default {
15238
15819
  format: 'date-time',
15239
15820
  type: 'string',
15240
15821
  },
15822
+ device_custom_metadata: {
15823
+ additionalProperties: {
15824
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15825
+ },
15826
+ description: 'Custom metadata of the device, present when device_id is provided.',
15827
+ type: 'object',
15828
+ },
15241
15829
  device_id: {
15242
15830
  description: 'ID of the affected device.',
15243
15831
  format: 'uuid',
@@ -15278,6 +15866,13 @@ export default {
15278
15866
  {
15279
15867
  description: 'An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).',
15280
15868
  properties: {
15869
+ connected_account_custom_metadata: {
15870
+ additionalProperties: {
15871
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15872
+ },
15873
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15874
+ type: 'object',
15875
+ },
15281
15876
  connected_account_id: {
15282
15877
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15283
15878
  format: 'uuid',
@@ -15288,6 +15883,13 @@ export default {
15288
15883
  format: 'date-time',
15289
15884
  type: 'string',
15290
15885
  },
15886
+ device_custom_metadata: {
15887
+ additionalProperties: {
15888
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15889
+ },
15890
+ description: 'Custom metadata of the device, present when device_id is provided.',
15891
+ type: 'object',
15892
+ },
15291
15893
  device_id: {
15292
15894
  description: 'ID of the affected device.',
15293
15895
  format: 'uuid',
@@ -15328,6 +15930,13 @@ export default {
15328
15930
  {
15329
15931
  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.',
15330
15932
  properties: {
15933
+ connected_account_custom_metadata: {
15934
+ additionalProperties: {
15935
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15936
+ },
15937
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
15938
+ type: 'object',
15939
+ },
15331
15940
  connected_account_id: {
15332
15941
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15333
15942
  format: 'uuid',
@@ -15338,6 +15947,13 @@ export default {
15338
15947
  format: 'date-time',
15339
15948
  type: 'string',
15340
15949
  },
15950
+ device_custom_metadata: {
15951
+ additionalProperties: {
15952
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
15953
+ },
15954
+ description: 'Custom metadata of the device, present when device_id is provided.',
15955
+ type: 'object',
15956
+ },
15341
15957
  device_id: {
15342
15958
  description: 'ID of the affected device.',
15343
15959
  format: 'uuid',
@@ -15417,6 +16033,13 @@ export default {
15417
16033
  format: 'uuid',
15418
16034
  type: 'string',
15419
16035
  },
16036
+ connected_account_custom_metadata: {
16037
+ additionalProperties: {
16038
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16039
+ },
16040
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16041
+ type: 'object',
16042
+ },
15420
16043
  connected_account_id: {
15421
16044
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15422
16045
  format: 'uuid',
@@ -15427,6 +16050,13 @@ export default {
15427
16050
  format: 'date-time',
15428
16051
  type: 'string',
15429
16052
  },
16053
+ device_custom_metadata: {
16054
+ additionalProperties: {
16055
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16056
+ },
16057
+ description: 'Custom metadata of the device, present when device_id is provided.',
16058
+ type: 'object',
16059
+ },
15430
16060
  device_id: {
15431
16061
  description: 'ID of the affected device.',
15432
16062
  format: 'uuid',
@@ -15480,6 +16110,13 @@ export default {
15480
16110
  format: 'uuid',
15481
16111
  type: 'string',
15482
16112
  },
16113
+ connected_account_custom_metadata: {
16114
+ additionalProperties: {
16115
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16116
+ },
16117
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16118
+ type: 'object',
16119
+ },
15483
16120
  connected_account_id: {
15484
16121
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15485
16122
  format: 'uuid',
@@ -15490,6 +16127,13 @@ export default {
15490
16127
  format: 'date-time',
15491
16128
  type: 'string',
15492
16129
  },
16130
+ device_custom_metadata: {
16131
+ additionalProperties: {
16132
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16133
+ },
16134
+ description: 'Custom metadata of the device, present when device_id is provided.',
16135
+ type: 'object',
16136
+ },
15493
16137
  device_id: {
15494
16138
  description: 'ID of the affected device.',
15495
16139
  format: 'uuid',
@@ -15538,6 +16182,13 @@ export default {
15538
16182
  format: 'uuid',
15539
16183
  type: 'string',
15540
16184
  },
16185
+ connected_account_custom_metadata: {
16186
+ additionalProperties: {
16187
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16188
+ },
16189
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16190
+ type: 'object',
16191
+ },
15541
16192
  connected_account_id: {
15542
16193
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15543
16194
  format: 'uuid',
@@ -15548,6 +16199,13 @@ export default {
15548
16199
  format: 'date-time',
15549
16200
  type: 'string',
15550
16201
  },
16202
+ device_custom_metadata: {
16203
+ additionalProperties: {
16204
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16205
+ },
16206
+ description: 'Custom metadata of the device, present when device_id is provided.',
16207
+ type: 'object',
16208
+ },
15551
16209
  device_id: {
15552
16210
  description: 'ID of the affected device.',
15553
16211
  format: 'uuid',
@@ -15589,6 +16247,13 @@ export default {
15589
16247
  description: 'Key of the climate preset that was activated.',
15590
16248
  type: 'string',
15591
16249
  },
16250
+ connected_account_custom_metadata: {
16251
+ additionalProperties: {
16252
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16253
+ },
16254
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16255
+ type: 'object',
16256
+ },
15592
16257
  connected_account_id: {
15593
16258
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15594
16259
  format: 'uuid',
@@ -15599,6 +16264,13 @@ export default {
15599
16264
  format: 'date-time',
15600
16265
  type: 'string',
15601
16266
  },
16267
+ device_custom_metadata: {
16268
+ additionalProperties: {
16269
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16270
+ },
16271
+ description: 'Custom metadata of the device, present when device_id is provided.',
16272
+ type: 'object',
16273
+ },
15602
16274
  device_id: {
15603
16275
  description: 'ID of the affected device.',
15604
16276
  format: 'uuid',
@@ -15652,6 +16324,13 @@ export default {
15652
16324
  {
15653
16325
  description: 'A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.',
15654
16326
  properties: {
16327
+ connected_account_custom_metadata: {
16328
+ additionalProperties: {
16329
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16330
+ },
16331
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16332
+ type: 'object',
16333
+ },
15655
16334
  connected_account_id: {
15656
16335
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15657
16336
  format: 'uuid',
@@ -15672,6 +16351,13 @@ export default {
15672
16351
  format: 'date-time',
15673
16352
  type: 'string',
15674
16353
  },
16354
+ device_custom_metadata: {
16355
+ additionalProperties: {
16356
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16357
+ },
16358
+ description: 'Custom metadata of the device, present when device_id is provided.',
16359
+ type: 'object',
16360
+ },
15675
16361
  device_id: {
15676
16362
  description: 'ID of the affected device.',
15677
16363
  format: 'uuid',
@@ -15738,6 +16424,13 @@ export default {
15738
16424
  {
15739
16425
  description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
15740
16426
  properties: {
16427
+ connected_account_custom_metadata: {
16428
+ additionalProperties: {
16429
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16430
+ },
16431
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16432
+ type: 'object',
16433
+ },
15741
16434
  connected_account_id: {
15742
16435
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15743
16436
  format: 'uuid',
@@ -15748,6 +16441,13 @@ export default {
15748
16441
  format: 'date-time',
15749
16442
  type: 'string',
15750
16443
  },
16444
+ device_custom_metadata: {
16445
+ additionalProperties: {
16446
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16447
+ },
16448
+ description: 'Custom metadata of the device, present when device_id is provided.',
16449
+ type: 'object',
16450
+ },
15751
16451
  device_id: {
15752
16452
  description: 'ID of the affected device.',
15753
16453
  format: 'uuid',
@@ -15828,6 +16528,13 @@ export default {
15828
16528
  {
15829
16529
  description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
15830
16530
  properties: {
16531
+ connected_account_custom_metadata: {
16532
+ additionalProperties: {
16533
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16534
+ },
16535
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16536
+ type: 'object',
16537
+ },
15831
16538
  connected_account_id: {
15832
16539
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15833
16540
  format: 'uuid',
@@ -15838,6 +16545,13 @@ export default {
15838
16545
  format: 'date-time',
15839
16546
  type: 'string',
15840
16547
  },
16548
+ device_custom_metadata: {
16549
+ additionalProperties: {
16550
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16551
+ },
16552
+ description: 'Custom metadata of the device, present when device_id is provided.',
16553
+ type: 'object',
16554
+ },
15841
16555
  device_id: {
15842
16556
  description: 'ID of the affected device.',
15843
16557
  format: 'uuid',
@@ -15918,6 +16632,13 @@ export default {
15918
16632
  {
15919
16633
  description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 °C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
15920
16634
  properties: {
16635
+ connected_account_custom_metadata: {
16636
+ additionalProperties: {
16637
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16638
+ },
16639
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16640
+ type: 'object',
16641
+ },
15921
16642
  connected_account_id: {
15922
16643
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15923
16644
  format: 'uuid',
@@ -15938,6 +16659,13 @@ export default {
15938
16659
  format: 'float',
15939
16660
  type: 'number',
15940
16661
  },
16662
+ device_custom_metadata: {
16663
+ additionalProperties: {
16664
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16665
+ },
16666
+ description: 'Custom metadata of the device, present when device_id is provided.',
16667
+ type: 'object',
16668
+ },
15941
16669
  device_id: {
15942
16670
  description: 'ID of the affected device.',
15943
16671
  format: 'uuid',
@@ -15990,6 +16718,13 @@ export default {
15990
16718
  {
15991
16719
  description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) reported temperature changed by at least 1 °C.",
15992
16720
  properties: {
16721
+ connected_account_custom_metadata: {
16722
+ additionalProperties: {
16723
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16724
+ },
16725
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16726
+ type: 'object',
16727
+ },
15993
16728
  connected_account_id: {
15994
16729
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
15995
16730
  format: 'uuid',
@@ -16000,6 +16735,13 @@ export default {
16000
16735
  format: 'date-time',
16001
16736
  type: 'string',
16002
16737
  },
16738
+ device_custom_metadata: {
16739
+ additionalProperties: {
16740
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16741
+ },
16742
+ description: 'Custom metadata of the device, present when device_id is provided.',
16743
+ type: 'object',
16744
+ },
16003
16745
  device_id: {
16004
16746
  description: 'ID of the affected device.',
16005
16747
  format: 'uuid',
@@ -16052,6 +16794,13 @@ export default {
16052
16794
  {
16053
16795
  description: 'The name of a [device](https://docs.seam.co/latest/core-concepts/devices) was changed.',
16054
16796
  properties: {
16797
+ connected_account_custom_metadata: {
16798
+ additionalProperties: {
16799
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16800
+ },
16801
+ description: 'Custom metadata of the connected account, present when connected_account_id is provided.',
16802
+ type: 'object',
16803
+ },
16055
16804
  connected_account_id: {
16056
16805
  description: 'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
16057
16806
  format: 'uuid',
@@ -16062,6 +16811,13 @@ export default {
16062
16811
  format: 'date-time',
16063
16812
  type: 'string',
16064
16813
  },
16814
+ device_custom_metadata: {
16815
+ additionalProperties: {
16816
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16817
+ },
16818
+ description: 'Custom metadata of the device, present when device_id is provided.',
16819
+ type: 'object',
16820
+ },
16065
16821
  device_id: {
16066
16822
  description: 'ID of the affected device.',
16067
16823
  format: 'uuid',
@@ -16153,6 +16909,13 @@ export default {
16153
16909
  format: 'date-time',
16154
16910
  type: 'string',
16155
16911
  },
16912
+ device_custom_metadata: {
16913
+ additionalProperties: {
16914
+ oneOf: [{ type: 'string' }, { type: 'boolean' }],
16915
+ },
16916
+ description: 'Custom metadata of the device; present when device_id is provided.',
16917
+ type: 'object',
16918
+ },
16156
16919
  device_id: {
16157
16920
  description: 'ID of the affected phone device.',
16158
16921
  format: 'uuid',
@@ -21279,6 +22042,11 @@ export default {
21279
22042
  user_identity: {
21280
22043
  description: 'Represents a [user identity](https://docs.seam.co/latest/capability-guides/mobile-access/managing-mobile-app-user-accounts-with-user-identities#what-is-a-user-identity) associated with an application user account.',
21281
22044
  properties: {
22045
+ acs_user_ids: {
22046
+ description: 'Array of access system user IDs associated with the user identity.',
22047
+ items: { format: 'uuid', type: 'string' },
22048
+ type: 'array',
22049
+ },
21282
22050
  created_at: {
21283
22051
  description: 'Date and time at which the user identity was created.',
21284
22052
  format: 'date-time',
@@ -21424,6 +22192,7 @@ export default {
21424
22192
  'workspace_id',
21425
22193
  'errors',
21426
22194
  'warnings',
22195
+ 'acs_user_ids',
21427
22196
  ],
21428
22197
  type: 'object',
21429
22198
  'x-route-path': '/user_identities',
@@ -28324,6 +29093,15 @@ export default {
28324
29093
  type: 'string',
28325
29094
  },
28326
29095
  },
29096
+ {
29097
+ in: 'query',
29098
+ name: 'acs_entrance_ids',
29099
+ schema: {
29100
+ description: 'IDs of the entrances for which you want to retrieve all entrances.',
29101
+ items: { format: 'uuid', type: 'string' },
29102
+ type: 'array',
29103
+ },
29104
+ },
28327
29105
  ],
28328
29106
  responses: {
28329
29107
  200: {
@@ -28384,6 +29162,11 @@ export default {
28384
29162
  format: 'uuid',
28385
29163
  type: 'string',
28386
29164
  },
29165
+ acs_entrance_ids: {
29166
+ description: 'IDs of the entrances for which you want to retrieve all entrances.',
29167
+ items: { format: 'uuid', type: 'string' },
29168
+ type: 'array',
29169
+ },
28387
29170
  acs_system_id: {
28388
29171
  description: 'ID of the access system for which you want to retrieve all entrances.',
28389
29172
  format: 'uuid',
@@ -35228,6 +36011,57 @@ export default {
35228
36011
  'x-title': 'Simulate Device Connection',
35229
36012
  },
35230
36013
  },
36014
+ '/devices/simulate/connect_to_hub': {
36015
+ post: {
36016
+ description: 'Simulates bringing the Wi-Fi hub (bridge) back online for a device. \nOnly applicable for [sandbox workspaces](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) and August locks today, but designed so we can extend to other providers later. \nThis will clear the `hub_disconnected` error on the device.',
36017
+ operationId: 'devicesSimulateConnectToHubPost',
36018
+ requestBody: {
36019
+ content: {
36020
+ 'application/json': {
36021
+ schema: {
36022
+ properties: {
36023
+ device_id: {
36024
+ description: 'ID of the device whose hub you want to reconnect.',
36025
+ format: 'uuid',
36026
+ type: 'string',
36027
+ },
36028
+ },
36029
+ required: ['device_id'],
36030
+ type: 'object',
36031
+ },
36032
+ },
36033
+ },
36034
+ },
36035
+ responses: {
36036
+ 200: {
36037
+ content: {
36038
+ 'application/json': {
36039
+ schema: {
36040
+ properties: { ok: { type: 'boolean' } },
36041
+ required: ['ok'],
36042
+ type: 'object',
36043
+ },
36044
+ },
36045
+ },
36046
+ description: 'OK',
36047
+ },
36048
+ 400: { description: 'Bad Request' },
36049
+ 401: { description: 'Unauthorized' },
36050
+ },
36051
+ security: [
36052
+ { api_key: [] },
36053
+ { pat_with_workspace: [] },
36054
+ { console_session_with_workspace: [] },
36055
+ { client_session_with_customer: [] },
36056
+ ],
36057
+ summary: '/devices/simulate/connect_to_hub',
36058
+ tags: ['/devices'],
36059
+ 'x-fern-sdk-group-name': ['devices', 'simulate'],
36060
+ 'x-fern-sdk-method-name': 'connect_to_hub',
36061
+ 'x-response-key': null,
36062
+ 'x-title': 'Simulate Hub Connection',
36063
+ },
36064
+ },
35231
36065
  '/devices/simulate/disconnect': {
35232
36066
  post: {
35233
36067
  description: 'Simulates disconnecting a device from Seam. Only applicable for [sandbox devices](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Testing Your App Against Device Disconnection and Removal](https://docs.seam.co/latest/core-concepts/devices/testing-your-app-against-device-disconnection-and-removal).',
@@ -35279,6 +36113,57 @@ export default {
35279
36113
  'x-title': 'Simulate Device Disconnection',
35280
36114
  },
35281
36115
  },
36116
+ '/devices/simulate/disconnect_from_hub': {
36117
+ post: {
36118
+ description: 'Simulates taking the Wi-Fi hub (bridge) offline for a device. \nOnly applicable for [sandbox workspaces](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces) and August locks today, but designed so we can extend to other providers later. \nThis will set the `hub_disconnected` error on the device.',
36119
+ operationId: 'devicesSimulateDisconnectFromHubPost',
36120
+ requestBody: {
36121
+ content: {
36122
+ 'application/json': {
36123
+ schema: {
36124
+ properties: {
36125
+ device_id: {
36126
+ description: 'ID of the device whose hub you want to disconnect.',
36127
+ format: 'uuid',
36128
+ type: 'string',
36129
+ },
36130
+ },
36131
+ required: ['device_id'],
36132
+ type: 'object',
36133
+ },
36134
+ },
36135
+ },
36136
+ },
36137
+ responses: {
36138
+ 200: {
36139
+ content: {
36140
+ 'application/json': {
36141
+ schema: {
36142
+ properties: { ok: { type: 'boolean' } },
36143
+ required: ['ok'],
36144
+ type: 'object',
36145
+ },
36146
+ },
36147
+ },
36148
+ description: 'OK',
36149
+ },
36150
+ 400: { description: 'Bad Request' },
36151
+ 401: { description: 'Unauthorized' },
36152
+ },
36153
+ security: [
36154
+ { api_key: [] },
36155
+ { pat_with_workspace: [] },
36156
+ { console_session_with_workspace: [] },
36157
+ { client_session_with_customer: [] },
36158
+ ],
36159
+ summary: '/devices/simulate/disconnect_from_hub',
36160
+ tags: ['/devices'],
36161
+ 'x-fern-sdk-group-name': ['devices', 'simulate'],
36162
+ 'x-fern-sdk-method-name': 'disconnect_from_hub',
36163
+ 'x-response-key': null,
36164
+ 'x-title': 'Simulate Hub Disconnection',
36165
+ },
36166
+ },
35282
36167
  '/devices/simulate/remove': {
35283
36168
  post: {
35284
36169
  description: 'Simulates removing a device from Seam. Only applicable for [sandbox devices](https://docs.seam.co/latest/core-concepts/workspaces#sandbox-workspaces). See also [Testing Your App Against Device Disconnection and Removal](https://docs.seam.co/latest/core-concepts/devices/testing-your-app-against-device-disconnection-and-removal).',
@@ -38108,6 +38993,7 @@ export default {
38108
38993
  'x-fern-sdk-method-name': 'keypad_code_entry',
38109
38994
  'x-fern-sdk-return-value': 'action_attempt',
38110
38995
  'x-response-key': 'action_attempt',
38996
+ 'x-title': 'Simulate a Keypad Code Entry',
38111
38997
  },
38112
38998
  },
38113
38999
  '/locks/simulate/manual_lock_via_keypad': {
@@ -38164,6 +39050,7 @@ export default {
38164
39050
  'x-fern-sdk-method-name': 'manual_lock_via_keypad',
38165
39051
  'x-fern-sdk-return-value': 'action_attempt',
38166
39052
  'x-response-key': 'action_attempt',
39053
+ 'x-title': 'Simulate a Manual Lock Action Using a Keypad',
38167
39054
  },
38168
39055
  },
38169
39056
  '/locks/unlock_door': {