@seamapi/types 1.437.1 → 1.439.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 +1315 -190
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +8832 -319
- package/lib/seam/connect/internal/schemas.d.ts +1 -1
- package/lib/seam/connect/internal/schemas.js +1 -1
- package/lib/seam/connect/internal/schemas.js.map +1 -1
- package/lib/seam/connect/model-types.d.ts +1 -1
- package/lib/seam/connect/models/batches/batch.d.ts +5669 -0
- package/lib/seam/connect/models/batches/batch.js +8 -0
- package/lib/seam/connect/models/batches/batch.js.map +1 -0
- package/lib/seam/connect/models/batches/index.d.ts +2 -0
- package/lib/seam/connect/models/batches/index.js +3 -0
- package/lib/seam/connect/models/batches/index.js.map +1 -0
- package/lib/seam/connect/models/batches/spaces.d.ts +5669 -0
- package/lib/seam/connect/models/batches/spaces.js +13 -0
- package/lib/seam/connect/models/batches/spaces.js.map +1 -0
- package/lib/seam/connect/models/events/access-codes.d.ts +204 -0
- package/lib/seam/connect/models/events/access-codes.js +7 -0
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.d.ts +6 -0
- package/lib/seam/connect/models/events/connect-webviews.js +5 -0
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.d.ts +42 -0
- package/lib/seam/connect/models/events/connected-accounts.js +4 -0
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.d.ts +396 -0
- package/lib/seam/connect/models/events/devices.js +7 -0
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/phones.d.ts +6 -0
- package/lib/seam/connect/models/events/phones.js +4 -0
- package/lib/seam/connect/models/events/phones.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +327 -0
- package/lib/seam/connect/models/events/seam-event.js +1 -1
- package/lib/seam/connect/models/index.d.ts +1 -0
- package/lib/seam/connect/models/index.js +1 -0
- package/lib/seam/connect/models/index.js.map +1 -1
- package/lib/seam/connect/models/user-identities/user-identity.d.ts +3 -0
- package/lib/seam/connect/models/user-identities/user-identity.js +3 -0
- package/lib/seam/connect/models/user-identities/user-identity.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +783 -25
- package/lib/seam/connect/openapi.js +1068 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1755 -0
- package/lib/seam/connect/schemas.d.ts +1 -1
- package/lib/seam/connect/schemas.js +1 -1
- package/lib/seam/connect/schemas.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/internal/schemas.ts +1 -0
- package/src/lib/seam/connect/model-types.ts +1 -0
- package/src/lib/seam/connect/models/batches/batch.ts +12 -0
- package/src/lib/seam/connect/models/batches/index.ts +2 -0
- package/src/lib/seam/connect/models/batches/spaces.ts +16 -0
- package/src/lib/seam/connect/models/events/access-codes.ts +11 -0
- package/src/lib/seam/connect/models/events/connect-webviews.ts +8 -0
- package/src/lib/seam/connect/models/events/connected-accounts.ts +6 -0
- package/src/lib/seam/connect/models/events/devices.ts +11 -0
- package/src/lib/seam/connect/models/events/phones.ts +6 -0
- package/src/lib/seam/connect/models/events/seam-event.ts +1 -1
- package/src/lib/seam/connect/models/index.ts +1 -0
- package/src/lib/seam/connect/models/user-identities/user-identity.ts +5 -0
- package/src/lib/seam/connect/openapi.ts +1186 -0
- package/src/lib/seam/connect/route-types.ts +2536 -0
- package/src/lib/seam/connect/schemas.ts +1 -0
|
@@ -12925,6 +12925,14 @@ export default {
|
|
|
12925
12925
|
format: 'uuid',
|
|
12926
12926
|
type: 'string',
|
|
12927
12927
|
},
|
|
12928
|
+
connected_account_custom_metadata: {
|
|
12929
|
+
additionalProperties: {
|
|
12930
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
12931
|
+
},
|
|
12932
|
+
description:
|
|
12933
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
12934
|
+
type: 'object',
|
|
12935
|
+
},
|
|
12928
12936
|
connected_account_id: {
|
|
12929
12937
|
description:
|
|
12930
12938
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -12936,6 +12944,14 @@ export default {
|
|
|
12936
12944
|
format: 'date-time',
|
|
12937
12945
|
type: 'string',
|
|
12938
12946
|
},
|
|
12947
|
+
device_custom_metadata: {
|
|
12948
|
+
additionalProperties: {
|
|
12949
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
12950
|
+
},
|
|
12951
|
+
description:
|
|
12952
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
12953
|
+
type: 'object',
|
|
12954
|
+
},
|
|
12939
12955
|
device_id: {
|
|
12940
12956
|
description:
|
|
12941
12957
|
'ID of the device associated with the affected access code.',
|
|
@@ -12982,6 +12998,14 @@ export default {
|
|
|
12982
12998
|
format: 'uuid',
|
|
12983
12999
|
type: 'string',
|
|
12984
13000
|
},
|
|
13001
|
+
connected_account_custom_metadata: {
|
|
13002
|
+
additionalProperties: {
|
|
13003
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13004
|
+
},
|
|
13005
|
+
description:
|
|
13006
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13007
|
+
type: 'object',
|
|
13008
|
+
},
|
|
12985
13009
|
connected_account_id: {
|
|
12986
13010
|
description:
|
|
12987
13011
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -12993,6 +13017,14 @@ export default {
|
|
|
12993
13017
|
format: 'date-time',
|
|
12994
13018
|
type: 'string',
|
|
12995
13019
|
},
|
|
13020
|
+
device_custom_metadata: {
|
|
13021
|
+
additionalProperties: {
|
|
13022
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13023
|
+
},
|
|
13024
|
+
description:
|
|
13025
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13026
|
+
type: 'object',
|
|
13027
|
+
},
|
|
12996
13028
|
device_id: {
|
|
12997
13029
|
description:
|
|
12998
13030
|
'ID of the device associated with the affected access code.',
|
|
@@ -13043,6 +13075,14 @@ export default {
|
|
|
13043
13075
|
description: 'Code for the affected access code.',
|
|
13044
13076
|
type: 'string',
|
|
13045
13077
|
},
|
|
13078
|
+
connected_account_custom_metadata: {
|
|
13079
|
+
additionalProperties: {
|
|
13080
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13081
|
+
},
|
|
13082
|
+
description:
|
|
13083
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13084
|
+
type: 'object',
|
|
13085
|
+
},
|
|
13046
13086
|
connected_account_id: {
|
|
13047
13087
|
description:
|
|
13048
13088
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13054,6 +13094,14 @@ export default {
|
|
|
13054
13094
|
format: 'date-time',
|
|
13055
13095
|
type: 'string',
|
|
13056
13096
|
},
|
|
13097
|
+
device_custom_metadata: {
|
|
13098
|
+
additionalProperties: {
|
|
13099
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13100
|
+
},
|
|
13101
|
+
description:
|
|
13102
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13103
|
+
type: 'object',
|
|
13104
|
+
},
|
|
13057
13105
|
device_id: {
|
|
13058
13106
|
description:
|
|
13059
13107
|
'ID of the device associated with the affected access code.',
|
|
@@ -13108,6 +13156,14 @@ export default {
|
|
|
13108
13156
|
description: 'Code for the affected access code.',
|
|
13109
13157
|
type: 'string',
|
|
13110
13158
|
},
|
|
13159
|
+
connected_account_custom_metadata: {
|
|
13160
|
+
additionalProperties: {
|
|
13161
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13162
|
+
},
|
|
13163
|
+
description:
|
|
13164
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13165
|
+
type: 'object',
|
|
13166
|
+
},
|
|
13111
13167
|
connected_account_id: {
|
|
13112
13168
|
description:
|
|
13113
13169
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13119,6 +13175,14 @@ export default {
|
|
|
13119
13175
|
format: 'date-time',
|
|
13120
13176
|
type: 'string',
|
|
13121
13177
|
},
|
|
13178
|
+
device_custom_metadata: {
|
|
13179
|
+
additionalProperties: {
|
|
13180
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13181
|
+
},
|
|
13182
|
+
description:
|
|
13183
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13184
|
+
type: 'object',
|
|
13185
|
+
},
|
|
13122
13186
|
device_id: {
|
|
13123
13187
|
description:
|
|
13124
13188
|
'ID of the device associated with the affected access code.',
|
|
@@ -13169,6 +13233,14 @@ export default {
|
|
|
13169
13233
|
format: 'uuid',
|
|
13170
13234
|
type: 'string',
|
|
13171
13235
|
},
|
|
13236
|
+
connected_account_custom_metadata: {
|
|
13237
|
+
additionalProperties: {
|
|
13238
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13239
|
+
},
|
|
13240
|
+
description:
|
|
13241
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13242
|
+
type: 'object',
|
|
13243
|
+
},
|
|
13172
13244
|
connected_account_id: {
|
|
13173
13245
|
description:
|
|
13174
13246
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13180,6 +13252,14 @@ export default {
|
|
|
13180
13252
|
format: 'date-time',
|
|
13181
13253
|
type: 'string',
|
|
13182
13254
|
},
|
|
13255
|
+
device_custom_metadata: {
|
|
13256
|
+
additionalProperties: {
|
|
13257
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13258
|
+
},
|
|
13259
|
+
description:
|
|
13260
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13261
|
+
type: 'object',
|
|
13262
|
+
},
|
|
13183
13263
|
device_id: {
|
|
13184
13264
|
description:
|
|
13185
13265
|
'ID of the device associated with the affected access code.',
|
|
@@ -13229,6 +13309,14 @@ export default {
|
|
|
13229
13309
|
format: 'uuid',
|
|
13230
13310
|
type: 'string',
|
|
13231
13311
|
},
|
|
13312
|
+
connected_account_custom_metadata: {
|
|
13313
|
+
additionalProperties: {
|
|
13314
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13315
|
+
},
|
|
13316
|
+
description:
|
|
13317
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13318
|
+
type: 'object',
|
|
13319
|
+
},
|
|
13232
13320
|
connected_account_id: {
|
|
13233
13321
|
description:
|
|
13234
13322
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13240,6 +13328,14 @@ export default {
|
|
|
13240
13328
|
format: 'date-time',
|
|
13241
13329
|
type: 'string',
|
|
13242
13330
|
},
|
|
13331
|
+
device_custom_metadata: {
|
|
13332
|
+
additionalProperties: {
|
|
13333
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13334
|
+
},
|
|
13335
|
+
description:
|
|
13336
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13337
|
+
type: 'object',
|
|
13338
|
+
},
|
|
13243
13339
|
device_id: {
|
|
13244
13340
|
description:
|
|
13245
13341
|
'ID of the device associated with the affected access code.',
|
|
@@ -13289,6 +13385,14 @@ export default {
|
|
|
13289
13385
|
format: 'uuid',
|
|
13290
13386
|
type: 'string',
|
|
13291
13387
|
},
|
|
13388
|
+
connected_account_custom_metadata: {
|
|
13389
|
+
additionalProperties: {
|
|
13390
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13391
|
+
},
|
|
13392
|
+
description:
|
|
13393
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13394
|
+
type: 'object',
|
|
13395
|
+
},
|
|
13292
13396
|
connected_account_id: {
|
|
13293
13397
|
description:
|
|
13294
13398
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13300,6 +13404,14 @@ export default {
|
|
|
13300
13404
|
format: 'date-time',
|
|
13301
13405
|
type: 'string',
|
|
13302
13406
|
},
|
|
13407
|
+
device_custom_metadata: {
|
|
13408
|
+
additionalProperties: {
|
|
13409
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13410
|
+
},
|
|
13411
|
+
description:
|
|
13412
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13413
|
+
type: 'object',
|
|
13414
|
+
},
|
|
13303
13415
|
device_id: {
|
|
13304
13416
|
description:
|
|
13305
13417
|
'ID of the device associated with the affected access code.',
|
|
@@ -13354,6 +13466,14 @@ export default {
|
|
|
13354
13466
|
nullable: true,
|
|
13355
13467
|
type: 'string',
|
|
13356
13468
|
},
|
|
13469
|
+
connected_account_custom_metadata: {
|
|
13470
|
+
additionalProperties: {
|
|
13471
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13472
|
+
},
|
|
13473
|
+
description:
|
|
13474
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13475
|
+
type: 'object',
|
|
13476
|
+
},
|
|
13357
13477
|
connected_account_id: {
|
|
13358
13478
|
description:
|
|
13359
13479
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13365,6 +13485,14 @@ export default {
|
|
|
13365
13485
|
format: 'date-time',
|
|
13366
13486
|
type: 'string',
|
|
13367
13487
|
},
|
|
13488
|
+
device_custom_metadata: {
|
|
13489
|
+
additionalProperties: {
|
|
13490
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13491
|
+
},
|
|
13492
|
+
description:
|
|
13493
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13494
|
+
type: 'object',
|
|
13495
|
+
},
|
|
13368
13496
|
device_id: {
|
|
13369
13497
|
description:
|
|
13370
13498
|
'ID of the device associated with the affected access code.',
|
|
@@ -13412,6 +13540,14 @@ export default {
|
|
|
13412
13540
|
format: 'uuid',
|
|
13413
13541
|
type: 'string',
|
|
13414
13542
|
},
|
|
13543
|
+
connected_account_custom_metadata: {
|
|
13544
|
+
additionalProperties: {
|
|
13545
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13546
|
+
},
|
|
13547
|
+
description:
|
|
13548
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13549
|
+
type: 'object',
|
|
13550
|
+
},
|
|
13415
13551
|
connected_account_id: {
|
|
13416
13552
|
description:
|
|
13417
13553
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13423,6 +13559,14 @@ export default {
|
|
|
13423
13559
|
format: 'date-time',
|
|
13424
13560
|
type: 'string',
|
|
13425
13561
|
},
|
|
13562
|
+
device_custom_metadata: {
|
|
13563
|
+
additionalProperties: {
|
|
13564
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13565
|
+
},
|
|
13566
|
+
description:
|
|
13567
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13568
|
+
type: 'object',
|
|
13569
|
+
},
|
|
13426
13570
|
device_id: {
|
|
13427
13571
|
description:
|
|
13428
13572
|
'ID of the device associated with the affected access code.',
|
|
@@ -13472,6 +13616,14 @@ export default {
|
|
|
13472
13616
|
format: 'uuid',
|
|
13473
13617
|
type: 'string',
|
|
13474
13618
|
},
|
|
13619
|
+
connected_account_custom_metadata: {
|
|
13620
|
+
additionalProperties: {
|
|
13621
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13622
|
+
},
|
|
13623
|
+
description:
|
|
13624
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13625
|
+
type: 'object',
|
|
13626
|
+
},
|
|
13475
13627
|
connected_account_id: {
|
|
13476
13628
|
description:
|
|
13477
13629
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13483,6 +13635,14 @@ export default {
|
|
|
13483
13635
|
format: 'date-time',
|
|
13484
13636
|
type: 'string',
|
|
13485
13637
|
},
|
|
13638
|
+
device_custom_metadata: {
|
|
13639
|
+
additionalProperties: {
|
|
13640
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13641
|
+
},
|
|
13642
|
+
description:
|
|
13643
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13644
|
+
type: 'object',
|
|
13645
|
+
},
|
|
13486
13646
|
device_id: {
|
|
13487
13647
|
description:
|
|
13488
13648
|
'ID of the device associated with the affected access code.',
|
|
@@ -13532,6 +13692,14 @@ export default {
|
|
|
13532
13692
|
format: 'uuid',
|
|
13533
13693
|
type: 'string',
|
|
13534
13694
|
},
|
|
13695
|
+
connected_account_custom_metadata: {
|
|
13696
|
+
additionalProperties: {
|
|
13697
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13698
|
+
},
|
|
13699
|
+
description:
|
|
13700
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13701
|
+
type: 'object',
|
|
13702
|
+
},
|
|
13535
13703
|
connected_account_id: {
|
|
13536
13704
|
description:
|
|
13537
13705
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13543,6 +13711,14 @@ export default {
|
|
|
13543
13711
|
format: 'date-time',
|
|
13544
13712
|
type: 'string',
|
|
13545
13713
|
},
|
|
13714
|
+
device_custom_metadata: {
|
|
13715
|
+
additionalProperties: {
|
|
13716
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13717
|
+
},
|
|
13718
|
+
description:
|
|
13719
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13720
|
+
type: 'object',
|
|
13721
|
+
},
|
|
13546
13722
|
device_id: {
|
|
13547
13723
|
description:
|
|
13548
13724
|
'ID of the device associated with the affected access code.',
|
|
@@ -13592,6 +13768,14 @@ export default {
|
|
|
13592
13768
|
format: 'uuid',
|
|
13593
13769
|
type: 'string',
|
|
13594
13770
|
},
|
|
13771
|
+
connected_account_custom_metadata: {
|
|
13772
|
+
additionalProperties: {
|
|
13773
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13774
|
+
},
|
|
13775
|
+
description:
|
|
13776
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13777
|
+
type: 'object',
|
|
13778
|
+
},
|
|
13595
13779
|
connected_account_id: {
|
|
13596
13780
|
description:
|
|
13597
13781
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13603,6 +13787,14 @@ export default {
|
|
|
13603
13787
|
format: 'date-time',
|
|
13604
13788
|
type: 'string',
|
|
13605
13789
|
},
|
|
13790
|
+
device_custom_metadata: {
|
|
13791
|
+
additionalProperties: {
|
|
13792
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13793
|
+
},
|
|
13794
|
+
description:
|
|
13795
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13796
|
+
type: 'object',
|
|
13797
|
+
},
|
|
13606
13798
|
device_id: {
|
|
13607
13799
|
description:
|
|
13608
13800
|
'ID of the device associated with the affected access code.',
|
|
@@ -13653,6 +13845,14 @@ export default {
|
|
|
13653
13845
|
type: 'string',
|
|
13654
13846
|
},
|
|
13655
13847
|
backup_access_code_id: { type: 'string' },
|
|
13848
|
+
connected_account_custom_metadata: {
|
|
13849
|
+
additionalProperties: {
|
|
13850
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13851
|
+
},
|
|
13852
|
+
description:
|
|
13853
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13854
|
+
type: 'object',
|
|
13855
|
+
},
|
|
13656
13856
|
connected_account_id: {
|
|
13657
13857
|
description:
|
|
13658
13858
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13664,6 +13864,14 @@ export default {
|
|
|
13664
13864
|
format: 'date-time',
|
|
13665
13865
|
type: 'string',
|
|
13666
13866
|
},
|
|
13867
|
+
device_custom_metadata: {
|
|
13868
|
+
additionalProperties: {
|
|
13869
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13870
|
+
},
|
|
13871
|
+
description:
|
|
13872
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13873
|
+
type: 'object',
|
|
13874
|
+
},
|
|
13667
13875
|
device_id: {
|
|
13668
13876
|
description:
|
|
13669
13877
|
'ID of the device associated with the affected access code.',
|
|
@@ -13714,6 +13922,14 @@ export default {
|
|
|
13714
13922
|
format: 'uuid',
|
|
13715
13923
|
type: 'string',
|
|
13716
13924
|
},
|
|
13925
|
+
connected_account_custom_metadata: {
|
|
13926
|
+
additionalProperties: {
|
|
13927
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13928
|
+
},
|
|
13929
|
+
description:
|
|
13930
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
13931
|
+
type: 'object',
|
|
13932
|
+
},
|
|
13717
13933
|
connected_account_id: {
|
|
13718
13934
|
description:
|
|
13719
13935
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13725,6 +13941,14 @@ export default {
|
|
|
13725
13941
|
format: 'date-time',
|
|
13726
13942
|
type: 'string',
|
|
13727
13943
|
},
|
|
13944
|
+
device_custom_metadata: {
|
|
13945
|
+
additionalProperties: {
|
|
13946
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
13947
|
+
},
|
|
13948
|
+
description:
|
|
13949
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
13950
|
+
type: 'object',
|
|
13951
|
+
},
|
|
13728
13952
|
device_id: {
|
|
13729
13953
|
description:
|
|
13730
13954
|
'ID of the device associated with the affected access code.',
|
|
@@ -13774,6 +13998,14 @@ export default {
|
|
|
13774
13998
|
format: 'uuid',
|
|
13775
13999
|
type: 'string',
|
|
13776
14000
|
},
|
|
14001
|
+
connected_account_custom_metadata: {
|
|
14002
|
+
additionalProperties: {
|
|
14003
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14004
|
+
},
|
|
14005
|
+
description:
|
|
14006
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
14007
|
+
type: 'object',
|
|
14008
|
+
},
|
|
13777
14009
|
connected_account_id: {
|
|
13778
14010
|
description:
|
|
13779
14011
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13785,6 +14017,14 @@ export default {
|
|
|
13785
14017
|
format: 'date-time',
|
|
13786
14018
|
type: 'string',
|
|
13787
14019
|
},
|
|
14020
|
+
device_custom_metadata: {
|
|
14021
|
+
additionalProperties: {
|
|
14022
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14023
|
+
},
|
|
14024
|
+
description:
|
|
14025
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
14026
|
+
type: 'object',
|
|
14027
|
+
},
|
|
13788
14028
|
device_id: {
|
|
13789
14029
|
description:
|
|
13790
14030
|
'ID of the device associated with the affected access code.',
|
|
@@ -13834,6 +14074,14 @@ export default {
|
|
|
13834
14074
|
format: 'uuid',
|
|
13835
14075
|
type: 'string',
|
|
13836
14076
|
},
|
|
14077
|
+
connected_account_custom_metadata: {
|
|
14078
|
+
additionalProperties: {
|
|
14079
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14080
|
+
},
|
|
14081
|
+
description:
|
|
14082
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
14083
|
+
type: 'object',
|
|
14084
|
+
},
|
|
13837
14085
|
connected_account_id: {
|
|
13838
14086
|
description:
|
|
13839
14087
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13845,6 +14093,14 @@ export default {
|
|
|
13845
14093
|
format: 'date-time',
|
|
13846
14094
|
type: 'string',
|
|
13847
14095
|
},
|
|
14096
|
+
device_custom_metadata: {
|
|
14097
|
+
additionalProperties: {
|
|
14098
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14099
|
+
},
|
|
14100
|
+
description:
|
|
14101
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
14102
|
+
type: 'object',
|
|
14103
|
+
},
|
|
13848
14104
|
device_id: {
|
|
13849
14105
|
description:
|
|
13850
14106
|
'ID of the device associated with the affected access code.',
|
|
@@ -13894,6 +14150,14 @@ export default {
|
|
|
13894
14150
|
format: 'uuid',
|
|
13895
14151
|
type: 'string',
|
|
13896
14152
|
},
|
|
14153
|
+
connected_account_custom_metadata: {
|
|
14154
|
+
additionalProperties: {
|
|
14155
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14156
|
+
},
|
|
14157
|
+
description:
|
|
14158
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
14159
|
+
type: 'object',
|
|
14160
|
+
},
|
|
13897
14161
|
connected_account_id: {
|
|
13898
14162
|
description:
|
|
13899
14163
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the affected access code.',
|
|
@@ -13905,6 +14169,14 @@ export default {
|
|
|
13905
14169
|
format: 'date-time',
|
|
13906
14170
|
type: 'string',
|
|
13907
14171
|
},
|
|
14172
|
+
device_custom_metadata: {
|
|
14173
|
+
additionalProperties: {
|
|
14174
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
14175
|
+
},
|
|
14176
|
+
description:
|
|
14177
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
14178
|
+
type: 'object',
|
|
14179
|
+
},
|
|
13908
14180
|
device_id: {
|
|
13909
14181
|
description:
|
|
13910
14182
|
'ID of the device associated with the affected access code.',
|
|
@@ -15176,6 +15448,14 @@ export default {
|
|
|
15176
15448
|
format: 'uuid',
|
|
15177
15449
|
type: 'string',
|
|
15178
15450
|
},
|
|
15451
|
+
connected_account_custom_metadata: {
|
|
15452
|
+
additionalProperties: {
|
|
15453
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15454
|
+
},
|
|
15455
|
+
description:
|
|
15456
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15457
|
+
type: 'object',
|
|
15458
|
+
},
|
|
15179
15459
|
connected_account_id: {
|
|
15180
15460
|
description:
|
|
15181
15461
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15230,6 +15510,14 @@ export default {
|
|
|
15230
15510
|
format: 'uuid',
|
|
15231
15511
|
type: 'string',
|
|
15232
15512
|
},
|
|
15513
|
+
connected_account_custom_metadata: {
|
|
15514
|
+
additionalProperties: {
|
|
15515
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15516
|
+
},
|
|
15517
|
+
description:
|
|
15518
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15519
|
+
type: 'object',
|
|
15520
|
+
},
|
|
15233
15521
|
connected_account_id: {
|
|
15234
15522
|
description:
|
|
15235
15523
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15285,6 +15573,14 @@ export default {
|
|
|
15285
15573
|
format: 'uuid',
|
|
15286
15574
|
type: 'string',
|
|
15287
15575
|
},
|
|
15576
|
+
connected_account_custom_metadata: {
|
|
15577
|
+
additionalProperties: {
|
|
15578
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15579
|
+
},
|
|
15580
|
+
description:
|
|
15581
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15582
|
+
type: 'object',
|
|
15583
|
+
},
|
|
15288
15584
|
connected_account_id: {
|
|
15289
15585
|
description:
|
|
15290
15586
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15334,6 +15630,14 @@ export default {
|
|
|
15334
15630
|
description:
|
|
15335
15631
|
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.',
|
|
15336
15632
|
properties: {
|
|
15633
|
+
connected_account_custom_metadata: {
|
|
15634
|
+
additionalProperties: {
|
|
15635
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15636
|
+
},
|
|
15637
|
+
description:
|
|
15638
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15639
|
+
type: 'object',
|
|
15640
|
+
},
|
|
15337
15641
|
connected_account_id: {
|
|
15338
15642
|
description:
|
|
15339
15643
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15381,6 +15685,14 @@ export default {
|
|
|
15381
15685
|
description:
|
|
15382
15686
|
'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.',
|
|
15383
15687
|
properties: {
|
|
15688
|
+
connected_account_custom_metadata: {
|
|
15689
|
+
additionalProperties: {
|
|
15690
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15691
|
+
},
|
|
15692
|
+
description:
|
|
15693
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15694
|
+
type: 'object',
|
|
15695
|
+
},
|
|
15384
15696
|
connected_account_id: {
|
|
15385
15697
|
description:
|
|
15386
15698
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15428,6 +15740,14 @@ export default {
|
|
|
15428
15740
|
description:
|
|
15429
15741
|
'A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.',
|
|
15430
15742
|
properties: {
|
|
15743
|
+
connected_account_custom_metadata: {
|
|
15744
|
+
additionalProperties: {
|
|
15745
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15746
|
+
},
|
|
15747
|
+
description:
|
|
15748
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15749
|
+
type: 'object',
|
|
15750
|
+
},
|
|
15431
15751
|
connected_account_id: {
|
|
15432
15752
|
description:
|
|
15433
15753
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15475,6 +15795,14 @@ export default {
|
|
|
15475
15795
|
description:
|
|
15476
15796
|
'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.',
|
|
15477
15797
|
properties: {
|
|
15798
|
+
connected_account_custom_metadata: {
|
|
15799
|
+
additionalProperties: {
|
|
15800
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
15801
|
+
},
|
|
15802
|
+
description:
|
|
15803
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
15804
|
+
type: 'object',
|
|
15805
|
+
},
|
|
15478
15806
|
connected_account_id: {
|
|
15479
15807
|
description:
|
|
15480
15808
|
'ID of the affected [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).',
|
|
@@ -15742,6 +16070,14 @@ export default {
|
|
|
15742
16070
|
format: 'uuid',
|
|
15743
16071
|
type: 'string',
|
|
15744
16072
|
},
|
|
16073
|
+
connected_account_custom_metadata: {
|
|
16074
|
+
additionalProperties: {
|
|
16075
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16076
|
+
},
|
|
16077
|
+
description:
|
|
16078
|
+
'Custom metadata of the connected account; present when connected_account_id is provided.',
|
|
16079
|
+
type: 'object',
|
|
16080
|
+
},
|
|
15745
16081
|
connected_account_id: {
|
|
15746
16082
|
description:
|
|
15747
16083
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -15837,6 +16173,14 @@ export default {
|
|
|
15837
16173
|
description:
|
|
15838
16174
|
'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.',
|
|
15839
16175
|
properties: {
|
|
16176
|
+
connected_account_custom_metadata: {
|
|
16177
|
+
additionalProperties: {
|
|
16178
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16179
|
+
},
|
|
16180
|
+
description:
|
|
16181
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16182
|
+
type: 'object',
|
|
16183
|
+
},
|
|
15840
16184
|
connected_account_id: {
|
|
15841
16185
|
description:
|
|
15842
16186
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -15848,6 +16192,14 @@ export default {
|
|
|
15848
16192
|
format: 'date-time',
|
|
15849
16193
|
type: 'string',
|
|
15850
16194
|
},
|
|
16195
|
+
device_custom_metadata: {
|
|
16196
|
+
additionalProperties: {
|
|
16197
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16198
|
+
},
|
|
16199
|
+
description:
|
|
16200
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16201
|
+
type: 'object',
|
|
16202
|
+
},
|
|
15851
16203
|
device_id: {
|
|
15852
16204
|
description: 'ID of the affected device.',
|
|
15853
16205
|
format: 'uuid',
|
|
@@ -15887,6 +16239,14 @@ export default {
|
|
|
15887
16239
|
description:
|
|
15888
16240
|
'A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.',
|
|
15889
16241
|
properties: {
|
|
16242
|
+
connected_account_custom_metadata: {
|
|
16243
|
+
additionalProperties: {
|
|
16244
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16245
|
+
},
|
|
16246
|
+
description:
|
|
16247
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16248
|
+
type: 'object',
|
|
16249
|
+
},
|
|
15890
16250
|
connected_account_id: {
|
|
15891
16251
|
description:
|
|
15892
16252
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -15898,6 +16258,14 @@ export default {
|
|
|
15898
16258
|
format: 'date-time',
|
|
15899
16259
|
type: 'string',
|
|
15900
16260
|
},
|
|
16261
|
+
device_custom_metadata: {
|
|
16262
|
+
additionalProperties: {
|
|
16263
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16264
|
+
},
|
|
16265
|
+
description:
|
|
16266
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16267
|
+
type: 'object',
|
|
16268
|
+
},
|
|
15901
16269
|
device_id: {
|
|
15902
16270
|
description: 'ID of the affected device.',
|
|
15903
16271
|
format: 'uuid',
|
|
@@ -15937,6 +16305,14 @@ export default {
|
|
|
15937
16305
|
description:
|
|
15938
16306
|
'A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).',
|
|
15939
16307
|
properties: {
|
|
16308
|
+
connected_account_custom_metadata: {
|
|
16309
|
+
additionalProperties: {
|
|
16310
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16311
|
+
},
|
|
16312
|
+
description:
|
|
16313
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16314
|
+
type: 'object',
|
|
16315
|
+
},
|
|
15940
16316
|
connected_account_id: {
|
|
15941
16317
|
description:
|
|
15942
16318
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -15948,6 +16324,14 @@ export default {
|
|
|
15948
16324
|
format: 'date-time',
|
|
15949
16325
|
type: 'string',
|
|
15950
16326
|
},
|
|
16327
|
+
device_custom_metadata: {
|
|
16328
|
+
additionalProperties: {
|
|
16329
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16330
|
+
},
|
|
16331
|
+
description:
|
|
16332
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16333
|
+
type: 'object',
|
|
16334
|
+
},
|
|
15951
16335
|
device_id: {
|
|
15952
16336
|
description: 'ID of the affected device.',
|
|
15953
16337
|
format: 'uuid',
|
|
@@ -15990,6 +16374,14 @@ export default {
|
|
|
15990
16374
|
description:
|
|
15991
16375
|
'An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.',
|
|
15992
16376
|
properties: {
|
|
16377
|
+
connected_account_custom_metadata: {
|
|
16378
|
+
additionalProperties: {
|
|
16379
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16380
|
+
},
|
|
16381
|
+
description:
|
|
16382
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16383
|
+
type: 'object',
|
|
16384
|
+
},
|
|
15993
16385
|
connected_account_id: {
|
|
15994
16386
|
description:
|
|
15995
16387
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16001,6 +16393,14 @@ export default {
|
|
|
16001
16393
|
format: 'date-time',
|
|
16002
16394
|
type: 'string',
|
|
16003
16395
|
},
|
|
16396
|
+
device_custom_metadata: {
|
|
16397
|
+
additionalProperties: {
|
|
16398
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16399
|
+
},
|
|
16400
|
+
description:
|
|
16401
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16402
|
+
type: 'object',
|
|
16403
|
+
},
|
|
16004
16404
|
device_id: {
|
|
16005
16405
|
description: 'ID of the affected device.',
|
|
16006
16406
|
format: 'uuid',
|
|
@@ -16043,6 +16443,14 @@ export default {
|
|
|
16043
16443
|
description:
|
|
16044
16444
|
'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`.',
|
|
16045
16445
|
properties: {
|
|
16446
|
+
connected_account_custom_metadata: {
|
|
16447
|
+
additionalProperties: {
|
|
16448
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16449
|
+
},
|
|
16450
|
+
description:
|
|
16451
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16452
|
+
type: 'object',
|
|
16453
|
+
},
|
|
16046
16454
|
connected_account_id: {
|
|
16047
16455
|
description:
|
|
16048
16456
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16054,6 +16462,14 @@ export default {
|
|
|
16054
16462
|
format: 'date-time',
|
|
16055
16463
|
type: 'string',
|
|
16056
16464
|
},
|
|
16465
|
+
device_custom_metadata: {
|
|
16466
|
+
additionalProperties: {
|
|
16467
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16468
|
+
},
|
|
16469
|
+
description:
|
|
16470
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16471
|
+
type: 'object',
|
|
16472
|
+
},
|
|
16057
16473
|
device_id: {
|
|
16058
16474
|
description: 'ID of the affected device.',
|
|
16059
16475
|
format: 'uuid',
|
|
@@ -16096,6 +16512,14 @@ export default {
|
|
|
16096
16512
|
description:
|
|
16097
16513
|
'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`.',
|
|
16098
16514
|
properties: {
|
|
16515
|
+
connected_account_custom_metadata: {
|
|
16516
|
+
additionalProperties: {
|
|
16517
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16518
|
+
},
|
|
16519
|
+
description:
|
|
16520
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16521
|
+
type: 'object',
|
|
16522
|
+
},
|
|
16099
16523
|
connected_account_id: {
|
|
16100
16524
|
description:
|
|
16101
16525
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16107,6 +16531,14 @@ export default {
|
|
|
16107
16531
|
format: 'date-time',
|
|
16108
16532
|
type: 'string',
|
|
16109
16533
|
},
|
|
16534
|
+
device_custom_metadata: {
|
|
16535
|
+
additionalProperties: {
|
|
16536
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16537
|
+
},
|
|
16538
|
+
description:
|
|
16539
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16540
|
+
type: 'object',
|
|
16541
|
+
},
|
|
16110
16542
|
device_id: {
|
|
16111
16543
|
description: 'ID of the affected device.',
|
|
16112
16544
|
format: 'uuid',
|
|
@@ -16157,6 +16589,14 @@ export default {
|
|
|
16157
16589
|
description:
|
|
16158
16590
|
'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`.',
|
|
16159
16591
|
properties: {
|
|
16592
|
+
connected_account_custom_metadata: {
|
|
16593
|
+
additionalProperties: {
|
|
16594
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16595
|
+
},
|
|
16596
|
+
description:
|
|
16597
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16598
|
+
type: 'object',
|
|
16599
|
+
},
|
|
16160
16600
|
connected_account_id: {
|
|
16161
16601
|
description:
|
|
16162
16602
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16168,6 +16608,14 @@ export default {
|
|
|
16168
16608
|
format: 'date-time',
|
|
16169
16609
|
type: 'string',
|
|
16170
16610
|
},
|
|
16611
|
+
device_custom_metadata: {
|
|
16612
|
+
additionalProperties: {
|
|
16613
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16614
|
+
},
|
|
16615
|
+
description:
|
|
16616
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16617
|
+
type: 'object',
|
|
16618
|
+
},
|
|
16171
16619
|
device_id: {
|
|
16172
16620
|
description: 'ID of the affected device.',
|
|
16173
16621
|
format: 'uuid',
|
|
@@ -16221,6 +16669,14 @@ export default {
|
|
|
16221
16669
|
description:
|
|
16222
16670
|
'A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.',
|
|
16223
16671
|
properties: {
|
|
16672
|
+
connected_account_custom_metadata: {
|
|
16673
|
+
additionalProperties: {
|
|
16674
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16675
|
+
},
|
|
16676
|
+
description:
|
|
16677
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16678
|
+
type: 'object',
|
|
16679
|
+
},
|
|
16224
16680
|
connected_account_id: {
|
|
16225
16681
|
description:
|
|
16226
16682
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16232,6 +16688,14 @@ export default {
|
|
|
16232
16688
|
format: 'date-time',
|
|
16233
16689
|
type: 'string',
|
|
16234
16690
|
},
|
|
16691
|
+
device_custom_metadata: {
|
|
16692
|
+
additionalProperties: {
|
|
16693
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16694
|
+
},
|
|
16695
|
+
description:
|
|
16696
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16697
|
+
type: 'object',
|
|
16698
|
+
},
|
|
16235
16699
|
device_id: {
|
|
16236
16700
|
description: 'ID of the affected device.',
|
|
16237
16701
|
format: 'uuid',
|
|
@@ -16279,6 +16743,14 @@ export default {
|
|
|
16279
16743
|
minimum: 0,
|
|
16280
16744
|
type: 'number',
|
|
16281
16745
|
},
|
|
16746
|
+
connected_account_custom_metadata: {
|
|
16747
|
+
additionalProperties: {
|
|
16748
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16749
|
+
},
|
|
16750
|
+
description:
|
|
16751
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16752
|
+
type: 'object',
|
|
16753
|
+
},
|
|
16282
16754
|
connected_account_id: {
|
|
16283
16755
|
description:
|
|
16284
16756
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16290,6 +16762,14 @@ export default {
|
|
|
16290
16762
|
format: 'date-time',
|
|
16291
16763
|
type: 'string',
|
|
16292
16764
|
},
|
|
16765
|
+
device_custom_metadata: {
|
|
16766
|
+
additionalProperties: {
|
|
16767
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16768
|
+
},
|
|
16769
|
+
description:
|
|
16770
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16771
|
+
type: 'object',
|
|
16772
|
+
},
|
|
16293
16773
|
device_id: {
|
|
16294
16774
|
description: 'ID of the affected device.',
|
|
16295
16775
|
format: 'uuid',
|
|
@@ -16344,6 +16824,14 @@ export default {
|
|
|
16344
16824
|
enum: ['critical', 'low', 'good', 'full'],
|
|
16345
16825
|
type: 'string',
|
|
16346
16826
|
},
|
|
16827
|
+
connected_account_custom_metadata: {
|
|
16828
|
+
additionalProperties: {
|
|
16829
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16830
|
+
},
|
|
16831
|
+
description:
|
|
16832
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16833
|
+
type: 'object',
|
|
16834
|
+
},
|
|
16347
16835
|
connected_account_id: {
|
|
16348
16836
|
description:
|
|
16349
16837
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16355,6 +16843,14 @@ export default {
|
|
|
16355
16843
|
format: 'date-time',
|
|
16356
16844
|
type: 'string',
|
|
16357
16845
|
},
|
|
16846
|
+
device_custom_metadata: {
|
|
16847
|
+
additionalProperties: {
|
|
16848
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16849
|
+
},
|
|
16850
|
+
description:
|
|
16851
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16852
|
+
type: 'object',
|
|
16853
|
+
},
|
|
16358
16854
|
device_id: {
|
|
16359
16855
|
description: 'ID of the affected device.',
|
|
16360
16856
|
format: 'uuid',
|
|
@@ -16399,6 +16895,14 @@ export default {
|
|
|
16399
16895
|
description:
|
|
16400
16896
|
'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).',
|
|
16401
16897
|
properties: {
|
|
16898
|
+
connected_account_custom_metadata: {
|
|
16899
|
+
additionalProperties: {
|
|
16900
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16901
|
+
},
|
|
16902
|
+
description:
|
|
16903
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16904
|
+
type: 'object',
|
|
16905
|
+
},
|
|
16402
16906
|
connected_account_id: {
|
|
16403
16907
|
description:
|
|
16404
16908
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16410,6 +16914,14 @@ export default {
|
|
|
16410
16914
|
format: 'date-time',
|
|
16411
16915
|
type: 'string',
|
|
16412
16916
|
},
|
|
16917
|
+
device_custom_metadata: {
|
|
16918
|
+
additionalProperties: {
|
|
16919
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16920
|
+
},
|
|
16921
|
+
description:
|
|
16922
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16923
|
+
type: 'object',
|
|
16924
|
+
},
|
|
16413
16925
|
device_id: {
|
|
16414
16926
|
description: 'ID of the affected device.',
|
|
16415
16927
|
format: 'uuid',
|
|
@@ -16449,6 +16961,14 @@ export default {
|
|
|
16449
16961
|
description:
|
|
16450
16962
|
'A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.',
|
|
16451
16963
|
properties: {
|
|
16964
|
+
connected_account_custom_metadata: {
|
|
16965
|
+
additionalProperties: {
|
|
16966
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16967
|
+
},
|
|
16968
|
+
description:
|
|
16969
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
16970
|
+
type: 'object',
|
|
16971
|
+
},
|
|
16452
16972
|
connected_account_id: {
|
|
16453
16973
|
description:
|
|
16454
16974
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16460,6 +16980,14 @@ export default {
|
|
|
16460
16980
|
format: 'date-time',
|
|
16461
16981
|
type: 'string',
|
|
16462
16982
|
},
|
|
16983
|
+
device_custom_metadata: {
|
|
16984
|
+
additionalProperties: {
|
|
16985
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
16986
|
+
},
|
|
16987
|
+
description:
|
|
16988
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
16989
|
+
type: 'object',
|
|
16990
|
+
},
|
|
16463
16991
|
device_id: {
|
|
16464
16992
|
description: 'ID of the affected device.',
|
|
16465
16993
|
format: 'uuid',
|
|
@@ -16499,6 +17027,14 @@ export default {
|
|
|
16499
17027
|
description:
|
|
16500
17028
|
'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.',
|
|
16501
17029
|
properties: {
|
|
17030
|
+
connected_account_custom_metadata: {
|
|
17031
|
+
additionalProperties: {
|
|
17032
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17033
|
+
},
|
|
17034
|
+
description:
|
|
17035
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17036
|
+
type: 'object',
|
|
17037
|
+
},
|
|
16502
17038
|
connected_account_id: {
|
|
16503
17039
|
description:
|
|
16504
17040
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16510,6 +17046,14 @@ export default {
|
|
|
16510
17046
|
format: 'date-time',
|
|
16511
17047
|
type: 'string',
|
|
16512
17048
|
},
|
|
17049
|
+
device_custom_metadata: {
|
|
17050
|
+
additionalProperties: {
|
|
17051
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17052
|
+
},
|
|
17053
|
+
description:
|
|
17054
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17055
|
+
type: 'object',
|
|
17056
|
+
},
|
|
16513
17057
|
device_id: {
|
|
16514
17058
|
description: 'ID of the affected device.',
|
|
16515
17059
|
format: 'uuid',
|
|
@@ -16552,6 +17096,14 @@ export default {
|
|
|
16552
17096
|
description:
|
|
16553
17097
|
'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.',
|
|
16554
17098
|
properties: {
|
|
17099
|
+
connected_account_custom_metadata: {
|
|
17100
|
+
additionalProperties: {
|
|
17101
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17102
|
+
},
|
|
17103
|
+
description:
|
|
17104
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17105
|
+
type: 'object',
|
|
17106
|
+
},
|
|
16555
17107
|
connected_account_id: {
|
|
16556
17108
|
description:
|
|
16557
17109
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16563,6 +17115,14 @@ export default {
|
|
|
16563
17115
|
format: 'date-time',
|
|
16564
17116
|
type: 'string',
|
|
16565
17117
|
},
|
|
17118
|
+
device_custom_metadata: {
|
|
17119
|
+
additionalProperties: {
|
|
17120
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17121
|
+
},
|
|
17122
|
+
description:
|
|
17123
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17124
|
+
type: 'object',
|
|
17125
|
+
},
|
|
16566
17126
|
device_id: {
|
|
16567
17127
|
description: 'ID of the affected device.',
|
|
16568
17128
|
format: 'uuid',
|
|
@@ -16605,6 +17165,14 @@ export default {
|
|
|
16605
17165
|
description:
|
|
16606
17166
|
'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.',
|
|
16607
17167
|
properties: {
|
|
17168
|
+
connected_account_custom_metadata: {
|
|
17169
|
+
additionalProperties: {
|
|
17170
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17171
|
+
},
|
|
17172
|
+
description:
|
|
17173
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17174
|
+
type: 'object',
|
|
17175
|
+
},
|
|
16608
17176
|
connected_account_id: {
|
|
16609
17177
|
description:
|
|
16610
17178
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16616,6 +17184,14 @@ export default {
|
|
|
16616
17184
|
format: 'date-time',
|
|
16617
17185
|
type: 'string',
|
|
16618
17186
|
},
|
|
17187
|
+
device_custom_metadata: {
|
|
17188
|
+
additionalProperties: {
|
|
17189
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17190
|
+
},
|
|
17191
|
+
description:
|
|
17192
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17193
|
+
type: 'object',
|
|
17194
|
+
},
|
|
16619
17195
|
device_id: {
|
|
16620
17196
|
description: 'ID of the affected device.',
|
|
16621
17197
|
format: 'uuid',
|
|
@@ -16658,6 +17234,14 @@ export default {
|
|
|
16658
17234
|
description:
|
|
16659
17235
|
'A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.',
|
|
16660
17236
|
properties: {
|
|
17237
|
+
connected_account_custom_metadata: {
|
|
17238
|
+
additionalProperties: {
|
|
17239
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17240
|
+
},
|
|
17241
|
+
description:
|
|
17242
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17243
|
+
type: 'object',
|
|
17244
|
+
},
|
|
16661
17245
|
connected_account_id: {
|
|
16662
17246
|
description:
|
|
16663
17247
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16669,6 +17253,14 @@ export default {
|
|
|
16669
17253
|
format: 'date-time',
|
|
16670
17254
|
type: 'string',
|
|
16671
17255
|
},
|
|
17256
|
+
device_custom_metadata: {
|
|
17257
|
+
additionalProperties: {
|
|
17258
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17259
|
+
},
|
|
17260
|
+
description:
|
|
17261
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17262
|
+
type: 'object',
|
|
17263
|
+
},
|
|
16672
17264
|
device_id: {
|
|
16673
17265
|
description: 'ID of the affected device.',
|
|
16674
17266
|
format: 'uuid',
|
|
@@ -16711,6 +17303,14 @@ export default {
|
|
|
16711
17303
|
description:
|
|
16712
17304
|
'Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.',
|
|
16713
17305
|
properties: {
|
|
17306
|
+
connected_account_custom_metadata: {
|
|
17307
|
+
additionalProperties: {
|
|
17308
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17309
|
+
},
|
|
17310
|
+
description:
|
|
17311
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17312
|
+
type: 'object',
|
|
17313
|
+
},
|
|
16714
17314
|
connected_account_id: {
|
|
16715
17315
|
description:
|
|
16716
17316
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16722,6 +17322,14 @@ export default {
|
|
|
16722
17322
|
format: 'date-time',
|
|
16723
17323
|
type: 'string',
|
|
16724
17324
|
},
|
|
17325
|
+
device_custom_metadata: {
|
|
17326
|
+
additionalProperties: {
|
|
17327
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17328
|
+
},
|
|
17329
|
+
description:
|
|
17330
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17331
|
+
type: 'object',
|
|
17332
|
+
},
|
|
16725
17333
|
device_id: {
|
|
16726
17334
|
description: 'ID of the affected device.',
|
|
16727
17335
|
format: 'uuid',
|
|
@@ -16764,6 +17372,14 @@ export default {
|
|
|
16764
17372
|
description:
|
|
16765
17373
|
'Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.',
|
|
16766
17374
|
properties: {
|
|
17375
|
+
connected_account_custom_metadata: {
|
|
17376
|
+
additionalProperties: {
|
|
17377
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17378
|
+
},
|
|
17379
|
+
description:
|
|
17380
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17381
|
+
type: 'object',
|
|
17382
|
+
},
|
|
16767
17383
|
connected_account_id: {
|
|
16768
17384
|
description:
|
|
16769
17385
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16775,6 +17391,14 @@ export default {
|
|
|
16775
17391
|
format: 'date-time',
|
|
16776
17392
|
type: 'string',
|
|
16777
17393
|
},
|
|
17394
|
+
device_custom_metadata: {
|
|
17395
|
+
additionalProperties: {
|
|
17396
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17397
|
+
},
|
|
17398
|
+
description:
|
|
17399
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17400
|
+
type: 'object',
|
|
17401
|
+
},
|
|
16778
17402
|
device_id: {
|
|
16779
17403
|
description: 'ID of the affected device.',
|
|
16780
17404
|
format: 'uuid',
|
|
@@ -16817,6 +17441,14 @@ export default {
|
|
|
16817
17441
|
description:
|
|
16818
17442
|
'A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
|
|
16819
17443
|
properties: {
|
|
17444
|
+
connected_account_custom_metadata: {
|
|
17445
|
+
additionalProperties: {
|
|
17446
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17447
|
+
},
|
|
17448
|
+
description:
|
|
17449
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17450
|
+
type: 'object',
|
|
17451
|
+
},
|
|
16820
17452
|
connected_account_id: {
|
|
16821
17453
|
description:
|
|
16822
17454
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16828,6 +17460,14 @@ export default {
|
|
|
16828
17460
|
format: 'date-time',
|
|
16829
17461
|
type: 'string',
|
|
16830
17462
|
},
|
|
17463
|
+
device_custom_metadata: {
|
|
17464
|
+
additionalProperties: {
|
|
17465
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17466
|
+
},
|
|
17467
|
+
description:
|
|
17468
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17469
|
+
type: 'object',
|
|
17470
|
+
},
|
|
16831
17471
|
device_id: {
|
|
16832
17472
|
description: 'ID of the affected device.',
|
|
16833
17473
|
format: 'uuid',
|
|
@@ -16870,6 +17510,14 @@ export default {
|
|
|
16870
17510
|
description:
|
|
16871
17511
|
'A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.',
|
|
16872
17512
|
properties: {
|
|
17513
|
+
connected_account_custom_metadata: {
|
|
17514
|
+
additionalProperties: {
|
|
17515
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17516
|
+
},
|
|
17517
|
+
description:
|
|
17518
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17519
|
+
type: 'object',
|
|
17520
|
+
},
|
|
16873
17521
|
connected_account_id: {
|
|
16874
17522
|
description:
|
|
16875
17523
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16881,6 +17529,14 @@ export default {
|
|
|
16881
17529
|
format: 'date-time',
|
|
16882
17530
|
type: 'string',
|
|
16883
17531
|
},
|
|
17532
|
+
device_custom_metadata: {
|
|
17533
|
+
additionalProperties: {
|
|
17534
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17535
|
+
},
|
|
17536
|
+
description:
|
|
17537
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17538
|
+
type: 'object',
|
|
17539
|
+
},
|
|
16884
17540
|
device_id: {
|
|
16885
17541
|
description: 'ID of the affected device.',
|
|
16886
17542
|
format: 'uuid',
|
|
@@ -16923,6 +17579,14 @@ export default {
|
|
|
16923
17579
|
description:
|
|
16924
17580
|
'An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
16925
17581
|
properties: {
|
|
17582
|
+
connected_account_custom_metadata: {
|
|
17583
|
+
additionalProperties: {
|
|
17584
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17585
|
+
},
|
|
17586
|
+
description:
|
|
17587
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17588
|
+
type: 'object',
|
|
17589
|
+
},
|
|
16926
17590
|
connected_account_id: {
|
|
16927
17591
|
description:
|
|
16928
17592
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16934,6 +17598,14 @@ export default {
|
|
|
16934
17598
|
format: 'date-time',
|
|
16935
17599
|
type: 'string',
|
|
16936
17600
|
},
|
|
17601
|
+
device_custom_metadata: {
|
|
17602
|
+
additionalProperties: {
|
|
17603
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17604
|
+
},
|
|
17605
|
+
description:
|
|
17606
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17607
|
+
type: 'object',
|
|
17608
|
+
},
|
|
16937
17609
|
device_id: {
|
|
16938
17610
|
description: 'ID of the affected device.',
|
|
16939
17611
|
format: 'uuid',
|
|
@@ -16976,6 +17648,14 @@ export default {
|
|
|
16976
17648
|
description:
|
|
16977
17649
|
'An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).',
|
|
16978
17650
|
properties: {
|
|
17651
|
+
connected_account_custom_metadata: {
|
|
17652
|
+
additionalProperties: {
|
|
17653
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17654
|
+
},
|
|
17655
|
+
description:
|
|
17656
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17657
|
+
type: 'object',
|
|
17658
|
+
},
|
|
16979
17659
|
connected_account_id: {
|
|
16980
17660
|
description:
|
|
16981
17661
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -16987,6 +17667,14 @@ export default {
|
|
|
16987
17667
|
format: 'date-time',
|
|
16988
17668
|
type: 'string',
|
|
16989
17669
|
},
|
|
17670
|
+
device_custom_metadata: {
|
|
17671
|
+
additionalProperties: {
|
|
17672
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17673
|
+
},
|
|
17674
|
+
description:
|
|
17675
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17676
|
+
type: 'object',
|
|
17677
|
+
},
|
|
16990
17678
|
device_id: {
|
|
16991
17679
|
description: 'ID of the affected device.',
|
|
16992
17680
|
format: 'uuid',
|
|
@@ -17029,6 +17717,14 @@ export default {
|
|
|
17029
17717
|
description:
|
|
17030
17718
|
'Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected.',
|
|
17031
17719
|
properties: {
|
|
17720
|
+
connected_account_custom_metadata: {
|
|
17721
|
+
additionalProperties: {
|
|
17722
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17723
|
+
},
|
|
17724
|
+
description:
|
|
17725
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17726
|
+
type: 'object',
|
|
17727
|
+
},
|
|
17032
17728
|
connected_account_id: {
|
|
17033
17729
|
description:
|
|
17034
17730
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17040,6 +17736,14 @@ export default {
|
|
|
17040
17736
|
format: 'date-time',
|
|
17041
17737
|
type: 'string',
|
|
17042
17738
|
},
|
|
17739
|
+
device_custom_metadata: {
|
|
17740
|
+
additionalProperties: {
|
|
17741
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17742
|
+
},
|
|
17743
|
+
description:
|
|
17744
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17745
|
+
type: 'object',
|
|
17746
|
+
},
|
|
17043
17747
|
device_id: {
|
|
17044
17748
|
description: 'ID of the affected device.',
|
|
17045
17749
|
format: 'uuid',
|
|
@@ -17124,6 +17828,14 @@ export default {
|
|
|
17124
17828
|
format: 'uuid',
|
|
17125
17829
|
type: 'string',
|
|
17126
17830
|
},
|
|
17831
|
+
connected_account_custom_metadata: {
|
|
17832
|
+
additionalProperties: {
|
|
17833
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17834
|
+
},
|
|
17835
|
+
description:
|
|
17836
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17837
|
+
type: 'object',
|
|
17838
|
+
},
|
|
17127
17839
|
connected_account_id: {
|
|
17128
17840
|
description:
|
|
17129
17841
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17135,6 +17847,14 @@ export default {
|
|
|
17135
17847
|
format: 'date-time',
|
|
17136
17848
|
type: 'string',
|
|
17137
17849
|
},
|
|
17850
|
+
device_custom_metadata: {
|
|
17851
|
+
additionalProperties: {
|
|
17852
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17853
|
+
},
|
|
17854
|
+
description:
|
|
17855
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17856
|
+
type: 'object',
|
|
17857
|
+
},
|
|
17138
17858
|
device_id: {
|
|
17139
17859
|
description: 'ID of the affected device.',
|
|
17140
17860
|
format: 'uuid',
|
|
@@ -17193,6 +17913,14 @@ export default {
|
|
|
17193
17913
|
format: 'uuid',
|
|
17194
17914
|
type: 'string',
|
|
17195
17915
|
},
|
|
17916
|
+
connected_account_custom_metadata: {
|
|
17917
|
+
additionalProperties: {
|
|
17918
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17919
|
+
},
|
|
17920
|
+
description:
|
|
17921
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
17922
|
+
type: 'object',
|
|
17923
|
+
},
|
|
17196
17924
|
connected_account_id: {
|
|
17197
17925
|
description:
|
|
17198
17926
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17204,6 +17932,14 @@ export default {
|
|
|
17204
17932
|
format: 'date-time',
|
|
17205
17933
|
type: 'string',
|
|
17206
17934
|
},
|
|
17935
|
+
device_custom_metadata: {
|
|
17936
|
+
additionalProperties: {
|
|
17937
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17938
|
+
},
|
|
17939
|
+
description:
|
|
17940
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
17941
|
+
type: 'object',
|
|
17942
|
+
},
|
|
17207
17943
|
device_id: {
|
|
17208
17944
|
description: 'ID of the affected device.',
|
|
17209
17945
|
format: 'uuid',
|
|
@@ -17256,6 +17992,14 @@ export default {
|
|
|
17256
17992
|
format: 'uuid',
|
|
17257
17993
|
type: 'string',
|
|
17258
17994
|
},
|
|
17995
|
+
connected_account_custom_metadata: {
|
|
17996
|
+
additionalProperties: {
|
|
17997
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
17998
|
+
},
|
|
17999
|
+
description:
|
|
18000
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18001
|
+
type: 'object',
|
|
18002
|
+
},
|
|
17259
18003
|
connected_account_id: {
|
|
17260
18004
|
description:
|
|
17261
18005
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17267,6 +18011,14 @@ export default {
|
|
|
17267
18011
|
format: 'date-time',
|
|
17268
18012
|
type: 'string',
|
|
17269
18013
|
},
|
|
18014
|
+
device_custom_metadata: {
|
|
18015
|
+
additionalProperties: {
|
|
18016
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18017
|
+
},
|
|
18018
|
+
description:
|
|
18019
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18020
|
+
type: 'object',
|
|
18021
|
+
},
|
|
17270
18022
|
device_id: {
|
|
17271
18023
|
description: 'ID of the affected device.',
|
|
17272
18024
|
format: 'uuid',
|
|
@@ -17310,6 +18062,14 @@ export default {
|
|
|
17310
18062
|
description: 'Key of the climate preset that was activated.',
|
|
17311
18063
|
type: 'string',
|
|
17312
18064
|
},
|
|
18065
|
+
connected_account_custom_metadata: {
|
|
18066
|
+
additionalProperties: {
|
|
18067
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18068
|
+
},
|
|
18069
|
+
description:
|
|
18070
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18071
|
+
type: 'object',
|
|
18072
|
+
},
|
|
17313
18073
|
connected_account_id: {
|
|
17314
18074
|
description:
|
|
17315
18075
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17321,6 +18081,14 @@ export default {
|
|
|
17321
18081
|
format: 'date-time',
|
|
17322
18082
|
type: 'string',
|
|
17323
18083
|
},
|
|
18084
|
+
device_custom_metadata: {
|
|
18085
|
+
additionalProperties: {
|
|
18086
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18087
|
+
},
|
|
18088
|
+
description:
|
|
18089
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18090
|
+
type: 'object',
|
|
18091
|
+
},
|
|
17324
18092
|
device_id: {
|
|
17325
18093
|
description: 'ID of the affected device.',
|
|
17326
18094
|
format: 'uuid',
|
|
@@ -17378,6 +18146,14 @@ export default {
|
|
|
17378
18146
|
description:
|
|
17379
18147
|
'A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.',
|
|
17380
18148
|
properties: {
|
|
18149
|
+
connected_account_custom_metadata: {
|
|
18150
|
+
additionalProperties: {
|
|
18151
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18152
|
+
},
|
|
18153
|
+
description:
|
|
18154
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18155
|
+
type: 'object',
|
|
18156
|
+
},
|
|
17381
18157
|
connected_account_id: {
|
|
17382
18158
|
description:
|
|
17383
18159
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17401,6 +18177,14 @@ export default {
|
|
|
17401
18177
|
format: 'date-time',
|
|
17402
18178
|
type: 'string',
|
|
17403
18179
|
},
|
|
18180
|
+
device_custom_metadata: {
|
|
18181
|
+
additionalProperties: {
|
|
18182
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18183
|
+
},
|
|
18184
|
+
description:
|
|
18185
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18186
|
+
type: 'object',
|
|
18187
|
+
},
|
|
17404
18188
|
device_id: {
|
|
17405
18189
|
description: 'ID of the affected device.',
|
|
17406
18190
|
format: 'uuid',
|
|
@@ -17474,6 +18258,14 @@ export default {
|
|
|
17474
18258
|
description:
|
|
17475
18259
|
"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).",
|
|
17476
18260
|
properties: {
|
|
18261
|
+
connected_account_custom_metadata: {
|
|
18262
|
+
additionalProperties: {
|
|
18263
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18264
|
+
},
|
|
18265
|
+
description:
|
|
18266
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18267
|
+
type: 'object',
|
|
18268
|
+
},
|
|
17477
18269
|
connected_account_id: {
|
|
17478
18270
|
description:
|
|
17479
18271
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17485,6 +18277,14 @@ export default {
|
|
|
17485
18277
|
format: 'date-time',
|
|
17486
18278
|
type: 'string',
|
|
17487
18279
|
},
|
|
18280
|
+
device_custom_metadata: {
|
|
18281
|
+
additionalProperties: {
|
|
18282
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18283
|
+
},
|
|
18284
|
+
description:
|
|
18285
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18286
|
+
type: 'object',
|
|
18287
|
+
},
|
|
17488
18288
|
device_id: {
|
|
17489
18289
|
description: 'ID of the affected device.',
|
|
17490
18290
|
format: 'uuid',
|
|
@@ -17573,6 +18373,14 @@ export default {
|
|
|
17573
18373
|
description:
|
|
17574
18374
|
"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).",
|
|
17575
18375
|
properties: {
|
|
18376
|
+
connected_account_custom_metadata: {
|
|
18377
|
+
additionalProperties: {
|
|
18378
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18379
|
+
},
|
|
18380
|
+
description:
|
|
18381
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18382
|
+
type: 'object',
|
|
18383
|
+
},
|
|
17576
18384
|
connected_account_id: {
|
|
17577
18385
|
description:
|
|
17578
18386
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17584,6 +18392,14 @@ export default {
|
|
|
17584
18392
|
format: 'date-time',
|
|
17585
18393
|
type: 'string',
|
|
17586
18394
|
},
|
|
18395
|
+
device_custom_metadata: {
|
|
18396
|
+
additionalProperties: {
|
|
18397
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18398
|
+
},
|
|
18399
|
+
description:
|
|
18400
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18401
|
+
type: 'object',
|
|
18402
|
+
},
|
|
17587
18403
|
device_id: {
|
|
17588
18404
|
description: 'ID of the affected device.',
|
|
17589
18405
|
format: 'uuid',
|
|
@@ -17672,6 +18488,14 @@ export default {
|
|
|
17672
18488
|
description:
|
|
17673
18489
|
"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).",
|
|
17674
18490
|
properties: {
|
|
18491
|
+
connected_account_custom_metadata: {
|
|
18492
|
+
additionalProperties: {
|
|
18493
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18494
|
+
},
|
|
18495
|
+
description:
|
|
18496
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18497
|
+
type: 'object',
|
|
18498
|
+
},
|
|
17675
18499
|
connected_account_id: {
|
|
17676
18500
|
description:
|
|
17677
18501
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17695,6 +18519,14 @@ export default {
|
|
|
17695
18519
|
format: 'float',
|
|
17696
18520
|
type: 'number',
|
|
17697
18521
|
},
|
|
18522
|
+
device_custom_metadata: {
|
|
18523
|
+
additionalProperties: {
|
|
18524
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18525
|
+
},
|
|
18526
|
+
description:
|
|
18527
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18528
|
+
type: 'object',
|
|
18529
|
+
},
|
|
17698
18530
|
device_id: {
|
|
17699
18531
|
description: 'ID of the affected device.',
|
|
17700
18532
|
format: 'uuid',
|
|
@@ -17751,6 +18583,14 @@ export default {
|
|
|
17751
18583
|
description:
|
|
17752
18584
|
"A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) reported temperature changed by at least 1 °C.",
|
|
17753
18585
|
properties: {
|
|
18586
|
+
connected_account_custom_metadata: {
|
|
18587
|
+
additionalProperties: {
|
|
18588
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18589
|
+
},
|
|
18590
|
+
description:
|
|
18591
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18592
|
+
type: 'object',
|
|
18593
|
+
},
|
|
17754
18594
|
connected_account_id: {
|
|
17755
18595
|
description:
|
|
17756
18596
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17762,6 +18602,14 @@ export default {
|
|
|
17762
18602
|
format: 'date-time',
|
|
17763
18603
|
type: 'string',
|
|
17764
18604
|
},
|
|
18605
|
+
device_custom_metadata: {
|
|
18606
|
+
additionalProperties: {
|
|
18607
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18608
|
+
},
|
|
18609
|
+
description:
|
|
18610
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18611
|
+
type: 'object',
|
|
18612
|
+
},
|
|
17765
18613
|
device_id: {
|
|
17766
18614
|
description: 'ID of the affected device.',
|
|
17767
18615
|
format: 'uuid',
|
|
@@ -17818,6 +18666,14 @@ export default {
|
|
|
17818
18666
|
description:
|
|
17819
18667
|
'The name of a [device](https://docs.seam.co/latest/core-concepts/devices) was changed.',
|
|
17820
18668
|
properties: {
|
|
18669
|
+
connected_account_custom_metadata: {
|
|
18670
|
+
additionalProperties: {
|
|
18671
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18672
|
+
},
|
|
18673
|
+
description:
|
|
18674
|
+
'Custom metadata of the connected account, present when connected_account_id is provided.',
|
|
18675
|
+
type: 'object',
|
|
18676
|
+
},
|
|
17821
18677
|
connected_account_id: {
|
|
17822
18678
|
description:
|
|
17823
18679
|
'ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) associated with the event.',
|
|
@@ -17829,6 +18685,14 @@ export default {
|
|
|
17829
18685
|
format: 'date-time',
|
|
17830
18686
|
type: 'string',
|
|
17831
18687
|
},
|
|
18688
|
+
device_custom_metadata: {
|
|
18689
|
+
additionalProperties: {
|
|
18690
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18691
|
+
},
|
|
18692
|
+
description:
|
|
18693
|
+
'Custom metadata of the device, present when device_id is provided.',
|
|
18694
|
+
type: 'object',
|
|
18695
|
+
},
|
|
17832
18696
|
device_id: {
|
|
17833
18697
|
description: 'ID of the affected device.',
|
|
17834
18698
|
format: 'uuid',
|
|
@@ -17923,6 +18787,14 @@ export default {
|
|
|
17923
18787
|
format: 'date-time',
|
|
17924
18788
|
type: 'string',
|
|
17925
18789
|
},
|
|
18790
|
+
device_custom_metadata: {
|
|
18791
|
+
additionalProperties: {
|
|
18792
|
+
oneOf: [{ type: 'string' }, { type: 'boolean' }],
|
|
18793
|
+
},
|
|
18794
|
+
description:
|
|
18795
|
+
'Custom metadata of the device; present when device_id is provided.',
|
|
18796
|
+
type: 'object',
|
|
18797
|
+
},
|
|
17926
18798
|
device_id: {
|
|
17927
18799
|
description: 'ID of the affected phone device.',
|
|
17928
18800
|
format: 'uuid',
|
|
@@ -23766,6 +24638,12 @@ export default {
|
|
|
23766
24638
|
description:
|
|
23767
24639
|
'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.',
|
|
23768
24640
|
properties: {
|
|
24641
|
+
acs_user_ids: {
|
|
24642
|
+
description:
|
|
24643
|
+
'Array of access system user IDs associated with the user identity.',
|
|
24644
|
+
items: { format: 'uuid', type: 'string' },
|
|
24645
|
+
type: 'array',
|
|
24646
|
+
},
|
|
23769
24647
|
created_at: {
|
|
23770
24648
|
description:
|
|
23771
24649
|
'Date and time at which the user identity was created.',
|
|
@@ -23930,6 +24808,7 @@ export default {
|
|
|
23930
24808
|
'workspace_id',
|
|
23931
24809
|
'errors',
|
|
23932
24810
|
'warnings',
|
|
24811
|
+
'acs_user_ids',
|
|
23933
24812
|
],
|
|
23934
24813
|
type: 'object',
|
|
23935
24814
|
'x-route-path': '/user_identities',
|
|
@@ -31228,6 +32107,16 @@ export default {
|
|
|
31228
32107
|
type: 'string',
|
|
31229
32108
|
},
|
|
31230
32109
|
},
|
|
32110
|
+
{
|
|
32111
|
+
in: 'query',
|
|
32112
|
+
name: 'acs_entrance_ids',
|
|
32113
|
+
schema: {
|
|
32114
|
+
description:
|
|
32115
|
+
'IDs of the entrances for which you want to retrieve all entrances.',
|
|
32116
|
+
items: { format: 'uuid', type: 'string' },
|
|
32117
|
+
type: 'array',
|
|
32118
|
+
},
|
|
32119
|
+
},
|
|
31231
32120
|
],
|
|
31232
32121
|
responses: {
|
|
31233
32122
|
200: {
|
|
@@ -31292,6 +32181,12 @@ export default {
|
|
|
31292
32181
|
format: 'uuid',
|
|
31293
32182
|
type: 'string',
|
|
31294
32183
|
},
|
|
32184
|
+
acs_entrance_ids: {
|
|
32185
|
+
description:
|
|
32186
|
+
'IDs of the entrances for which you want to retrieve all entrances.',
|
|
32187
|
+
items: { format: 'uuid', type: 'string' },
|
|
32188
|
+
type: 'array',
|
|
32189
|
+
},
|
|
31295
32190
|
acs_system_id: {
|
|
31296
32191
|
description:
|
|
31297
32192
|
'ID of the access system for which you want to retrieve all entrances.',
|
|
@@ -38633,6 +39528,59 @@ export default {
|
|
|
38633
39528
|
'x-title': 'Simulate Device Connection',
|
|
38634
39529
|
},
|
|
38635
39530
|
},
|
|
39531
|
+
'/devices/simulate/connect_to_hub': {
|
|
39532
|
+
post: {
|
|
39533
|
+
description:
|
|
39534
|
+
'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.',
|
|
39535
|
+
operationId: 'devicesSimulateConnectToHubPost',
|
|
39536
|
+
requestBody: {
|
|
39537
|
+
content: {
|
|
39538
|
+
'application/json': {
|
|
39539
|
+
schema: {
|
|
39540
|
+
properties: {
|
|
39541
|
+
device_id: {
|
|
39542
|
+
description:
|
|
39543
|
+
'ID of the device whose hub you want to reconnect.',
|
|
39544
|
+
format: 'uuid',
|
|
39545
|
+
type: 'string',
|
|
39546
|
+
},
|
|
39547
|
+
},
|
|
39548
|
+
required: ['device_id'],
|
|
39549
|
+
type: 'object',
|
|
39550
|
+
},
|
|
39551
|
+
},
|
|
39552
|
+
},
|
|
39553
|
+
},
|
|
39554
|
+
responses: {
|
|
39555
|
+
200: {
|
|
39556
|
+
content: {
|
|
39557
|
+
'application/json': {
|
|
39558
|
+
schema: {
|
|
39559
|
+
properties: { ok: { type: 'boolean' } },
|
|
39560
|
+
required: ['ok'],
|
|
39561
|
+
type: 'object',
|
|
39562
|
+
},
|
|
39563
|
+
},
|
|
39564
|
+
},
|
|
39565
|
+
description: 'OK',
|
|
39566
|
+
},
|
|
39567
|
+
400: { description: 'Bad Request' },
|
|
39568
|
+
401: { description: 'Unauthorized' },
|
|
39569
|
+
},
|
|
39570
|
+
security: [
|
|
39571
|
+
{ api_key: [] },
|
|
39572
|
+
{ pat_with_workspace: [] },
|
|
39573
|
+
{ console_session_with_workspace: [] },
|
|
39574
|
+
{ client_session_with_customer: [] },
|
|
39575
|
+
],
|
|
39576
|
+
summary: '/devices/simulate/connect_to_hub',
|
|
39577
|
+
tags: ['/devices'],
|
|
39578
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
39579
|
+
'x-fern-sdk-method-name': 'connect_to_hub',
|
|
39580
|
+
'x-response-key': null,
|
|
39581
|
+
'x-title': 'Simulate Hub Connection',
|
|
39582
|
+
},
|
|
39583
|
+
},
|
|
38636
39584
|
'/devices/simulate/disconnect': {
|
|
38637
39585
|
post: {
|
|
38638
39586
|
description:
|
|
@@ -38686,6 +39634,59 @@ export default {
|
|
|
38686
39634
|
'x-title': 'Simulate Device Disconnection',
|
|
38687
39635
|
},
|
|
38688
39636
|
},
|
|
39637
|
+
'/devices/simulate/disconnect_from_hub': {
|
|
39638
|
+
post: {
|
|
39639
|
+
description:
|
|
39640
|
+
'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.',
|
|
39641
|
+
operationId: 'devicesSimulateDisconnectFromHubPost',
|
|
39642
|
+
requestBody: {
|
|
39643
|
+
content: {
|
|
39644
|
+
'application/json': {
|
|
39645
|
+
schema: {
|
|
39646
|
+
properties: {
|
|
39647
|
+
device_id: {
|
|
39648
|
+
description:
|
|
39649
|
+
'ID of the device whose hub you want to disconnect.',
|
|
39650
|
+
format: 'uuid',
|
|
39651
|
+
type: 'string',
|
|
39652
|
+
},
|
|
39653
|
+
},
|
|
39654
|
+
required: ['device_id'],
|
|
39655
|
+
type: 'object',
|
|
39656
|
+
},
|
|
39657
|
+
},
|
|
39658
|
+
},
|
|
39659
|
+
},
|
|
39660
|
+
responses: {
|
|
39661
|
+
200: {
|
|
39662
|
+
content: {
|
|
39663
|
+
'application/json': {
|
|
39664
|
+
schema: {
|
|
39665
|
+
properties: { ok: { type: 'boolean' } },
|
|
39666
|
+
required: ['ok'],
|
|
39667
|
+
type: 'object',
|
|
39668
|
+
},
|
|
39669
|
+
},
|
|
39670
|
+
},
|
|
39671
|
+
description: 'OK',
|
|
39672
|
+
},
|
|
39673
|
+
400: { description: 'Bad Request' },
|
|
39674
|
+
401: { description: 'Unauthorized' },
|
|
39675
|
+
},
|
|
39676
|
+
security: [
|
|
39677
|
+
{ api_key: [] },
|
|
39678
|
+
{ pat_with_workspace: [] },
|
|
39679
|
+
{ console_session_with_workspace: [] },
|
|
39680
|
+
{ client_session_with_customer: [] },
|
|
39681
|
+
],
|
|
39682
|
+
summary: '/devices/simulate/disconnect_from_hub',
|
|
39683
|
+
tags: ['/devices'],
|
|
39684
|
+
'x-fern-sdk-group-name': ['devices', 'simulate'],
|
|
39685
|
+
'x-fern-sdk-method-name': 'disconnect_from_hub',
|
|
39686
|
+
'x-response-key': null,
|
|
39687
|
+
'x-title': 'Simulate Hub Disconnection',
|
|
39688
|
+
},
|
|
39689
|
+
},
|
|
38689
39690
|
'/devices/simulate/remove': {
|
|
38690
39691
|
post: {
|
|
38691
39692
|
description:
|
|
@@ -46115,6 +47116,191 @@ export default {
|
|
|
46115
47116
|
'x-title': 'Get a Space',
|
|
46116
47117
|
},
|
|
46117
47118
|
},
|
|
47119
|
+
'/spaces/get_related': {
|
|
47120
|
+
get: {
|
|
47121
|
+
description: 'Gets all related resources for one or more Spaces.',
|
|
47122
|
+
operationId: 'spacesGetRelatedGet',
|
|
47123
|
+
parameters: [
|
|
47124
|
+
{
|
|
47125
|
+
in: 'query',
|
|
47126
|
+
name: 'space_ids',
|
|
47127
|
+
required: true,
|
|
47128
|
+
schema: {
|
|
47129
|
+
description:
|
|
47130
|
+
'IDs of the spaces that you want to get along with their related resources.',
|
|
47131
|
+
items: { format: 'uuid', type: 'string' },
|
|
47132
|
+
type: 'array',
|
|
47133
|
+
},
|
|
47134
|
+
},
|
|
47135
|
+
{
|
|
47136
|
+
in: 'query',
|
|
47137
|
+
name: 'include',
|
|
47138
|
+
required: false,
|
|
47139
|
+
schema: {
|
|
47140
|
+
items: {
|
|
47141
|
+
enum: ['spaces', 'devices', 'acs_entrances'],
|
|
47142
|
+
type: 'string',
|
|
47143
|
+
},
|
|
47144
|
+
type: 'array',
|
|
47145
|
+
},
|
|
47146
|
+
},
|
|
47147
|
+
{
|
|
47148
|
+
in: 'query',
|
|
47149
|
+
name: 'exclude',
|
|
47150
|
+
required: false,
|
|
47151
|
+
schema: {
|
|
47152
|
+
items: {
|
|
47153
|
+
enum: ['spaces', 'devices', 'acs_entrances'],
|
|
47154
|
+
type: 'string',
|
|
47155
|
+
},
|
|
47156
|
+
type: 'array',
|
|
47157
|
+
},
|
|
47158
|
+
},
|
|
47159
|
+
],
|
|
47160
|
+
responses: {
|
|
47161
|
+
200: {
|
|
47162
|
+
content: {
|
|
47163
|
+
'application/json': {
|
|
47164
|
+
schema: {
|
|
47165
|
+
properties: {
|
|
47166
|
+
batch: {
|
|
47167
|
+
description: 'Represents a resource batch.',
|
|
47168
|
+
properties: {
|
|
47169
|
+
acs_entrances: {
|
|
47170
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
47171
|
+
type: 'array',
|
|
47172
|
+
},
|
|
47173
|
+
batch_type: { enum: ['spaces'], type: 'string' },
|
|
47174
|
+
devices: {
|
|
47175
|
+
items: { $ref: '#/components/schemas/device' },
|
|
47176
|
+
type: 'array',
|
|
47177
|
+
},
|
|
47178
|
+
spaces: {
|
|
47179
|
+
items: { $ref: '#/components/schemas/space' },
|
|
47180
|
+
type: 'array',
|
|
47181
|
+
},
|
|
47182
|
+
},
|
|
47183
|
+
required: ['batch_type'],
|
|
47184
|
+
type: 'object',
|
|
47185
|
+
'x-route-path': '/',
|
|
47186
|
+
},
|
|
47187
|
+
ok: { type: 'boolean' },
|
|
47188
|
+
},
|
|
47189
|
+
required: ['batch', 'ok'],
|
|
47190
|
+
type: 'object',
|
|
47191
|
+
},
|
|
47192
|
+
},
|
|
47193
|
+
},
|
|
47194
|
+
description: 'OK',
|
|
47195
|
+
},
|
|
47196
|
+
400: { description: 'Bad Request' },
|
|
47197
|
+
401: { description: 'Unauthorized' },
|
|
47198
|
+
},
|
|
47199
|
+
security: [
|
|
47200
|
+
{ pat_with_workspace: [] },
|
|
47201
|
+
{ console_session_with_workspace: [] },
|
|
47202
|
+
{ api_key: [] },
|
|
47203
|
+
],
|
|
47204
|
+
summary: '/spaces/get_related',
|
|
47205
|
+
tags: [],
|
|
47206
|
+
'x-batch-type': 'spaces',
|
|
47207
|
+
'x-draft': 'Early access.',
|
|
47208
|
+
'x-fern-sdk-group-name': ['spaces'],
|
|
47209
|
+
'x-fern-sdk-method-name': 'get_related',
|
|
47210
|
+
'x-fern-sdk-return-value': 'batch',
|
|
47211
|
+
'x-response-key': 'batch',
|
|
47212
|
+
'x-title': 'Get related Space resources',
|
|
47213
|
+
},
|
|
47214
|
+
post: {
|
|
47215
|
+
description: 'Gets all related resources for one or more Spaces.',
|
|
47216
|
+
operationId: 'spacesGetRelatedPost',
|
|
47217
|
+
requestBody: {
|
|
47218
|
+
content: {
|
|
47219
|
+
'application/json': {
|
|
47220
|
+
schema: {
|
|
47221
|
+
properties: {
|
|
47222
|
+
exclude: {
|
|
47223
|
+
items: {
|
|
47224
|
+
enum: ['spaces', 'devices', 'acs_entrances'],
|
|
47225
|
+
type: 'string',
|
|
47226
|
+
},
|
|
47227
|
+
type: 'array',
|
|
47228
|
+
},
|
|
47229
|
+
include: {
|
|
47230
|
+
items: {
|
|
47231
|
+
enum: ['spaces', 'devices', 'acs_entrances'],
|
|
47232
|
+
type: 'string',
|
|
47233
|
+
},
|
|
47234
|
+
type: 'array',
|
|
47235
|
+
},
|
|
47236
|
+
space_ids: {
|
|
47237
|
+
description:
|
|
47238
|
+
'IDs of the spaces that you want to get along with their related resources.',
|
|
47239
|
+
items: { format: 'uuid', type: 'string' },
|
|
47240
|
+
type: 'array',
|
|
47241
|
+
},
|
|
47242
|
+
},
|
|
47243
|
+
required: ['space_ids'],
|
|
47244
|
+
type: 'object',
|
|
47245
|
+
},
|
|
47246
|
+
},
|
|
47247
|
+
},
|
|
47248
|
+
},
|
|
47249
|
+
responses: {
|
|
47250
|
+
200: {
|
|
47251
|
+
content: {
|
|
47252
|
+
'application/json': {
|
|
47253
|
+
schema: {
|
|
47254
|
+
properties: {
|
|
47255
|
+
batch: {
|
|
47256
|
+
description: 'Represents a resource batch.',
|
|
47257
|
+
properties: {
|
|
47258
|
+
acs_entrances: {
|
|
47259
|
+
items: { $ref: '#/components/schemas/acs_entrance' },
|
|
47260
|
+
type: 'array',
|
|
47261
|
+
},
|
|
47262
|
+
batch_type: { enum: ['spaces'], type: 'string' },
|
|
47263
|
+
devices: {
|
|
47264
|
+
items: { $ref: '#/components/schemas/device' },
|
|
47265
|
+
type: 'array',
|
|
47266
|
+
},
|
|
47267
|
+
spaces: {
|
|
47268
|
+
items: { $ref: '#/components/schemas/space' },
|
|
47269
|
+
type: 'array',
|
|
47270
|
+
},
|
|
47271
|
+
},
|
|
47272
|
+
required: ['batch_type'],
|
|
47273
|
+
type: 'object',
|
|
47274
|
+
'x-route-path': '/',
|
|
47275
|
+
},
|
|
47276
|
+
ok: { type: 'boolean' },
|
|
47277
|
+
},
|
|
47278
|
+
required: ['batch', 'ok'],
|
|
47279
|
+
type: 'object',
|
|
47280
|
+
},
|
|
47281
|
+
},
|
|
47282
|
+
},
|
|
47283
|
+
description: 'OK',
|
|
47284
|
+
},
|
|
47285
|
+
400: { description: 'Bad Request' },
|
|
47286
|
+
401: { description: 'Unauthorized' },
|
|
47287
|
+
},
|
|
47288
|
+
security: [
|
|
47289
|
+
{ pat_with_workspace: [] },
|
|
47290
|
+
{ console_session_with_workspace: [] },
|
|
47291
|
+
{ api_key: [] },
|
|
47292
|
+
],
|
|
47293
|
+
summary: '/spaces/get_related',
|
|
47294
|
+
tags: [],
|
|
47295
|
+
'x-batch-type': 'spaces',
|
|
47296
|
+
'x-draft': 'Early access.',
|
|
47297
|
+
'x-fern-sdk-group-name': ['spaces'],
|
|
47298
|
+
'x-fern-sdk-method-name': 'get_related',
|
|
47299
|
+
'x-fern-sdk-return-value': 'batch',
|
|
47300
|
+
'x-response-key': 'batch',
|
|
47301
|
+
'x-title': 'Get related Space resources',
|
|
47302
|
+
},
|
|
47303
|
+
},
|
|
46118
47304
|
'/spaces/list': {
|
|
46119
47305
|
get: {
|
|
46120
47306
|
description: 'Returns a list of all spaces.',
|