@seamapi/types 1.406.1 → 1.406.2
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 +477 -468
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +664 -614
- package/lib/seam/connect/models/events/access-codes.js +4 -9
- package/lib/seam/connect/models/events/access-codes.js.map +1 -1
- package/lib/seam/connect/models/events/access-grants.js +5 -2
- package/lib/seam/connect/models/events/access-grants.js.map +1 -1
- package/lib/seam/connect/models/events/access-methods.js +4 -1
- package/lib/seam/connect/models/events/access-methods.js.map +1 -1
- package/lib/seam/connect/models/events/acs/access-groups.js +4 -1
- package/lib/seam/connect/models/events/acs/access-groups.js.map +1 -1
- package/lib/seam/connect/models/events/acs/common.js +2 -5
- package/lib/seam/connect/models/events/acs/common.js.map +1 -1
- package/lib/seam/connect/models/events/acs/credentials.js +4 -1
- package/lib/seam/connect/models/events/acs/credentials.js.map +1 -1
- package/lib/seam/connect/models/events/acs/encoders.js +1 -4
- package/lib/seam/connect/models/events/acs/encoders.js.map +1 -1
- package/lib/seam/connect/models/events/acs/entrances.js +1 -1
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -1
- package/lib/seam/connect/models/events/acs/systems.js +3 -3
- package/lib/seam/connect/models/events/acs/users.js +3 -3
- package/lib/seam/connect/models/events/acs/users.js.map +1 -1
- package/lib/seam/connect/models/events/action-attempts.js +2 -2
- package/lib/seam/connect/models/events/action-attempts.js.map +1 -1
- package/lib/seam/connect/models/events/client-sessions.js +1 -1
- package/lib/seam/connect/models/events/client-sessions.js.map +1 -1
- package/lib/seam/connect/models/events/common.js +1 -1
- package/lib/seam/connect/models/events/common.js.map +1 -1
- package/lib/seam/connect/models/events/connect-webviews.js +2 -2
- package/lib/seam/connect/models/events/connect-webviews.js.map +1 -1
- package/lib/seam/connect/models/events/connected-accounts.js +2 -2
- package/lib/seam/connect/models/events/connected-accounts.js.map +1 -1
- package/lib/seam/connect/models/events/devices.js +37 -37
- package/lib/seam/connect/models/events/devices.js.map +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js +1 -1
- package/lib/seam/connect/models/events/enrollment-automations.js.map +1 -1
- package/lib/seam/connect/models/events/phones.js +1 -4
- package/lib/seam/connect/models/events/phones.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +21 -0
- package/lib/seam/connect/openapi.js +411 -328
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +643 -614
- package/package.json +1 -1
- package/src/lib/seam/connect/models/events/access-codes.ts +4 -15
- package/src/lib/seam/connect/models/events/access-grants.ts +5 -2
- package/src/lib/seam/connect/models/events/access-methods.ts +4 -1
- package/src/lib/seam/connect/models/events/acs/access-groups.ts +4 -1
- package/src/lib/seam/connect/models/events/acs/common.ts +2 -9
- package/src/lib/seam/connect/models/events/acs/credentials.ts +4 -1
- package/src/lib/seam/connect/models/events/acs/encoders.ts +1 -6
- package/src/lib/seam/connect/models/events/acs/entrances.ts +1 -3
- package/src/lib/seam/connect/models/events/acs/systems.ts +3 -3
- package/src/lib/seam/connect/models/events/acs/users.ts +3 -5
- package/src/lib/seam/connect/models/events/action-attempts.ts +2 -4
- package/src/lib/seam/connect/models/events/client-sessions.ts +1 -3
- package/src/lib/seam/connect/models/events/common.ts +1 -3
- package/src/lib/seam/connect/models/events/connect-webviews.ts +2 -6
- package/src/lib/seam/connect/models/events/connected-accounts.ts +2 -6
- package/src/lib/seam/connect/models/events/devices.ts +37 -77
- package/src/lib/seam/connect/models/events/enrollment-automations.ts +1 -3
- package/src/lib/seam/connect/models/events/phones.ts +1 -6
- package/src/lib/seam/connect/openapi.ts +425 -485
- package/src/lib/seam/connect/route-types.ts +643 -614
package/dist/connect.cjs
CHANGED
|
@@ -3975,26 +3975,18 @@ var connect_webview = zod.z.object({
|
|
|
3975
3975
|
`);
|
|
3976
3976
|
var common_event = zod.z.object({
|
|
3977
3977
|
event_id: zod.z.string().uuid().describe("ID of the event."),
|
|
3978
|
-
workspace_id: zod.z.string().uuid().describe(
|
|
3979
|
-
"ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces)."
|
|
3980
|
-
),
|
|
3978
|
+
workspace_id: zod.z.string().uuid().describe("ID of the workspace associated with the event."),
|
|
3981
3979
|
created_at: zod.z.string().datetime().describe("Date and time at which the event was created."),
|
|
3982
3980
|
occurred_at: zod.z.string().datetime().describe("Date and time at which the event occurred.")
|
|
3983
3981
|
});
|
|
3984
3982
|
var access_code_event = common_event.extend({
|
|
3985
|
-
access_code_id: zod.z.string().uuid().describe(
|
|
3986
|
-
|
|
3987
|
-
),
|
|
3988
|
-
device_id: zod.z.string().uuid().describe(
|
|
3989
|
-
"ID of the [device](https://docs.seam.co/latest/core-concepts/devices)."
|
|
3990
|
-
),
|
|
3983
|
+
access_code_id: zod.z.string().uuid().describe("ID of the affected access code."),
|
|
3984
|
+
device_id: zod.z.string().uuid().describe("ID of the device associated with the affected access code."),
|
|
3991
3985
|
connected_account_id: zod.z.string().uuid().describe(
|
|
3992
|
-
"ID of the
|
|
3986
|
+
"ID of the connected account associated with the affected access codes."
|
|
3993
3987
|
)
|
|
3994
3988
|
});
|
|
3995
|
-
var code = zod.z.string().describe(
|
|
3996
|
-
"Code for the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes)."
|
|
3997
|
-
);
|
|
3989
|
+
var code = zod.z.string().describe("Code for the affected access code.");
|
|
3998
3990
|
var access_code_created_event = access_code_event.extend({
|
|
3999
3991
|
event_type: zod.z.literal("access_code.created")
|
|
4000
3992
|
}).describe(`
|
|
@@ -4155,7 +4147,7 @@ var access_code_events = [
|
|
|
4155
4147
|
unmanaged_access_code_removed_event
|
|
4156
4148
|
];
|
|
4157
4149
|
var access_grant_event = common_event.extend({
|
|
4158
|
-
access_grant_id: zod.z.string().uuid().describe("ID of the access grant.")
|
|
4150
|
+
access_grant_id: zod.z.string().uuid().describe("ID of the affected access grant.")
|
|
4159
4151
|
});
|
|
4160
4152
|
var access_grant_created_event = access_grant_event.extend({
|
|
4161
4153
|
event_type: zod.z.literal("access_grant.created")
|
|
@@ -4182,7 +4174,7 @@ var access_grant_access_granted_to_all_doors_event = access_grant_event.extend({
|
|
|
4182
4174
|
All access requested for an access grant was successfully granted.
|
|
4183
4175
|
`);
|
|
4184
4176
|
var acs_entrance_id = zod.z.string().uuid().describe(
|
|
4185
|
-
"ID of the
|
|
4177
|
+
"ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details)."
|
|
4186
4178
|
);
|
|
4187
4179
|
var access_grant_access_granted_to_door_event = access_grant_event.extend({
|
|
4188
4180
|
event_type: zod.z.literal("access_grant.access_granted_to_door"),
|
|
@@ -4212,7 +4204,7 @@ var access_grant_events = [
|
|
|
4212
4204
|
access_grant_access_to_door_lost_event
|
|
4213
4205
|
];
|
|
4214
4206
|
var access_method_event = common_event.extend({
|
|
4215
|
-
access_method_id: zod.z.string().uuid().describe("ID of the access method.")
|
|
4207
|
+
access_method_id: zod.z.string().uuid().describe("ID of the affected access method.")
|
|
4216
4208
|
});
|
|
4217
4209
|
var access_method_issued_event = access_method_event.extend({
|
|
4218
4210
|
event_type: zod.z.literal("access_method.issued")
|
|
@@ -4244,17 +4236,13 @@ var access_method_events = [
|
|
|
4244
4236
|
access_method_card_encoding_required_event
|
|
4245
4237
|
];
|
|
4246
4238
|
var common_acs_event = common_event.extend({
|
|
4247
|
-
connected_account_id: zod.z.string().uuid().optional().describe(
|
|
4248
|
-
|
|
4249
|
-
),
|
|
4250
|
-
acs_system_id: zod.z.string().uuid().describe(
|
|
4251
|
-
"ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems)."
|
|
4252
|
-
)
|
|
4239
|
+
connected_account_id: zod.z.string().uuid().optional().describe("ID of the connected account."),
|
|
4240
|
+
acs_system_id: zod.z.string().uuid().describe("ID of the access system.")
|
|
4253
4241
|
});
|
|
4254
4242
|
|
|
4255
4243
|
// src/lib/seam/connect/models/events/acs/access-groups.ts
|
|
4256
4244
|
var acs_access_group_event = common_acs_event.extend({
|
|
4257
|
-
acs_access_group_id: zod.z.string().uuid()
|
|
4245
|
+
acs_access_group_id: zod.z.string().uuid().describe("ID of the affected access group.")
|
|
4258
4246
|
});
|
|
4259
4247
|
var acs_access_group_deleted_event = acs_access_group_event.extend({
|
|
4260
4248
|
event_type: zod.z.literal("acs_access_group.deleted")
|
|
@@ -4266,7 +4254,7 @@ var acs_access_group_deleted_event = acs_access_group_event.extend({
|
|
|
4266
4254
|
`);
|
|
4267
4255
|
var acs_access_group_events = [acs_access_group_deleted_event];
|
|
4268
4256
|
var acs_credential_event = common_acs_event.extend({
|
|
4269
|
-
acs_credential_id: zod.z.string().uuid()
|
|
4257
|
+
acs_credential_id: zod.z.string().uuid().describe("ID of the affected credential.")
|
|
4270
4258
|
});
|
|
4271
4259
|
var acs_credential_deleted_event = acs_credential_event.extend({
|
|
4272
4260
|
event_type: zod.z.literal("acs_credential.deleted")
|
|
@@ -4308,9 +4296,7 @@ var acs_credential_events = [
|
|
|
4308
4296
|
acs_credential_invalidated
|
|
4309
4297
|
];
|
|
4310
4298
|
var acs_encoder_event = common_acs_event.extend({
|
|
4311
|
-
acs_encoder_id: zod.z.string().uuid().describe(
|
|
4312
|
-
"ID of the [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners)."
|
|
4313
|
-
)
|
|
4299
|
+
acs_encoder_id: zod.z.string().uuid().describe("ID of the affected encoder.")
|
|
4314
4300
|
});
|
|
4315
4301
|
var acs_encoder_added_event = acs_encoder_event.extend({
|
|
4316
4302
|
event_type: zod.z.literal("acs_encoder.added")
|
|
@@ -4334,9 +4320,7 @@ var acs_encoder_events = [
|
|
|
4334
4320
|
];
|
|
4335
4321
|
var acs_entrance_event = common_acs_event.extend({
|
|
4336
4322
|
acs_entrance_id: zod.z.string().uuid()
|
|
4337
|
-
}).describe(
|
|
4338
|
-
"ID of the [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details)."
|
|
4339
|
-
);
|
|
4323
|
+
}).describe("ID of the affected entrance.");
|
|
4340
4324
|
var acs_entrance_added_event = acs_entrance_event.extend({
|
|
4341
4325
|
event_type: zod.z.literal("acs_entrance.added")
|
|
4342
4326
|
}).describe(`
|
|
@@ -4364,7 +4348,7 @@ var acs_system_connected_event = acs_system_event.extend({
|
|
|
4364
4348
|
---
|
|
4365
4349
|
route_path: /acs/systems
|
|
4366
4350
|
---
|
|
4367
|
-
An [
|
|
4351
|
+
An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.
|
|
4368
4352
|
`);
|
|
4369
4353
|
var acs_system_disconnected_event = acs_system_event.extend({
|
|
4370
4354
|
event_type: zod.z.literal("acs_system.disconnected")
|
|
@@ -4372,7 +4356,7 @@ var acs_system_disconnected_event = acs_system_event.extend({
|
|
|
4372
4356
|
---
|
|
4373
4357
|
route_path: /acs/systems
|
|
4374
4358
|
---
|
|
4375
|
-
An [
|
|
4359
|
+
An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected.
|
|
4376
4360
|
`);
|
|
4377
4361
|
var acs_system_added_event = acs_system_event.extend({
|
|
4378
4362
|
event_type: zod.z.literal("acs_system.added")
|
|
@@ -4380,7 +4364,7 @@ var acs_system_added_event = acs_system_event.extend({
|
|
|
4380
4364
|
---
|
|
4381
4365
|
route_path: /acs/systems
|
|
4382
4366
|
---
|
|
4383
|
-
An [
|
|
4367
|
+
An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was added.
|
|
4384
4368
|
`);
|
|
4385
4369
|
var acs_system_events = [
|
|
4386
4370
|
acs_system_connected_event,
|
|
@@ -4389,16 +4373,14 @@ var acs_system_events = [
|
|
|
4389
4373
|
];
|
|
4390
4374
|
var acs_user_event = common_acs_event.extend({
|
|
4391
4375
|
acs_user_id: zod.z.string().uuid()
|
|
4392
|
-
}).describe(
|
|
4393
|
-
"ID of the [ACS user](https://docs.seam.co/latest/capability-guides/access-systems/user-management)."
|
|
4394
|
-
);
|
|
4376
|
+
}).describe("ID of the affected access system user.");
|
|
4395
4377
|
var acs_user_deleted_event = acs_user_event.extend({
|
|
4396
4378
|
event_type: zod.z.literal("acs_user.deleted")
|
|
4397
4379
|
}).describe(`
|
|
4398
4380
|
---
|
|
4399
4381
|
route_path: /acs/users
|
|
4400
4382
|
---
|
|
4401
|
-
An [
|
|
4383
|
+
An [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.
|
|
4402
4384
|
`);
|
|
4403
4385
|
var acs_user_created_event = acs_user_event.extend({
|
|
4404
4386
|
event_type: zod.z.literal("acs_user.created")
|
|
@@ -4406,7 +4388,7 @@ var acs_user_created_event = acs_user_event.extend({
|
|
|
4406
4388
|
---
|
|
4407
4389
|
route_path: /acs/users
|
|
4408
4390
|
---
|
|
4409
|
-
An [
|
|
4391
|
+
An [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created.
|
|
4410
4392
|
`);
|
|
4411
4393
|
var acs_user_events = [
|
|
4412
4394
|
acs_user_created_event,
|
|
@@ -4423,10 +4405,8 @@ var acs_events = [
|
|
|
4423
4405
|
...acs_entrance_events
|
|
4424
4406
|
];
|
|
4425
4407
|
var action_attempt_event = common_event.extend({
|
|
4426
|
-
action_attempt_id: zod.z.string().uuid().describe(
|
|
4427
|
-
|
|
4428
|
-
),
|
|
4429
|
-
action_type: zod.z.string().describe("Type of action."),
|
|
4408
|
+
action_attempt_id: zod.z.string().uuid().describe("ID of the affected action attempt."),
|
|
4409
|
+
action_type: zod.z.string().describe("Type of the action."),
|
|
4430
4410
|
status: zod.z.string().describe("Status of the action.")
|
|
4431
4411
|
});
|
|
4432
4412
|
var action_attempt_lock_door_succeeded_event = action_attempt_event.extend({
|
|
@@ -4468,9 +4448,7 @@ var action_attempt_events = [
|
|
|
4468
4448
|
action_attempt_unlock_door_failed_event
|
|
4469
4449
|
];
|
|
4470
4450
|
var client_session_event = common_event.extend({
|
|
4471
|
-
client_session_id: zod.z.string().uuid().describe(
|
|
4472
|
-
"ID of the [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens)."
|
|
4473
|
-
)
|
|
4451
|
+
client_session_id: zod.z.string().uuid().describe("ID of the affected client session.")
|
|
4474
4452
|
});
|
|
4475
4453
|
var client_session_deleted_event = client_session_event.extend({
|
|
4476
4454
|
event_type: zod.z.literal("client_session.deleted")
|
|
@@ -4482,13 +4460,9 @@ var client_session_deleted_event = client_session_event.extend({
|
|
|
4482
4460
|
`);
|
|
4483
4461
|
var client_session_events = [client_session_deleted_event];
|
|
4484
4462
|
var connect_webview_event = common_event.extend({
|
|
4485
|
-
connect_webview_id: zod.z.string().uuid().describe(
|
|
4486
|
-
"ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews)."
|
|
4487
|
-
)
|
|
4463
|
+
connect_webview_id: zod.z.string().uuid().describe("ID of the affected Connect Webview.")
|
|
4488
4464
|
});
|
|
4489
|
-
var connected_account_id = zod.z.string().uuid().describe(
|
|
4490
|
-
"ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
|
|
4491
|
-
);
|
|
4465
|
+
var connected_account_id = zod.z.string().uuid().describe("ID of the connected account associated with the event.");
|
|
4492
4466
|
var connect_webview_login_succeeded_event = connect_webview_event.extend({
|
|
4493
4467
|
event_type: zod.z.literal("connect_webview.login_succeeded"),
|
|
4494
4468
|
connected_account_id
|
|
@@ -4511,13 +4485,9 @@ var connect_webview_events = [
|
|
|
4511
4485
|
connect_webview_login_failed_event
|
|
4512
4486
|
];
|
|
4513
4487
|
var connected_account_event = common_event.extend({
|
|
4514
|
-
connected_account_id: zod.z.string().uuid().describe(
|
|
4515
|
-
"ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
|
|
4516
|
-
)
|
|
4488
|
+
connected_account_id: zod.z.string().uuid().describe("ID of the affected connected account.")
|
|
4517
4489
|
});
|
|
4518
|
-
var connect_webview_id = zod.z.string().uuid().describe(
|
|
4519
|
-
"ID of the [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews)."
|
|
4520
|
-
);
|
|
4490
|
+
var connect_webview_id = zod.z.string().uuid().describe("ID of the Connect Webview associated with the event.");
|
|
4521
4491
|
var connected_account_connected_event = connected_account_event.extend(
|
|
4522
4492
|
{
|
|
4523
4493
|
event_type: zod.z.literal("connected_account.connected"),
|
|
@@ -4592,20 +4562,18 @@ var connected_account_events = [
|
|
|
4592
4562
|
connected_account_completed_first_sync_after_reconnection_event
|
|
4593
4563
|
];
|
|
4594
4564
|
var device_event = common_event.extend({
|
|
4595
|
-
device_id: zod.z.string().uuid().describe("ID of the device."),
|
|
4596
|
-
connected_account_id: zod.z.string().uuid().describe(
|
|
4597
|
-
"ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts)."
|
|
4598
|
-
)
|
|
4565
|
+
device_id: zod.z.string().uuid().describe("ID of the affected device."),
|
|
4566
|
+
connected_account_id: zod.z.string().uuid().describe("ID of the connected account associated with the event.")
|
|
4599
4567
|
});
|
|
4600
4568
|
var battery_level = zod.z.number().min(0).max(1).describe(
|
|
4601
|
-
"Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device."
|
|
4569
|
+
"Number in the range 0 to 1.0 indicating the amount of battery in the affected device, as reported by the device."
|
|
4602
4570
|
);
|
|
4603
4571
|
var device_battery_status = zod.z.enum(["critical", "low", "good", "full"]).describe(
|
|
4604
|
-
"Battery status of the device, calculated from the numeric `battery_level` value."
|
|
4572
|
+
"Battery status of the affected device, calculated from the numeric `battery_level` value."
|
|
4605
4573
|
);
|
|
4606
4574
|
var disconnection_error_code = zod.z.enum(["account_disconnected", "hub_disconnected", "device_disconnected"]).describe("Error code associated with the disconnection event, if any.");
|
|
4607
4575
|
var lock_method = zod.z.enum(["keycode", "manual", "automatic", "unknown", "seamapi"]).describe(
|
|
4608
|
-
"Method by which
|
|
4576
|
+
"Method by which the affected lock device was locked or unlocked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device."
|
|
4609
4577
|
);
|
|
4610
4578
|
var device_connected_event = device_event.extend({
|
|
4611
4579
|
event_type: zod.z.literal("device.connected")
|
|
@@ -4793,12 +4761,8 @@ var noise_sensor_noise_threshold_triggered_event = device_event.extend(
|
|
|
4793
4761
|
event_type: zod.z.literal("noise_sensor.noise_threshold_triggered"),
|
|
4794
4762
|
noise_level_decibels: zod.z.number().optional().describe("Detected noise level in decibels."),
|
|
4795
4763
|
noise_level_nrs: zod.z.number().optional().describe("Detected noise level in Noiseaware Noise Risk Score (NRS)."),
|
|
4796
|
-
noise_threshold_id: zod.z.string().uuid().optional().describe(
|
|
4797
|
-
|
|
4798
|
-
),
|
|
4799
|
-
noise_threshold_name: zod.z.string().optional().describe(
|
|
4800
|
-
"Name of the [noise threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) that was triggered."
|
|
4801
|
-
),
|
|
4764
|
+
noise_threshold_id: zod.z.string().uuid().optional().describe("ID of the noise threshold that was triggered."),
|
|
4765
|
+
noise_threshold_name: zod.z.string().optional().describe("Name of the noise threshold that was triggered."),
|
|
4802
4766
|
// TODO: remove metadata from this event
|
|
4803
4767
|
noiseaware_metadata: zod.z.record(zod.z.unknown()).optional().describe("Metadata from Noiseaware."),
|
|
4804
4768
|
minut_metadata: zod.z.record(zod.z.unknown()).optional().describe("Metadata from Minut.")
|
|
@@ -4811,14 +4775,10 @@ var noise_sensor_noise_threshold_triggered_event = device_event.extend(
|
|
|
4811
4775
|
`);
|
|
4812
4776
|
var lock_locked_event = device_event.extend({
|
|
4813
4777
|
event_type: zod.z.literal("lock.locked"),
|
|
4814
|
-
access_code_id: zod.z.string().uuid().optional().describe(
|
|
4815
|
-
|
|
4816
|
-
),
|
|
4817
|
-
action_attempt_id: zod.z.string().uuid().optional().describe(
|
|
4818
|
-
"ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the lock action."
|
|
4819
|
-
),
|
|
4778
|
+
access_code_id: zod.z.string().uuid().optional().describe("ID of the access code that was used to lock the device."),
|
|
4779
|
+
action_attempt_id: zod.z.string().uuid().optional().describe("ID of the action attempt associated with the lock action."),
|
|
4820
4780
|
method: lock_method.describe(
|
|
4821
|
-
"Method by which
|
|
4781
|
+
"Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device."
|
|
4822
4782
|
)
|
|
4823
4783
|
}).describe(`
|
|
4824
4784
|
---
|
|
@@ -4829,13 +4789,11 @@ var lock_locked_event = device_event.extend({
|
|
|
4829
4789
|
var lock_unlocked_event = device_event.extend({
|
|
4830
4790
|
event_type: zod.z.literal("lock.unlocked"),
|
|
4831
4791
|
access_code_id: zod.z.string().uuid().optional().describe(
|
|
4832
|
-
"ID of the
|
|
4833
|
-
),
|
|
4834
|
-
action_attempt_id: zod.z.string().uuid().optional().describe(
|
|
4835
|
-
"ID of the [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) associated with the unlock action."
|
|
4792
|
+
"ID of the access code that was used to unlock the affected device."
|
|
4836
4793
|
),
|
|
4794
|
+
action_attempt_id: zod.z.string().uuid().optional().describe("ID of the action attempt associated with the unlock action."),
|
|
4837
4795
|
method: lock_method.describe(
|
|
4838
|
-
"Method by which
|
|
4796
|
+
"Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device."
|
|
4839
4797
|
)
|
|
4840
4798
|
}).describe(`
|
|
4841
4799
|
---
|
|
@@ -4845,9 +4803,7 @@ var lock_unlocked_event = device_event.extend({
|
|
|
4845
4803
|
`);
|
|
4846
4804
|
var lock_access_denied_event = device_event.extend({
|
|
4847
4805
|
event_type: zod.z.literal("lock.access_denied"),
|
|
4848
|
-
access_code_id: zod.z.string().uuid().optional().describe(
|
|
4849
|
-
"ID of the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used in the unlock attempts."
|
|
4850
|
-
)
|
|
4806
|
+
access_code_id: zod.z.string().uuid().optional().describe("ID of the access code that was used in the unlock attempts.")
|
|
4851
4807
|
}).describe(`
|
|
4852
4808
|
---
|
|
4853
4809
|
route_path: /locks
|
|
@@ -4857,13 +4813,11 @@ var lock_access_denied_event = device_event.extend({
|
|
|
4857
4813
|
var thermostat_climate_preset_activated_event = device_event.extend({
|
|
4858
4814
|
event_type: zod.z.literal("thermostat.climate_preset_activated"),
|
|
4859
4815
|
thermostat_schedule_id: zod.z.string().uuid().nullable().describe(
|
|
4860
|
-
"ID of the
|
|
4861
|
-
),
|
|
4862
|
-
climate_preset_key: zod.z.string().describe(
|
|
4863
|
-
"Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) that was activated."
|
|
4816
|
+
"ID of the thermostat schedule that prompted the affected climate preset to be activated."
|
|
4864
4817
|
),
|
|
4818
|
+
climate_preset_key: zod.z.string().describe("Key of the climate preset that was activated."),
|
|
4865
4819
|
is_fallback_climate_preset: zod.z.boolean().describe(
|
|
4866
|
-
"Indicates whether the
|
|
4820
|
+
"Indicates whether the climate preset that was activated is the fallback climate preset for the thermostat."
|
|
4867
4821
|
)
|
|
4868
4822
|
}).describe(`
|
|
4869
4823
|
---
|
|
@@ -4872,7 +4826,7 @@ var thermostat_climate_preset_activated_event = device_event.extend({
|
|
|
4872
4826
|
A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.
|
|
4873
4827
|
`);
|
|
4874
4828
|
var thermostat_manually_adjusted_method = zod.z.enum(["seam", "external"]).describe(
|
|
4875
|
-
"Method used to adjust the
|
|
4829
|
+
"Method used to adjust the affected thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat."
|
|
4876
4830
|
);
|
|
4877
4831
|
var thermostat_manually_adjusted_event = device_event.extend({
|
|
4878
4832
|
event_type: zod.z.literal("thermostat.manually_adjusted"),
|
|
@@ -4894,24 +4848,12 @@ var thermostat_manually_adjusted_event = device_event.extend({
|
|
|
4894
4848
|
`);
|
|
4895
4849
|
var temperature_threshold_exceeded_event = device_event.extend({
|
|
4896
4850
|
event_type: zod.z.literal("thermostat.temperature_threshold_exceeded"),
|
|
4897
|
-
temperature_celsius: zod.z.number().describe(
|
|
4898
|
-
|
|
4899
|
-
),
|
|
4900
|
-
|
|
4901
|
-
|
|
4902
|
-
),
|
|
4903
|
-
upper_limit_celsius: zod.z.number().nullable().describe(
|
|
4904
|
-
"Upper temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
|
|
4905
|
-
),
|
|
4906
|
-
upper_limit_fahrenheit: zod.z.number().nullable().describe(
|
|
4907
|
-
"Upper temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
|
|
4908
|
-
),
|
|
4909
|
-
lower_limit_celsius: zod.z.number().nullable().describe(
|
|
4910
|
-
"Lower temperature limit, in \xB0C, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
|
|
4911
|
-
),
|
|
4912
|
-
lower_limit_fahrenheit: zod.z.number().nullable().describe(
|
|
4913
|
-
"Lower temperature limit, in \xB0F, defined by the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds)."
|
|
4914
|
-
)
|
|
4851
|
+
temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the affected thermostat."),
|
|
4852
|
+
temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the affected thermostat."),
|
|
4853
|
+
upper_limit_celsius: zod.z.number().nullable().describe("Upper temperature limit, in \xB0C, defined by the set threshold."),
|
|
4854
|
+
upper_limit_fahrenheit: zod.z.number().nullable().describe("Upper temperature limit, in \xB0F, defined by the set threshold."),
|
|
4855
|
+
lower_limit_celsius: zod.z.number().nullable().describe("Lower temperature limit, in \xB0C, defined by the set threshold."),
|
|
4856
|
+
lower_limit_fahrenheit: zod.z.number().nullable().describe("Lower temperature limit, in \xB0F, defined by the set threshold.")
|
|
4915
4857
|
}).describe(`
|
|
4916
4858
|
---
|
|
4917
4859
|
route_path: /thermostats
|
|
@@ -4922,23 +4864,19 @@ var temperature_threshold_no_longer_exceeded_event = device_event.extend({
|
|
|
4922
4864
|
event_type: zod.z.literal(
|
|
4923
4865
|
"thermostat.temperature_threshold_no_longer_exceeded"
|
|
4924
4866
|
),
|
|
4925
|
-
temperature_celsius: zod.z.number().describe(
|
|
4926
|
-
|
|
4927
|
-
),
|
|
4928
|
-
temperature_fahrenheit: zod.z.number().describe(
|
|
4929
|
-
"Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
4930
|
-
),
|
|
4867
|
+
temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the affected thermostat."),
|
|
4868
|
+
temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the affected thermostat."),
|
|
4931
4869
|
upper_limit_celsius: zod.z.number().nullable().describe(
|
|
4932
|
-
"Upper temperature limit, in \xB0C, defined by the set
|
|
4870
|
+
"Upper temperature limit, in \xB0C, defined by the set threshold."
|
|
4933
4871
|
),
|
|
4934
4872
|
upper_limit_fahrenheit: zod.z.number().nullable().describe(
|
|
4935
|
-
"Upper temperature limit, in \xB0F, defined by the set
|
|
4873
|
+
"Upper temperature limit, in \xB0F, defined by the set threshold."
|
|
4936
4874
|
),
|
|
4937
4875
|
lower_limit_celsius: zod.z.number().nullable().describe(
|
|
4938
|
-
"Lower temperature limit, in \xB0C, defined by the set
|
|
4876
|
+
"Lower temperature limit, in \xB0C, defined by the set threshold."
|
|
4939
4877
|
),
|
|
4940
4878
|
lower_limit_fahrenheit: zod.z.number().nullable().describe(
|
|
4941
|
-
"Lower temperature limit, in \xB0F, defined by the set
|
|
4879
|
+
"Lower temperature limit, in \xB0F, defined by the set threshold."
|
|
4942
4880
|
)
|
|
4943
4881
|
}).describe(`
|
|
4944
4882
|
---
|
|
@@ -4948,17 +4886,13 @@ var temperature_threshold_no_longer_exceeded_event = device_event.extend({
|
|
|
4948
4886
|
`);
|
|
4949
4887
|
var temperature_reached_set_point_event = device_event.extend({
|
|
4950
4888
|
event_type: zod.z.literal("thermostat.temperature_reached_set_point"),
|
|
4951
|
-
temperature_celsius: zod.z.number().describe(
|
|
4952
|
-
|
|
4953
|
-
),
|
|
4954
|
-
temperature_fahrenheit: zod.z.number().describe(
|
|
4955
|
-
"Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
4956
|
-
),
|
|
4889
|
+
temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the affected thermostat."),
|
|
4890
|
+
temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the affected thermostat."),
|
|
4957
4891
|
desired_temperature_celsius: zod.z.number().optional().describe(
|
|
4958
|
-
"Desired temperature, in \xB0C, defined by the
|
|
4892
|
+
"Desired temperature, in \xB0C, defined by the affected thermostat's cooling or heating set point."
|
|
4959
4893
|
),
|
|
4960
4894
|
desired_temperature_fahrenheit: zod.z.number().optional().describe(
|
|
4961
|
-
"Desired temperature, in \xB0F, defined by the
|
|
4895
|
+
"Desired temperature, in \xB0F, defined by the affected thermostat's cooling or heating set point."
|
|
4962
4896
|
)
|
|
4963
4897
|
}).describe(`
|
|
4964
4898
|
---
|
|
@@ -4968,12 +4902,8 @@ var temperature_reached_set_point_event = device_event.extend({
|
|
|
4968
4902
|
`);
|
|
4969
4903
|
var temperature_changed_event = device_event.extend({
|
|
4970
4904
|
event_type: zod.z.literal("thermostat.temperature_changed"),
|
|
4971
|
-
temperature_celsius: zod.z.number().describe(
|
|
4972
|
-
|
|
4973
|
-
),
|
|
4974
|
-
temperature_fahrenheit: zod.z.number().describe(
|
|
4975
|
-
"Temperature, in \xB0F, reported by the [thermostat](https://docs.seam.co/latest/capability-guides/thermostats)."
|
|
4976
|
-
)
|
|
4905
|
+
temperature_celsius: zod.z.number().describe("Temperature, in \xB0C, reported by the affected thermostat."),
|
|
4906
|
+
temperature_fahrenheit: zod.z.number().describe("Temperature, in \xB0F, reported by the affected thermostat.")
|
|
4977
4907
|
}).describe(`
|
|
4978
4908
|
---
|
|
4979
4909
|
route_path: /thermostats
|
|
@@ -4982,7 +4912,7 @@ var temperature_changed_event = device_event.extend({
|
|
|
4982
4912
|
`);
|
|
4983
4913
|
var device_name_changed_event = device_event.extend({
|
|
4984
4914
|
event_type: zod.z.literal("device.name_changed"),
|
|
4985
|
-
device_name: zod.z.string().describe("The new name of the device.")
|
|
4915
|
+
device_name: zod.z.string().describe("The new name of the affected device.")
|
|
4986
4916
|
}).describe(`
|
|
4987
4917
|
---
|
|
4988
4918
|
route_path: /devices
|
|
@@ -5025,9 +4955,7 @@ var device_events = [
|
|
|
5025
4955
|
device_name_changed_event
|
|
5026
4956
|
];
|
|
5027
4957
|
var enrollment_automation_event = common_event.extend({
|
|
5028
|
-
enrollment_automation_id: zod.z.string().uuid().describe(
|
|
5029
|
-
"ID of the [enrollment automation](https://docs.seam.co/latest/capability-guides/mobile-access/issuing-mobile-credentials-from-an-access-control-system#prepare-the-phones-for-a-user-identity-to-start-receiving-mobile-credentials-using-an-enrollment-aut)."
|
|
5030
|
-
)
|
|
4958
|
+
enrollment_automation_id: zod.z.string().uuid().describe("ID of the affected enrollment automation.")
|
|
5031
4959
|
});
|
|
5032
4960
|
var enrollment_automation_deleted_event = enrollment_automation_event.extend({
|
|
5033
4961
|
event_type: zod.z.literal("enrollment_automation.deleted")
|
|
@@ -5041,9 +4969,7 @@ var enrollment_automation_events = [
|
|
|
5041
4969
|
enrollment_automation_deleted_event
|
|
5042
4970
|
];
|
|
5043
4971
|
var phone_event = common_event.extend({
|
|
5044
|
-
device_id: zod.z.string().uuid().describe(
|
|
5045
|
-
"ID of the [device](https://docs.seam.co/latest/core-concepts/devices)."
|
|
5046
|
-
)
|
|
4972
|
+
device_id: zod.z.string().uuid().describe("ID of the affected phone device.")
|
|
5047
4973
|
});
|
|
5048
4974
|
var phone_deactivated_event = phone_event.extend({
|
|
5049
4975
|
event_type: zod.z.literal("phone.deactivated")
|
|
@@ -15019,12 +14945,12 @@ var openapi_default = {
|
|
|
15019
14945
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was created.",
|
|
15020
14946
|
properties: {
|
|
15021
14947
|
access_code_id: {
|
|
15022
|
-
description: "ID of the
|
|
14948
|
+
description: "ID of the affected access code.",
|
|
15023
14949
|
format: "uuid",
|
|
15024
14950
|
type: "string"
|
|
15025
14951
|
},
|
|
15026
14952
|
connected_account_id: {
|
|
15027
|
-
description: "ID of the
|
|
14953
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15028
14954
|
format: "uuid",
|
|
15029
14955
|
type: "string"
|
|
15030
14956
|
},
|
|
@@ -15034,7 +14960,7 @@ var openapi_default = {
|
|
|
15034
14960
|
type: "string"
|
|
15035
14961
|
},
|
|
15036
14962
|
device_id: {
|
|
15037
|
-
description: "ID of the
|
|
14963
|
+
description: "ID of the device associated with the affected access code.",
|
|
15038
14964
|
format: "uuid",
|
|
15039
14965
|
type: "string"
|
|
15040
14966
|
},
|
|
@@ -15050,7 +14976,7 @@ var openapi_default = {
|
|
|
15050
14976
|
type: "string"
|
|
15051
14977
|
},
|
|
15052
14978
|
workspace_id: {
|
|
15053
|
-
description: "ID of the
|
|
14979
|
+
description: "ID of the workspace associated with the event.",
|
|
15054
14980
|
format: "uuid",
|
|
15055
14981
|
type: "string"
|
|
15056
14982
|
}
|
|
@@ -15072,12 +14998,12 @@ var openapi_default = {
|
|
|
15072
14998
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was changed.",
|
|
15073
14999
|
properties: {
|
|
15074
15000
|
access_code_id: {
|
|
15075
|
-
description: "ID of the
|
|
15001
|
+
description: "ID of the affected access code.",
|
|
15076
15002
|
format: "uuid",
|
|
15077
15003
|
type: "string"
|
|
15078
15004
|
},
|
|
15079
15005
|
connected_account_id: {
|
|
15080
|
-
description: "ID of the
|
|
15006
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15081
15007
|
format: "uuid",
|
|
15082
15008
|
type: "string"
|
|
15083
15009
|
},
|
|
@@ -15087,7 +15013,7 @@ var openapi_default = {
|
|
|
15087
15013
|
type: "string"
|
|
15088
15014
|
},
|
|
15089
15015
|
device_id: {
|
|
15090
|
-
description: "ID of the
|
|
15016
|
+
description: "ID of the device associated with the affected access code.",
|
|
15091
15017
|
format: "uuid",
|
|
15092
15018
|
type: "string"
|
|
15093
15019
|
},
|
|
@@ -15103,7 +15029,7 @@ var openapi_default = {
|
|
|
15103
15029
|
type: "string"
|
|
15104
15030
|
},
|
|
15105
15031
|
workspace_id: {
|
|
15106
|
-
description: "ID of the
|
|
15032
|
+
description: "ID of the workspace associated with the event.",
|
|
15107
15033
|
format: "uuid",
|
|
15108
15034
|
type: "string"
|
|
15109
15035
|
}
|
|
@@ -15125,16 +15051,16 @@ var openapi_default = {
|
|
|
15125
15051
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was [scheduled natively](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes#native-scheduling) on a device.",
|
|
15126
15052
|
properties: {
|
|
15127
15053
|
access_code_id: {
|
|
15128
|
-
description: "ID of the
|
|
15054
|
+
description: "ID of the affected access code.",
|
|
15129
15055
|
format: "uuid",
|
|
15130
15056
|
type: "string"
|
|
15131
15057
|
},
|
|
15132
15058
|
code: {
|
|
15133
|
-
description: "Code for the
|
|
15059
|
+
description: "Code for the affected access code.",
|
|
15134
15060
|
type: "string"
|
|
15135
15061
|
},
|
|
15136
15062
|
connected_account_id: {
|
|
15137
|
-
description: "ID of the
|
|
15063
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15138
15064
|
format: "uuid",
|
|
15139
15065
|
type: "string"
|
|
15140
15066
|
},
|
|
@@ -15144,7 +15070,7 @@ var openapi_default = {
|
|
|
15144
15070
|
type: "string"
|
|
15145
15071
|
},
|
|
15146
15072
|
device_id: {
|
|
15147
|
-
description: "ID of the
|
|
15073
|
+
description: "ID of the device associated with the affected access code.",
|
|
15148
15074
|
format: "uuid",
|
|
15149
15075
|
type: "string"
|
|
15150
15076
|
},
|
|
@@ -15163,7 +15089,7 @@ var openapi_default = {
|
|
|
15163
15089
|
type: "string"
|
|
15164
15090
|
},
|
|
15165
15091
|
workspace_id: {
|
|
15166
|
-
description: "ID of the
|
|
15092
|
+
description: "ID of the workspace associated with the event.",
|
|
15167
15093
|
format: "uuid",
|
|
15168
15094
|
type: "string"
|
|
15169
15095
|
}
|
|
@@ -15186,16 +15112,16 @@ var openapi_default = {
|
|
|
15186
15112
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was set on a device.",
|
|
15187
15113
|
properties: {
|
|
15188
15114
|
access_code_id: {
|
|
15189
|
-
description: "ID of the
|
|
15115
|
+
description: "ID of the affected access code.",
|
|
15190
15116
|
format: "uuid",
|
|
15191
15117
|
type: "string"
|
|
15192
15118
|
},
|
|
15193
15119
|
code: {
|
|
15194
|
-
description: "Code for the
|
|
15120
|
+
description: "Code for the affected access code.",
|
|
15195
15121
|
type: "string"
|
|
15196
15122
|
},
|
|
15197
15123
|
connected_account_id: {
|
|
15198
|
-
description: "ID of the
|
|
15124
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15199
15125
|
format: "uuid",
|
|
15200
15126
|
type: "string"
|
|
15201
15127
|
},
|
|
@@ -15205,7 +15131,7 @@ var openapi_default = {
|
|
|
15205
15131
|
type: "string"
|
|
15206
15132
|
},
|
|
15207
15133
|
device_id: {
|
|
15208
|
-
description: "ID of the
|
|
15134
|
+
description: "ID of the device associated with the affected access code.",
|
|
15209
15135
|
format: "uuid",
|
|
15210
15136
|
type: "string"
|
|
15211
15137
|
},
|
|
@@ -15224,7 +15150,7 @@ var openapi_default = {
|
|
|
15224
15150
|
type: "string"
|
|
15225
15151
|
},
|
|
15226
15152
|
workspace_id: {
|
|
15227
|
-
description: "ID of the
|
|
15153
|
+
description: "ID of the workspace associated with the event.",
|
|
15228
15154
|
format: "uuid",
|
|
15229
15155
|
type: "string"
|
|
15230
15156
|
}
|
|
@@ -15247,12 +15173,12 @@ var openapi_default = {
|
|
|
15247
15173
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was removed from a device.",
|
|
15248
15174
|
properties: {
|
|
15249
15175
|
access_code_id: {
|
|
15250
|
-
description: "ID of the
|
|
15176
|
+
description: "ID of the affected access code.",
|
|
15251
15177
|
format: "uuid",
|
|
15252
15178
|
type: "string"
|
|
15253
15179
|
},
|
|
15254
15180
|
connected_account_id: {
|
|
15255
|
-
description: "ID of the
|
|
15181
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15256
15182
|
format: "uuid",
|
|
15257
15183
|
type: "string"
|
|
15258
15184
|
},
|
|
@@ -15262,7 +15188,7 @@ var openapi_default = {
|
|
|
15262
15188
|
type: "string"
|
|
15263
15189
|
},
|
|
15264
15190
|
device_id: {
|
|
15265
|
-
description: "ID of the
|
|
15191
|
+
description: "ID of the device associated with the affected access code.",
|
|
15266
15192
|
format: "uuid",
|
|
15267
15193
|
type: "string"
|
|
15268
15194
|
},
|
|
@@ -15281,7 +15207,7 @@ var openapi_default = {
|
|
|
15281
15207
|
type: "string"
|
|
15282
15208
|
},
|
|
15283
15209
|
workspace_id: {
|
|
15284
|
-
description: "ID of the
|
|
15210
|
+
description: "ID of the workspace associated with the event.",
|
|
15285
15211
|
format: "uuid",
|
|
15286
15212
|
type: "string"
|
|
15287
15213
|
}
|
|
@@ -15303,12 +15229,12 @@ var openapi_default = {
|
|
|
15303
15229
|
description: "There was an unusually long delay in setting an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) on a device.",
|
|
15304
15230
|
properties: {
|
|
15305
15231
|
access_code_id: {
|
|
15306
|
-
description: "ID of the
|
|
15232
|
+
description: "ID of the affected access code.",
|
|
15307
15233
|
format: "uuid",
|
|
15308
15234
|
type: "string"
|
|
15309
15235
|
},
|
|
15310
15236
|
connected_account_id: {
|
|
15311
|
-
description: "ID of the
|
|
15237
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15312
15238
|
format: "uuid",
|
|
15313
15239
|
type: "string"
|
|
15314
15240
|
},
|
|
@@ -15318,7 +15244,7 @@ var openapi_default = {
|
|
|
15318
15244
|
type: "string"
|
|
15319
15245
|
},
|
|
15320
15246
|
device_id: {
|
|
15321
|
-
description: "ID of the
|
|
15247
|
+
description: "ID of the device associated with the affected access code.",
|
|
15322
15248
|
format: "uuid",
|
|
15323
15249
|
type: "string"
|
|
15324
15250
|
},
|
|
@@ -15337,7 +15263,7 @@ var openapi_default = {
|
|
|
15337
15263
|
type: "string"
|
|
15338
15264
|
},
|
|
15339
15265
|
workspace_id: {
|
|
15340
|
-
description: "ID of the
|
|
15266
|
+
description: "ID of the workspace associated with the event.",
|
|
15341
15267
|
format: "uuid",
|
|
15342
15268
|
type: "string"
|
|
15343
15269
|
}
|
|
@@ -15359,12 +15285,12 @@ var openapi_default = {
|
|
|
15359
15285
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be set on a device.",
|
|
15360
15286
|
properties: {
|
|
15361
15287
|
access_code_id: {
|
|
15362
|
-
description: "ID of the
|
|
15288
|
+
description: "ID of the affected access code.",
|
|
15363
15289
|
format: "uuid",
|
|
15364
15290
|
type: "string"
|
|
15365
15291
|
},
|
|
15366
15292
|
connected_account_id: {
|
|
15367
|
-
description: "ID of the
|
|
15293
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15368
15294
|
format: "uuid",
|
|
15369
15295
|
type: "string"
|
|
15370
15296
|
},
|
|
@@ -15374,7 +15300,7 @@ var openapi_default = {
|
|
|
15374
15300
|
type: "string"
|
|
15375
15301
|
},
|
|
15376
15302
|
device_id: {
|
|
15377
|
-
description: "ID of the
|
|
15303
|
+
description: "ID of the device associated with the affected access code.",
|
|
15378
15304
|
format: "uuid",
|
|
15379
15305
|
type: "string"
|
|
15380
15306
|
},
|
|
@@ -15393,7 +15319,7 @@ var openapi_default = {
|
|
|
15393
15319
|
type: "string"
|
|
15394
15320
|
},
|
|
15395
15321
|
workspace_id: {
|
|
15396
|
-
description: "ID of the
|
|
15322
|
+
description: "ID of the workspace associated with the event.",
|
|
15397
15323
|
format: "uuid",
|
|
15398
15324
|
type: "string"
|
|
15399
15325
|
}
|
|
@@ -15415,17 +15341,17 @@ var openapi_default = {
|
|
|
15415
15341
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted.",
|
|
15416
15342
|
properties: {
|
|
15417
15343
|
access_code_id: {
|
|
15418
|
-
description: "ID of the
|
|
15344
|
+
description: "ID of the affected access code.",
|
|
15419
15345
|
format: "uuid",
|
|
15420
15346
|
type: "string"
|
|
15421
15347
|
},
|
|
15422
15348
|
code: {
|
|
15423
|
-
description: "Code for the
|
|
15349
|
+
description: "Code for the affected access code.",
|
|
15424
15350
|
nullable: true,
|
|
15425
15351
|
type: "string"
|
|
15426
15352
|
},
|
|
15427
15353
|
connected_account_id: {
|
|
15428
|
-
description: "ID of the
|
|
15354
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15429
15355
|
format: "uuid",
|
|
15430
15356
|
type: "string"
|
|
15431
15357
|
},
|
|
@@ -15435,7 +15361,7 @@ var openapi_default = {
|
|
|
15435
15361
|
type: "string"
|
|
15436
15362
|
},
|
|
15437
15363
|
device_id: {
|
|
15438
|
-
description: "ID of the
|
|
15364
|
+
description: "ID of the device associated with the affected access code.",
|
|
15439
15365
|
format: "uuid",
|
|
15440
15366
|
type: "string"
|
|
15441
15367
|
},
|
|
@@ -15451,7 +15377,7 @@ var openapi_default = {
|
|
|
15451
15377
|
type: "string"
|
|
15452
15378
|
},
|
|
15453
15379
|
workspace_id: {
|
|
15454
|
-
description: "ID of the
|
|
15380
|
+
description: "ID of the workspace associated with the event.",
|
|
15455
15381
|
format: "uuid",
|
|
15456
15382
|
type: "string"
|
|
15457
15383
|
}
|
|
@@ -15474,12 +15400,12 @@ var openapi_default = {
|
|
|
15474
15400
|
description: "There was an unusually long delay in removing an [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) from a device.",
|
|
15475
15401
|
properties: {
|
|
15476
15402
|
access_code_id: {
|
|
15477
|
-
description: "ID of the
|
|
15403
|
+
description: "ID of the affected access code.",
|
|
15478
15404
|
format: "uuid",
|
|
15479
15405
|
type: "string"
|
|
15480
15406
|
},
|
|
15481
15407
|
connected_account_id: {
|
|
15482
|
-
description: "ID of the
|
|
15408
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15483
15409
|
format: "uuid",
|
|
15484
15410
|
type: "string"
|
|
15485
15411
|
},
|
|
@@ -15489,7 +15415,7 @@ var openapi_default = {
|
|
|
15489
15415
|
type: "string"
|
|
15490
15416
|
},
|
|
15491
15417
|
device_id: {
|
|
15492
|
-
description: "ID of the
|
|
15418
|
+
description: "ID of the device associated with the affected access code.",
|
|
15493
15419
|
format: "uuid",
|
|
15494
15420
|
type: "string"
|
|
15495
15421
|
},
|
|
@@ -15508,7 +15434,7 @@ var openapi_default = {
|
|
|
15508
15434
|
type: "string"
|
|
15509
15435
|
},
|
|
15510
15436
|
workspace_id: {
|
|
15511
|
-
description: "ID of the
|
|
15437
|
+
description: "ID of the workspace associated with the event.",
|
|
15512
15438
|
format: "uuid",
|
|
15513
15439
|
type: "string"
|
|
15514
15440
|
}
|
|
@@ -15530,12 +15456,12 @@ var openapi_default = {
|
|
|
15530
15456
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) failed to be removed from a device.",
|
|
15531
15457
|
properties: {
|
|
15532
15458
|
access_code_id: {
|
|
15533
|
-
description: "ID of the
|
|
15459
|
+
description: "ID of the affected access code.",
|
|
15534
15460
|
format: "uuid",
|
|
15535
15461
|
type: "string"
|
|
15536
15462
|
},
|
|
15537
15463
|
connected_account_id: {
|
|
15538
|
-
description: "ID of the
|
|
15464
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15539
15465
|
format: "uuid",
|
|
15540
15466
|
type: "string"
|
|
15541
15467
|
},
|
|
@@ -15545,7 +15471,7 @@ var openapi_default = {
|
|
|
15545
15471
|
type: "string"
|
|
15546
15472
|
},
|
|
15547
15473
|
device_id: {
|
|
15548
|
-
description: "ID of the
|
|
15474
|
+
description: "ID of the device associated with the affected access code.",
|
|
15549
15475
|
format: "uuid",
|
|
15550
15476
|
type: "string"
|
|
15551
15477
|
},
|
|
@@ -15564,7 +15490,7 @@ var openapi_default = {
|
|
|
15564
15490
|
type: "string"
|
|
15565
15491
|
},
|
|
15566
15492
|
workspace_id: {
|
|
15567
|
-
description: "ID of the
|
|
15493
|
+
description: "ID of the workspace associated with the event.",
|
|
15568
15494
|
format: "uuid",
|
|
15569
15495
|
type: "string"
|
|
15570
15496
|
}
|
|
@@ -15586,12 +15512,12 @@ var openapi_default = {
|
|
|
15586
15512
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was modified outside of Seam.",
|
|
15587
15513
|
properties: {
|
|
15588
15514
|
access_code_id: {
|
|
15589
|
-
description: "ID of the
|
|
15515
|
+
description: "ID of the affected access code.",
|
|
15590
15516
|
format: "uuid",
|
|
15591
15517
|
type: "string"
|
|
15592
15518
|
},
|
|
15593
15519
|
connected_account_id: {
|
|
15594
|
-
description: "ID of the
|
|
15520
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15595
15521
|
format: "uuid",
|
|
15596
15522
|
type: "string"
|
|
15597
15523
|
},
|
|
@@ -15601,7 +15527,7 @@ var openapi_default = {
|
|
|
15601
15527
|
type: "string"
|
|
15602
15528
|
},
|
|
15603
15529
|
device_id: {
|
|
15604
|
-
description: "ID of the
|
|
15530
|
+
description: "ID of the device associated with the affected access code.",
|
|
15605
15531
|
format: "uuid",
|
|
15606
15532
|
type: "string"
|
|
15607
15533
|
},
|
|
@@ -15620,7 +15546,7 @@ var openapi_default = {
|
|
|
15620
15546
|
type: "string"
|
|
15621
15547
|
},
|
|
15622
15548
|
workspace_id: {
|
|
15623
|
-
description: "ID of the
|
|
15549
|
+
description: "ID of the workspace associated with the event.",
|
|
15624
15550
|
format: "uuid",
|
|
15625
15551
|
type: "string"
|
|
15626
15552
|
}
|
|
@@ -15642,12 +15568,12 @@ var openapi_default = {
|
|
|
15642
15568
|
description: "An [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) was deleted outside of Seam.",
|
|
15643
15569
|
properties: {
|
|
15644
15570
|
access_code_id: {
|
|
15645
|
-
description: "ID of the
|
|
15571
|
+
description: "ID of the affected access code.",
|
|
15646
15572
|
format: "uuid",
|
|
15647
15573
|
type: "string"
|
|
15648
15574
|
},
|
|
15649
15575
|
connected_account_id: {
|
|
15650
|
-
description: "ID of the
|
|
15576
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15651
15577
|
format: "uuid",
|
|
15652
15578
|
type: "string"
|
|
15653
15579
|
},
|
|
@@ -15657,7 +15583,7 @@ var openapi_default = {
|
|
|
15657
15583
|
type: "string"
|
|
15658
15584
|
},
|
|
15659
15585
|
device_id: {
|
|
15660
|
-
description: "ID of the
|
|
15586
|
+
description: "ID of the device associated with the affected access code.",
|
|
15661
15587
|
format: "uuid",
|
|
15662
15588
|
type: "string"
|
|
15663
15589
|
},
|
|
@@ -15676,7 +15602,7 @@ var openapi_default = {
|
|
|
15676
15602
|
type: "string"
|
|
15677
15603
|
},
|
|
15678
15604
|
workspace_id: {
|
|
15679
|
-
description: "ID of the
|
|
15605
|
+
description: "ID of the workspace associated with the event.",
|
|
15680
15606
|
format: "uuid",
|
|
15681
15607
|
type: "string"
|
|
15682
15608
|
}
|
|
@@ -15698,13 +15624,13 @@ var openapi_default = {
|
|
|
15698
15624
|
description: "A [backup access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) was pulled from the backup access code pool and set on a device.",
|
|
15699
15625
|
properties: {
|
|
15700
15626
|
access_code_id: {
|
|
15701
|
-
description: "ID of the
|
|
15627
|
+
description: "ID of the affected access code.",
|
|
15702
15628
|
format: "uuid",
|
|
15703
15629
|
type: "string"
|
|
15704
15630
|
},
|
|
15705
15631
|
backup_access_code_id: { type: "string" },
|
|
15706
15632
|
connected_account_id: {
|
|
15707
|
-
description: "ID of the
|
|
15633
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15708
15634
|
format: "uuid",
|
|
15709
15635
|
type: "string"
|
|
15710
15636
|
},
|
|
@@ -15714,7 +15640,7 @@ var openapi_default = {
|
|
|
15714
15640
|
type: "string"
|
|
15715
15641
|
},
|
|
15716
15642
|
device_id: {
|
|
15717
|
-
description: "ID of the
|
|
15643
|
+
description: "ID of the device associated with the affected access code.",
|
|
15718
15644
|
format: "uuid",
|
|
15719
15645
|
type: "string"
|
|
15720
15646
|
},
|
|
@@ -15733,7 +15659,7 @@ var openapi_default = {
|
|
|
15733
15659
|
type: "string"
|
|
15734
15660
|
},
|
|
15735
15661
|
workspace_id: {
|
|
15736
|
-
description: "ID of the
|
|
15662
|
+
description: "ID of the workspace associated with the event.",
|
|
15737
15663
|
format: "uuid",
|
|
15738
15664
|
type: "string"
|
|
15739
15665
|
}
|
|
@@ -15756,12 +15682,12 @@ var openapi_default = {
|
|
|
15756
15682
|
description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was converted successfully to a managed access code.",
|
|
15757
15683
|
properties: {
|
|
15758
15684
|
access_code_id: {
|
|
15759
|
-
description: "ID of the
|
|
15685
|
+
description: "ID of the affected access code.",
|
|
15760
15686
|
format: "uuid",
|
|
15761
15687
|
type: "string"
|
|
15762
15688
|
},
|
|
15763
15689
|
connected_account_id: {
|
|
15764
|
-
description: "ID of the
|
|
15690
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15765
15691
|
format: "uuid",
|
|
15766
15692
|
type: "string"
|
|
15767
15693
|
},
|
|
@@ -15771,7 +15697,7 @@ var openapi_default = {
|
|
|
15771
15697
|
type: "string"
|
|
15772
15698
|
},
|
|
15773
15699
|
device_id: {
|
|
15774
|
-
description: "ID of the
|
|
15700
|
+
description: "ID of the device associated with the affected access code.",
|
|
15775
15701
|
format: "uuid",
|
|
15776
15702
|
type: "string"
|
|
15777
15703
|
},
|
|
@@ -15790,7 +15716,7 @@ var openapi_default = {
|
|
|
15790
15716
|
type: "string"
|
|
15791
15717
|
},
|
|
15792
15718
|
workspace_id: {
|
|
15793
|
-
description: "ID of the
|
|
15719
|
+
description: "ID of the workspace associated with the event.",
|
|
15794
15720
|
format: "uuid",
|
|
15795
15721
|
type: "string"
|
|
15796
15722
|
}
|
|
@@ -15812,12 +15738,12 @@ var openapi_default = {
|
|
|
15812
15738
|
description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) failed to be converted to a managed access code.",
|
|
15813
15739
|
properties: {
|
|
15814
15740
|
access_code_id: {
|
|
15815
|
-
description: "ID of the
|
|
15741
|
+
description: "ID of the affected access code.",
|
|
15816
15742
|
format: "uuid",
|
|
15817
15743
|
type: "string"
|
|
15818
15744
|
},
|
|
15819
15745
|
connected_account_id: {
|
|
15820
|
-
description: "ID of the
|
|
15746
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15821
15747
|
format: "uuid",
|
|
15822
15748
|
type: "string"
|
|
15823
15749
|
},
|
|
@@ -15827,7 +15753,7 @@ var openapi_default = {
|
|
|
15827
15753
|
type: "string"
|
|
15828
15754
|
},
|
|
15829
15755
|
device_id: {
|
|
15830
|
-
description: "ID of the
|
|
15756
|
+
description: "ID of the device associated with the affected access code.",
|
|
15831
15757
|
format: "uuid",
|
|
15832
15758
|
type: "string"
|
|
15833
15759
|
},
|
|
@@ -15846,7 +15772,7 @@ var openapi_default = {
|
|
|
15846
15772
|
type: "string"
|
|
15847
15773
|
},
|
|
15848
15774
|
workspace_id: {
|
|
15849
|
-
description: "ID of the
|
|
15775
|
+
description: "ID of the workspace associated with the event.",
|
|
15850
15776
|
format: "uuid",
|
|
15851
15777
|
type: "string"
|
|
15852
15778
|
}
|
|
@@ -15868,12 +15794,12 @@ var openapi_default = {
|
|
|
15868
15794
|
description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was created on a device.",
|
|
15869
15795
|
properties: {
|
|
15870
15796
|
access_code_id: {
|
|
15871
|
-
description: "ID of the
|
|
15797
|
+
description: "ID of the affected access code.",
|
|
15872
15798
|
format: "uuid",
|
|
15873
15799
|
type: "string"
|
|
15874
15800
|
},
|
|
15875
15801
|
connected_account_id: {
|
|
15876
|
-
description: "ID of the
|
|
15802
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15877
15803
|
format: "uuid",
|
|
15878
15804
|
type: "string"
|
|
15879
15805
|
},
|
|
@@ -15883,7 +15809,7 @@ var openapi_default = {
|
|
|
15883
15809
|
type: "string"
|
|
15884
15810
|
},
|
|
15885
15811
|
device_id: {
|
|
15886
|
-
description: "ID of the
|
|
15812
|
+
description: "ID of the device associated with the affected access code.",
|
|
15887
15813
|
format: "uuid",
|
|
15888
15814
|
type: "string"
|
|
15889
15815
|
},
|
|
@@ -15902,7 +15828,7 @@ var openapi_default = {
|
|
|
15902
15828
|
type: "string"
|
|
15903
15829
|
},
|
|
15904
15830
|
workspace_id: {
|
|
15905
|
-
description: "ID of the
|
|
15831
|
+
description: "ID of the workspace associated with the event.",
|
|
15906
15832
|
format: "uuid",
|
|
15907
15833
|
type: "string"
|
|
15908
15834
|
}
|
|
@@ -15924,12 +15850,12 @@ var openapi_default = {
|
|
|
15924
15850
|
description: "An [unmanaged access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/migrating-existing-access-codes) was removed from a device.",
|
|
15925
15851
|
properties: {
|
|
15926
15852
|
access_code_id: {
|
|
15927
|
-
description: "ID of the
|
|
15853
|
+
description: "ID of the affected access code.",
|
|
15928
15854
|
format: "uuid",
|
|
15929
15855
|
type: "string"
|
|
15930
15856
|
},
|
|
15931
15857
|
connected_account_id: {
|
|
15932
|
-
description: "ID of the
|
|
15858
|
+
description: "ID of the connected account associated with the affected access codes.",
|
|
15933
15859
|
format: "uuid",
|
|
15934
15860
|
type: "string"
|
|
15935
15861
|
},
|
|
@@ -15939,7 +15865,7 @@ var openapi_default = {
|
|
|
15939
15865
|
type: "string"
|
|
15940
15866
|
},
|
|
15941
15867
|
device_id: {
|
|
15942
|
-
description: "ID of the
|
|
15868
|
+
description: "ID of the device associated with the affected access code.",
|
|
15943
15869
|
format: "uuid",
|
|
15944
15870
|
type: "string"
|
|
15945
15871
|
},
|
|
@@ -15958,7 +15884,7 @@ var openapi_default = {
|
|
|
15958
15884
|
type: "string"
|
|
15959
15885
|
},
|
|
15960
15886
|
workspace_id: {
|
|
15961
|
-
description: "ID of the
|
|
15887
|
+
description: "ID of the workspace associated with the event.",
|
|
15962
15888
|
format: "uuid",
|
|
15963
15889
|
type: "string"
|
|
15964
15890
|
}
|
|
@@ -15980,7 +15906,7 @@ var openapi_default = {
|
|
|
15980
15906
|
description: "An access grant was created.",
|
|
15981
15907
|
properties: {
|
|
15982
15908
|
access_grant_id: {
|
|
15983
|
-
description: "ID of the access grant.",
|
|
15909
|
+
description: "ID of the affected access grant.",
|
|
15984
15910
|
format: "uuid",
|
|
15985
15911
|
type: "string"
|
|
15986
15912
|
},
|
|
@@ -16001,7 +15927,7 @@ var openapi_default = {
|
|
|
16001
15927
|
type: "string"
|
|
16002
15928
|
},
|
|
16003
15929
|
workspace_id: {
|
|
16004
|
-
description: "ID of the
|
|
15930
|
+
description: "ID of the workspace associated with the event.",
|
|
16005
15931
|
format: "uuid",
|
|
16006
15932
|
type: "string"
|
|
16007
15933
|
}
|
|
@@ -16021,7 +15947,7 @@ var openapi_default = {
|
|
|
16021
15947
|
description: "An access grant was deleted.",
|
|
16022
15948
|
properties: {
|
|
16023
15949
|
access_grant_id: {
|
|
16024
|
-
description: "ID of the access grant.",
|
|
15950
|
+
description: "ID of the affected access grant.",
|
|
16025
15951
|
format: "uuid",
|
|
16026
15952
|
type: "string"
|
|
16027
15953
|
},
|
|
@@ -16042,7 +15968,7 @@ var openapi_default = {
|
|
|
16042
15968
|
type: "string"
|
|
16043
15969
|
},
|
|
16044
15970
|
workspace_id: {
|
|
16045
|
-
description: "ID of the
|
|
15971
|
+
description: "ID of the workspace associated with the event.",
|
|
16046
15972
|
format: "uuid",
|
|
16047
15973
|
type: "string"
|
|
16048
15974
|
}
|
|
@@ -16062,7 +15988,7 @@ var openapi_default = {
|
|
|
16062
15988
|
description: "All access requested for an access grant was successfully granted.",
|
|
16063
15989
|
properties: {
|
|
16064
15990
|
access_grant_id: {
|
|
16065
|
-
description: "ID of the access grant.",
|
|
15991
|
+
description: "ID of the affected access grant.",
|
|
16066
15992
|
format: "uuid",
|
|
16067
15993
|
type: "string"
|
|
16068
15994
|
},
|
|
@@ -16086,7 +16012,7 @@ var openapi_default = {
|
|
|
16086
16012
|
type: "string"
|
|
16087
16013
|
},
|
|
16088
16014
|
workspace_id: {
|
|
16089
|
-
description: "ID of the
|
|
16015
|
+
description: "ID of the workspace associated with the event.",
|
|
16090
16016
|
format: "uuid",
|
|
16091
16017
|
type: "string"
|
|
16092
16018
|
}
|
|
@@ -16106,12 +16032,12 @@ var openapi_default = {
|
|
|
16106
16032
|
description: "Access requested as part of an access grant to a particular door was successfully granted.",
|
|
16107
16033
|
properties: {
|
|
16108
16034
|
access_grant_id: {
|
|
16109
|
-
description: "ID of the access grant.",
|
|
16035
|
+
description: "ID of the affected access grant.",
|
|
16110
16036
|
format: "uuid",
|
|
16111
16037
|
type: "string"
|
|
16112
16038
|
},
|
|
16113
16039
|
acs_entrance_id: {
|
|
16114
|
-
description: "ID of the
|
|
16040
|
+
description: "ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details).",
|
|
16115
16041
|
format: "uuid",
|
|
16116
16042
|
type: "string"
|
|
16117
16043
|
},
|
|
@@ -16135,7 +16061,7 @@ var openapi_default = {
|
|
|
16135
16061
|
type: "string"
|
|
16136
16062
|
},
|
|
16137
16063
|
workspace_id: {
|
|
16138
|
-
description: "ID of the
|
|
16064
|
+
description: "ID of the workspace associated with the event.",
|
|
16139
16065
|
format: "uuid",
|
|
16140
16066
|
type: "string"
|
|
16141
16067
|
}
|
|
@@ -16156,12 +16082,12 @@ var openapi_default = {
|
|
|
16156
16082
|
description: "Access to a particular door that was requested as part of an access grant was lost.",
|
|
16157
16083
|
properties: {
|
|
16158
16084
|
access_grant_id: {
|
|
16159
|
-
description: "ID of the access grant.",
|
|
16085
|
+
description: "ID of the affected access grant.",
|
|
16160
16086
|
format: "uuid",
|
|
16161
16087
|
type: "string"
|
|
16162
16088
|
},
|
|
16163
16089
|
acs_entrance_id: {
|
|
16164
|
-
description: "ID of the
|
|
16090
|
+
description: "ID of the affected [entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details).",
|
|
16165
16091
|
format: "uuid",
|
|
16166
16092
|
type: "string"
|
|
16167
16093
|
},
|
|
@@ -16185,7 +16111,7 @@ var openapi_default = {
|
|
|
16185
16111
|
type: "string"
|
|
16186
16112
|
},
|
|
16187
16113
|
workspace_id: {
|
|
16188
|
-
description: "ID of the
|
|
16114
|
+
description: "ID of the workspace associated with the event.",
|
|
16189
16115
|
format: "uuid",
|
|
16190
16116
|
type: "string"
|
|
16191
16117
|
}
|
|
@@ -16206,7 +16132,7 @@ var openapi_default = {
|
|
|
16206
16132
|
description: "An access method was issued.",
|
|
16207
16133
|
properties: {
|
|
16208
16134
|
access_method_id: {
|
|
16209
|
-
description: "ID of the access method.",
|
|
16135
|
+
description: "ID of the affected access method.",
|
|
16210
16136
|
format: "uuid",
|
|
16211
16137
|
type: "string"
|
|
16212
16138
|
},
|
|
@@ -16227,7 +16153,7 @@ var openapi_default = {
|
|
|
16227
16153
|
type: "string"
|
|
16228
16154
|
},
|
|
16229
16155
|
workspace_id: {
|
|
16230
|
-
description: "ID of the
|
|
16156
|
+
description: "ID of the workspace associated with the event.",
|
|
16231
16157
|
format: "uuid",
|
|
16232
16158
|
type: "string"
|
|
16233
16159
|
}
|
|
@@ -16247,7 +16173,7 @@ var openapi_default = {
|
|
|
16247
16173
|
description: "An access method was revoked.",
|
|
16248
16174
|
properties: {
|
|
16249
16175
|
access_method_id: {
|
|
16250
|
-
description: "ID of the access method.",
|
|
16176
|
+
description: "ID of the affected access method.",
|
|
16251
16177
|
format: "uuid",
|
|
16252
16178
|
type: "string"
|
|
16253
16179
|
},
|
|
@@ -16268,7 +16194,7 @@ var openapi_default = {
|
|
|
16268
16194
|
type: "string"
|
|
16269
16195
|
},
|
|
16270
16196
|
workspace_id: {
|
|
16271
|
-
description: "ID of the
|
|
16197
|
+
description: "ID of the workspace associated with the event.",
|
|
16272
16198
|
format: "uuid",
|
|
16273
16199
|
type: "string"
|
|
16274
16200
|
}
|
|
@@ -16288,7 +16214,7 @@ var openapi_default = {
|
|
|
16288
16214
|
description: "An access method representing a physical card requires encoding.",
|
|
16289
16215
|
properties: {
|
|
16290
16216
|
access_method_id: {
|
|
16291
|
-
description: "ID of the access method.",
|
|
16217
|
+
description: "ID of the affected access method.",
|
|
16292
16218
|
format: "uuid",
|
|
16293
16219
|
type: "string"
|
|
16294
16220
|
},
|
|
@@ -16312,7 +16238,7 @@ var openapi_default = {
|
|
|
16312
16238
|
type: "string"
|
|
16313
16239
|
},
|
|
16314
16240
|
workspace_id: {
|
|
16315
|
-
description: "ID of the
|
|
16241
|
+
description: "ID of the workspace associated with the event.",
|
|
16316
16242
|
format: "uuid",
|
|
16317
16243
|
type: "string"
|
|
16318
16244
|
}
|
|
@@ -16329,15 +16255,15 @@ var openapi_default = {
|
|
|
16329
16255
|
"x-route-path": "/unstable_access_methods"
|
|
16330
16256
|
},
|
|
16331
16257
|
{
|
|
16332
|
-
description: "An [
|
|
16258
|
+
description: "An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was connected.",
|
|
16333
16259
|
properties: {
|
|
16334
16260
|
acs_system_id: {
|
|
16335
|
-
description: "ID of the
|
|
16261
|
+
description: "ID of the access system.",
|
|
16336
16262
|
format: "uuid",
|
|
16337
16263
|
type: "string"
|
|
16338
16264
|
},
|
|
16339
16265
|
connected_account_id: {
|
|
16340
|
-
description: "ID of the
|
|
16266
|
+
description: "ID of the connected account.",
|
|
16341
16267
|
format: "uuid",
|
|
16342
16268
|
type: "string"
|
|
16343
16269
|
},
|
|
@@ -16358,7 +16284,7 @@ var openapi_default = {
|
|
|
16358
16284
|
type: "string"
|
|
16359
16285
|
},
|
|
16360
16286
|
workspace_id: {
|
|
16361
|
-
description: "ID of the
|
|
16287
|
+
description: "ID of the workspace associated with the event.",
|
|
16362
16288
|
format: "uuid",
|
|
16363
16289
|
type: "string"
|
|
16364
16290
|
}
|
|
@@ -16375,15 +16301,15 @@ var openapi_default = {
|
|
|
16375
16301
|
"x-route-path": "/acs/systems"
|
|
16376
16302
|
},
|
|
16377
16303
|
{
|
|
16378
|
-
description: "An [
|
|
16304
|
+
description: "An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was added.",
|
|
16379
16305
|
properties: {
|
|
16380
16306
|
acs_system_id: {
|
|
16381
|
-
description: "ID of the
|
|
16307
|
+
description: "ID of the access system.",
|
|
16382
16308
|
format: "uuid",
|
|
16383
16309
|
type: "string"
|
|
16384
16310
|
},
|
|
16385
16311
|
connected_account_id: {
|
|
16386
|
-
description: "ID of the
|
|
16312
|
+
description: "ID of the connected account.",
|
|
16387
16313
|
format: "uuid",
|
|
16388
16314
|
type: "string"
|
|
16389
16315
|
},
|
|
@@ -16404,7 +16330,7 @@ var openapi_default = {
|
|
|
16404
16330
|
type: "string"
|
|
16405
16331
|
},
|
|
16406
16332
|
workspace_id: {
|
|
16407
|
-
description: "ID of the
|
|
16333
|
+
description: "ID of the workspace associated with the event.",
|
|
16408
16334
|
format: "uuid",
|
|
16409
16335
|
type: "string"
|
|
16410
16336
|
}
|
|
@@ -16421,15 +16347,15 @@ var openapi_default = {
|
|
|
16421
16347
|
"x-route-path": "/acs/systems"
|
|
16422
16348
|
},
|
|
16423
16349
|
{
|
|
16424
|
-
description: "An [
|
|
16350
|
+
description: "An [access system](https://docs.seam.co/latest/capability-guides/access-systems) was disconnected.",
|
|
16425
16351
|
properties: {
|
|
16426
16352
|
acs_system_id: {
|
|
16427
|
-
description: "ID of the
|
|
16353
|
+
description: "ID of the access system.",
|
|
16428
16354
|
format: "uuid",
|
|
16429
16355
|
type: "string"
|
|
16430
16356
|
},
|
|
16431
16357
|
connected_account_id: {
|
|
16432
|
-
description: "ID of the
|
|
16358
|
+
description: "ID of the connected account.",
|
|
16433
16359
|
format: "uuid",
|
|
16434
16360
|
type: "string"
|
|
16435
16361
|
},
|
|
@@ -16450,7 +16376,7 @@ var openapi_default = {
|
|
|
16450
16376
|
type: "string"
|
|
16451
16377
|
},
|
|
16452
16378
|
workspace_id: {
|
|
16453
|
-
description: "ID of the
|
|
16379
|
+
description: "ID of the workspace associated with the event.",
|
|
16454
16380
|
format: "uuid",
|
|
16455
16381
|
type: "string"
|
|
16456
16382
|
}
|
|
@@ -16469,14 +16395,18 @@ var openapi_default = {
|
|
|
16469
16395
|
{
|
|
16470
16396
|
description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was deleted.",
|
|
16471
16397
|
properties: {
|
|
16472
|
-
acs_credential_id: {
|
|
16398
|
+
acs_credential_id: {
|
|
16399
|
+
description: "ID of the affected credential.",
|
|
16400
|
+
format: "uuid",
|
|
16401
|
+
type: "string"
|
|
16402
|
+
},
|
|
16473
16403
|
acs_system_id: {
|
|
16474
|
-
description: "ID of the
|
|
16404
|
+
description: "ID of the access system.",
|
|
16475
16405
|
format: "uuid",
|
|
16476
16406
|
type: "string"
|
|
16477
16407
|
},
|
|
16478
16408
|
connected_account_id: {
|
|
16479
|
-
description: "ID of the
|
|
16409
|
+
description: "ID of the connected account.",
|
|
16480
16410
|
format: "uuid",
|
|
16481
16411
|
type: "string"
|
|
16482
16412
|
},
|
|
@@ -16497,7 +16427,7 @@ var openapi_default = {
|
|
|
16497
16427
|
type: "string"
|
|
16498
16428
|
},
|
|
16499
16429
|
workspace_id: {
|
|
16500
|
-
description: "ID of the
|
|
16430
|
+
description: "ID of the workspace associated with the event.",
|
|
16501
16431
|
format: "uuid",
|
|
16502
16432
|
type: "string"
|
|
16503
16433
|
}
|
|
@@ -16517,14 +16447,18 @@ var openapi_default = {
|
|
|
16517
16447
|
{
|
|
16518
16448
|
description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was issued.",
|
|
16519
16449
|
properties: {
|
|
16520
|
-
acs_credential_id: {
|
|
16450
|
+
acs_credential_id: {
|
|
16451
|
+
description: "ID of the affected credential.",
|
|
16452
|
+
format: "uuid",
|
|
16453
|
+
type: "string"
|
|
16454
|
+
},
|
|
16521
16455
|
acs_system_id: {
|
|
16522
|
-
description: "ID of the
|
|
16456
|
+
description: "ID of the access system.",
|
|
16523
16457
|
format: "uuid",
|
|
16524
16458
|
type: "string"
|
|
16525
16459
|
},
|
|
16526
16460
|
connected_account_id: {
|
|
16527
|
-
description: "ID of the
|
|
16461
|
+
description: "ID of the connected account.",
|
|
16528
16462
|
format: "uuid",
|
|
16529
16463
|
type: "string"
|
|
16530
16464
|
},
|
|
@@ -16545,7 +16479,7 @@ var openapi_default = {
|
|
|
16545
16479
|
type: "string"
|
|
16546
16480
|
},
|
|
16547
16481
|
workspace_id: {
|
|
16548
|
-
description: "ID of the
|
|
16482
|
+
description: "ID of the workspace associated with the event.",
|
|
16549
16483
|
format: "uuid",
|
|
16550
16484
|
type: "string"
|
|
16551
16485
|
}
|
|
@@ -16565,14 +16499,18 @@ var openapi_default = {
|
|
|
16565
16499
|
{
|
|
16566
16500
|
description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was reissued.",
|
|
16567
16501
|
properties: {
|
|
16568
|
-
acs_credential_id: {
|
|
16502
|
+
acs_credential_id: {
|
|
16503
|
+
description: "ID of the affected credential.",
|
|
16504
|
+
format: "uuid",
|
|
16505
|
+
type: "string"
|
|
16506
|
+
},
|
|
16569
16507
|
acs_system_id: {
|
|
16570
|
-
description: "ID of the
|
|
16508
|
+
description: "ID of the access system.",
|
|
16571
16509
|
format: "uuid",
|
|
16572
16510
|
type: "string"
|
|
16573
16511
|
},
|
|
16574
16512
|
connected_account_id: {
|
|
16575
|
-
description: "ID of the
|
|
16513
|
+
description: "ID of the connected account.",
|
|
16576
16514
|
format: "uuid",
|
|
16577
16515
|
type: "string"
|
|
16578
16516
|
},
|
|
@@ -16593,7 +16531,7 @@ var openapi_default = {
|
|
|
16593
16531
|
type: "string"
|
|
16594
16532
|
},
|
|
16595
16533
|
workspace_id: {
|
|
16596
|
-
description: "ID of the
|
|
16534
|
+
description: "ID of the workspace associated with the event.",
|
|
16597
16535
|
format: "uuid",
|
|
16598
16536
|
type: "string"
|
|
16599
16537
|
}
|
|
@@ -16613,14 +16551,18 @@ var openapi_default = {
|
|
|
16613
16551
|
{
|
|
16614
16552
|
description: "An [ACS credential](https://docs.seam.co/latest/capability-guides/access-systems/managing-credentials) was invalidated. That is, the credential cannot be used anymore.",
|
|
16615
16553
|
properties: {
|
|
16616
|
-
acs_credential_id: {
|
|
16554
|
+
acs_credential_id: {
|
|
16555
|
+
description: "ID of the affected credential.",
|
|
16556
|
+
format: "uuid",
|
|
16557
|
+
type: "string"
|
|
16558
|
+
},
|
|
16617
16559
|
acs_system_id: {
|
|
16618
|
-
description: "ID of the
|
|
16560
|
+
description: "ID of the access system.",
|
|
16619
16561
|
format: "uuid",
|
|
16620
16562
|
type: "string"
|
|
16621
16563
|
},
|
|
16622
16564
|
connected_account_id: {
|
|
16623
|
-
description: "ID of the
|
|
16565
|
+
description: "ID of the connected account.",
|
|
16624
16566
|
format: "uuid",
|
|
16625
16567
|
type: "string"
|
|
16626
16568
|
},
|
|
@@ -16644,7 +16586,7 @@ var openapi_default = {
|
|
|
16644
16586
|
type: "string"
|
|
16645
16587
|
},
|
|
16646
16588
|
workspace_id: {
|
|
16647
|
-
description: "ID of the
|
|
16589
|
+
description: "ID of the workspace associated with the event.",
|
|
16648
16590
|
format: "uuid",
|
|
16649
16591
|
type: "string"
|
|
16650
16592
|
}
|
|
@@ -16662,16 +16604,16 @@ var openapi_default = {
|
|
|
16662
16604
|
"x-route-path": "/acs/credentials"
|
|
16663
16605
|
},
|
|
16664
16606
|
{
|
|
16665
|
-
description: "An [
|
|
16607
|
+
description: "An [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was created.",
|
|
16666
16608
|
properties: {
|
|
16667
16609
|
acs_system_id: {
|
|
16668
|
-
description: "ID of the
|
|
16610
|
+
description: "ID of the access system.",
|
|
16669
16611
|
format: "uuid",
|
|
16670
16612
|
type: "string"
|
|
16671
16613
|
},
|
|
16672
16614
|
acs_user_id: { format: "uuid", type: "string" },
|
|
16673
16615
|
connected_account_id: {
|
|
16674
|
-
description: "ID of the
|
|
16616
|
+
description: "ID of the connected account.",
|
|
16675
16617
|
format: "uuid",
|
|
16676
16618
|
type: "string"
|
|
16677
16619
|
},
|
|
@@ -16692,7 +16634,7 @@ var openapi_default = {
|
|
|
16692
16634
|
type: "string"
|
|
16693
16635
|
},
|
|
16694
16636
|
workspace_id: {
|
|
16695
|
-
description: "ID of the
|
|
16637
|
+
description: "ID of the workspace associated with the event.",
|
|
16696
16638
|
format: "uuid",
|
|
16697
16639
|
type: "string"
|
|
16698
16640
|
}
|
|
@@ -16710,16 +16652,16 @@ var openapi_default = {
|
|
|
16710
16652
|
"x-route-path": "/acs/users"
|
|
16711
16653
|
},
|
|
16712
16654
|
{
|
|
16713
|
-
description: "An [
|
|
16655
|
+
description: "An [access system user](https://docs.seam.co/latest/capability-guides/access-systems/user-management) was deleted.",
|
|
16714
16656
|
properties: {
|
|
16715
16657
|
acs_system_id: {
|
|
16716
|
-
description: "ID of the
|
|
16658
|
+
description: "ID of the access system.",
|
|
16717
16659
|
format: "uuid",
|
|
16718
16660
|
type: "string"
|
|
16719
16661
|
},
|
|
16720
16662
|
acs_user_id: { format: "uuid", type: "string" },
|
|
16721
16663
|
connected_account_id: {
|
|
16722
|
-
description: "ID of the
|
|
16664
|
+
description: "ID of the connected account.",
|
|
16723
16665
|
format: "uuid",
|
|
16724
16666
|
type: "string"
|
|
16725
16667
|
},
|
|
@@ -16740,7 +16682,7 @@ var openapi_default = {
|
|
|
16740
16682
|
type: "string"
|
|
16741
16683
|
},
|
|
16742
16684
|
workspace_id: {
|
|
16743
|
-
description: "ID of the
|
|
16685
|
+
description: "ID of the workspace associated with the event.",
|
|
16744
16686
|
format: "uuid",
|
|
16745
16687
|
type: "string"
|
|
16746
16688
|
}
|
|
@@ -16761,17 +16703,17 @@ var openapi_default = {
|
|
|
16761
16703
|
description: "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was added.",
|
|
16762
16704
|
properties: {
|
|
16763
16705
|
acs_encoder_id: {
|
|
16764
|
-
description: "ID of the
|
|
16706
|
+
description: "ID of the affected encoder.",
|
|
16765
16707
|
format: "uuid",
|
|
16766
16708
|
type: "string"
|
|
16767
16709
|
},
|
|
16768
16710
|
acs_system_id: {
|
|
16769
|
-
description: "ID of the
|
|
16711
|
+
description: "ID of the access system.",
|
|
16770
16712
|
format: "uuid",
|
|
16771
16713
|
type: "string"
|
|
16772
16714
|
},
|
|
16773
16715
|
connected_account_id: {
|
|
16774
|
-
description: "ID of the
|
|
16716
|
+
description: "ID of the connected account.",
|
|
16775
16717
|
format: "uuid",
|
|
16776
16718
|
type: "string"
|
|
16777
16719
|
},
|
|
@@ -16792,7 +16734,7 @@ var openapi_default = {
|
|
|
16792
16734
|
type: "string"
|
|
16793
16735
|
},
|
|
16794
16736
|
workspace_id: {
|
|
16795
|
-
description: "ID of the
|
|
16737
|
+
description: "ID of the workspace associated with the event.",
|
|
16796
16738
|
format: "uuid",
|
|
16797
16739
|
type: "string"
|
|
16798
16740
|
}
|
|
@@ -16813,17 +16755,17 @@ var openapi_default = {
|
|
|
16813
16755
|
description: "An [ACS encoder](https://docs.seam.co/latest/capability-guides/access-systems/working-with-card-encoders-and-scanners) was removed.",
|
|
16814
16756
|
properties: {
|
|
16815
16757
|
acs_encoder_id: {
|
|
16816
|
-
description: "ID of the
|
|
16758
|
+
description: "ID of the affected encoder.",
|
|
16817
16759
|
format: "uuid",
|
|
16818
16760
|
type: "string"
|
|
16819
16761
|
},
|
|
16820
16762
|
acs_system_id: {
|
|
16821
|
-
description: "ID of the
|
|
16763
|
+
description: "ID of the access system.",
|
|
16822
16764
|
format: "uuid",
|
|
16823
16765
|
type: "string"
|
|
16824
16766
|
},
|
|
16825
16767
|
connected_account_id: {
|
|
16826
|
-
description: "ID of the
|
|
16768
|
+
description: "ID of the connected account.",
|
|
16827
16769
|
format: "uuid",
|
|
16828
16770
|
type: "string"
|
|
16829
16771
|
},
|
|
@@ -16844,7 +16786,7 @@ var openapi_default = {
|
|
|
16844
16786
|
type: "string"
|
|
16845
16787
|
},
|
|
16846
16788
|
workspace_id: {
|
|
16847
|
-
description: "ID of the
|
|
16789
|
+
description: "ID of the workspace associated with the event.",
|
|
16848
16790
|
format: "uuid",
|
|
16849
16791
|
type: "string"
|
|
16850
16792
|
}
|
|
@@ -16864,14 +16806,18 @@ var openapi_default = {
|
|
|
16864
16806
|
{
|
|
16865
16807
|
description: "An ACS access group was deleted.",
|
|
16866
16808
|
properties: {
|
|
16867
|
-
acs_access_group_id: {
|
|
16809
|
+
acs_access_group_id: {
|
|
16810
|
+
description: "ID of the affected access group.",
|
|
16811
|
+
format: "uuid",
|
|
16812
|
+
type: "string"
|
|
16813
|
+
},
|
|
16868
16814
|
acs_system_id: {
|
|
16869
|
-
description: "ID of the
|
|
16815
|
+
description: "ID of the access system.",
|
|
16870
16816
|
format: "uuid",
|
|
16871
16817
|
type: "string"
|
|
16872
16818
|
},
|
|
16873
16819
|
connected_account_id: {
|
|
16874
|
-
description: "ID of the
|
|
16820
|
+
description: "ID of the connected account.",
|
|
16875
16821
|
format: "uuid",
|
|
16876
16822
|
type: "string"
|
|
16877
16823
|
},
|
|
@@ -16895,7 +16841,7 @@ var openapi_default = {
|
|
|
16895
16841
|
type: "string"
|
|
16896
16842
|
},
|
|
16897
16843
|
workspace_id: {
|
|
16898
|
-
description: "ID of the
|
|
16844
|
+
description: "ID of the workspace associated with the event.",
|
|
16899
16845
|
format: "uuid",
|
|
16900
16846
|
type: "string"
|
|
16901
16847
|
}
|
|
@@ -16917,12 +16863,12 @@ var openapi_default = {
|
|
|
16917
16863
|
properties: {
|
|
16918
16864
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
16919
16865
|
acs_system_id: {
|
|
16920
|
-
description: "ID of the
|
|
16866
|
+
description: "ID of the access system.",
|
|
16921
16867
|
format: "uuid",
|
|
16922
16868
|
type: "string"
|
|
16923
16869
|
},
|
|
16924
16870
|
connected_account_id: {
|
|
16925
|
-
description: "ID of the
|
|
16871
|
+
description: "ID of the connected account.",
|
|
16926
16872
|
format: "uuid",
|
|
16927
16873
|
type: "string"
|
|
16928
16874
|
},
|
|
@@ -16943,7 +16889,7 @@ var openapi_default = {
|
|
|
16943
16889
|
type: "string"
|
|
16944
16890
|
},
|
|
16945
16891
|
workspace_id: {
|
|
16946
|
-
description: "ID of the
|
|
16892
|
+
description: "ID of the workspace associated with the event.",
|
|
16947
16893
|
format: "uuid",
|
|
16948
16894
|
type: "string"
|
|
16949
16895
|
}
|
|
@@ -16965,12 +16911,12 @@ var openapi_default = {
|
|
|
16965
16911
|
properties: {
|
|
16966
16912
|
acs_entrance_id: { format: "uuid", type: "string" },
|
|
16967
16913
|
acs_system_id: {
|
|
16968
|
-
description: "ID of the
|
|
16914
|
+
description: "ID of the access system.",
|
|
16969
16915
|
format: "uuid",
|
|
16970
16916
|
type: "string"
|
|
16971
16917
|
},
|
|
16972
16918
|
connected_account_id: {
|
|
16973
|
-
description: "ID of the
|
|
16919
|
+
description: "ID of the connected account.",
|
|
16974
16920
|
format: "uuid",
|
|
16975
16921
|
type: "string"
|
|
16976
16922
|
},
|
|
@@ -16991,7 +16937,7 @@ var openapi_default = {
|
|
|
16991
16937
|
type: "string"
|
|
16992
16938
|
},
|
|
16993
16939
|
workspace_id: {
|
|
16994
|
-
description: "ID of the
|
|
16940
|
+
description: "ID of the workspace associated with the event.",
|
|
16995
16941
|
format: "uuid",
|
|
16996
16942
|
type: "string"
|
|
16997
16943
|
}
|
|
@@ -17012,7 +16958,7 @@ var openapi_default = {
|
|
|
17012
16958
|
description: "A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.",
|
|
17013
16959
|
properties: {
|
|
17014
16960
|
client_session_id: {
|
|
17015
|
-
description: "ID of the
|
|
16961
|
+
description: "ID of the affected client session.",
|
|
17016
16962
|
format: "uuid",
|
|
17017
16963
|
type: "string"
|
|
17018
16964
|
},
|
|
@@ -17033,7 +16979,7 @@ var openapi_default = {
|
|
|
17033
16979
|
type: "string"
|
|
17034
16980
|
},
|
|
17035
16981
|
workspace_id: {
|
|
17036
|
-
description: "ID of the
|
|
16982
|
+
description: "ID of the workspace associated with the event.",
|
|
17037
16983
|
format: "uuid",
|
|
17038
16984
|
type: "string"
|
|
17039
16985
|
}
|
|
@@ -17053,12 +16999,12 @@ var openapi_default = {
|
|
|
17053
16999
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was connected for the first time or was reconnected after being disconnected.",
|
|
17054
17000
|
properties: {
|
|
17055
17001
|
connect_webview_id: {
|
|
17056
|
-
description: "ID of the
|
|
17002
|
+
description: "ID of the Connect Webview associated with the event.",
|
|
17057
17003
|
format: "uuid",
|
|
17058
17004
|
type: "string"
|
|
17059
17005
|
},
|
|
17060
17006
|
connected_account_id: {
|
|
17061
|
-
description: "ID of the
|
|
17007
|
+
description: "ID of the affected connected account.",
|
|
17062
17008
|
format: "uuid",
|
|
17063
17009
|
type: "string"
|
|
17064
17010
|
},
|
|
@@ -17082,7 +17028,7 @@ var openapi_default = {
|
|
|
17082
17028
|
type: "string"
|
|
17083
17029
|
},
|
|
17084
17030
|
workspace_id: {
|
|
17085
|
-
description: "ID of the
|
|
17031
|
+
description: "ID of the workspace associated with the event.",
|
|
17086
17032
|
format: "uuid",
|
|
17087
17033
|
type: "string"
|
|
17088
17034
|
}
|
|
@@ -17103,12 +17049,12 @@ var openapi_default = {
|
|
|
17103
17049
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was created.",
|
|
17104
17050
|
properties: {
|
|
17105
17051
|
connect_webview_id: {
|
|
17106
|
-
description: "ID of the
|
|
17052
|
+
description: "ID of the Connect Webview associated with the event.",
|
|
17107
17053
|
format: "uuid",
|
|
17108
17054
|
type: "string"
|
|
17109
17055
|
},
|
|
17110
17056
|
connected_account_id: {
|
|
17111
|
-
description: "ID of the
|
|
17057
|
+
description: "ID of the affected connected account.",
|
|
17112
17058
|
format: "uuid",
|
|
17113
17059
|
type: "string"
|
|
17114
17060
|
},
|
|
@@ -17132,7 +17078,7 @@ var openapi_default = {
|
|
|
17132
17078
|
type: "string"
|
|
17133
17079
|
},
|
|
17134
17080
|
workspace_id: {
|
|
17135
|
-
description: "ID of the
|
|
17081
|
+
description: "ID of the workspace associated with the event.",
|
|
17136
17082
|
format: "uuid",
|
|
17137
17083
|
type: "string"
|
|
17138
17084
|
}
|
|
@@ -17154,12 +17100,12 @@ var openapi_default = {
|
|
|
17154
17100
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) had a successful login using a [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews).",
|
|
17155
17101
|
properties: {
|
|
17156
17102
|
connect_webview_id: {
|
|
17157
|
-
description: "ID of the
|
|
17103
|
+
description: "ID of the Connect Webview associated with the event.",
|
|
17158
17104
|
format: "uuid",
|
|
17159
17105
|
type: "string"
|
|
17160
17106
|
},
|
|
17161
17107
|
connected_account_id: {
|
|
17162
|
-
description: "ID of the
|
|
17108
|
+
description: "ID of the affected connected account.",
|
|
17163
17109
|
format: "uuid",
|
|
17164
17110
|
type: "string"
|
|
17165
17111
|
},
|
|
@@ -17183,7 +17129,7 @@ var openapi_default = {
|
|
|
17183
17129
|
type: "string"
|
|
17184
17130
|
},
|
|
17185
17131
|
workspace_id: {
|
|
17186
|
-
description: "ID of the
|
|
17132
|
+
description: "ID of the workspace associated with the event.",
|
|
17187
17133
|
format: "uuid",
|
|
17188
17134
|
type: "string"
|
|
17189
17135
|
}
|
|
@@ -17205,7 +17151,7 @@ var openapi_default = {
|
|
|
17205
17151
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was disconnected.",
|
|
17206
17152
|
properties: {
|
|
17207
17153
|
connected_account_id: {
|
|
17208
|
-
description: "ID of the
|
|
17154
|
+
description: "ID of the affected connected account.",
|
|
17209
17155
|
format: "uuid",
|
|
17210
17156
|
type: "string"
|
|
17211
17157
|
},
|
|
@@ -17229,7 +17175,7 @@ var openapi_default = {
|
|
|
17229
17175
|
type: "string"
|
|
17230
17176
|
},
|
|
17231
17177
|
workspace_id: {
|
|
17232
|
-
description: "ID of the
|
|
17178
|
+
description: "ID of the workspace associated with the event.",
|
|
17233
17179
|
format: "uuid",
|
|
17234
17180
|
type: "string"
|
|
17235
17181
|
}
|
|
@@ -17249,7 +17195,7 @@ var openapi_default = {
|
|
|
17249
17195
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync with Seam, and the corresponding devices or systems are now available.",
|
|
17250
17196
|
properties: {
|
|
17251
17197
|
connected_account_id: {
|
|
17252
|
-
description: "ID of the
|
|
17198
|
+
description: "ID of the affected connected account.",
|
|
17253
17199
|
format: "uuid",
|
|
17254
17200
|
type: "string"
|
|
17255
17201
|
},
|
|
@@ -17273,7 +17219,7 @@ var openapi_default = {
|
|
|
17273
17219
|
type: "string"
|
|
17274
17220
|
},
|
|
17275
17221
|
workspace_id: {
|
|
17276
|
-
description: "ID of the
|
|
17222
|
+
description: "ID of the workspace associated with the event.",
|
|
17277
17223
|
format: "uuid",
|
|
17278
17224
|
type: "string"
|
|
17279
17225
|
}
|
|
@@ -17293,7 +17239,7 @@ var openapi_default = {
|
|
|
17293
17239
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) was deleted.",
|
|
17294
17240
|
properties: {
|
|
17295
17241
|
connected_account_id: {
|
|
17296
|
-
description: "ID of the
|
|
17242
|
+
description: "ID of the affected connected account.",
|
|
17297
17243
|
format: "uuid",
|
|
17298
17244
|
type: "string"
|
|
17299
17245
|
},
|
|
@@ -17317,7 +17263,7 @@ var openapi_default = {
|
|
|
17317
17263
|
type: "string"
|
|
17318
17264
|
},
|
|
17319
17265
|
workspace_id: {
|
|
17320
|
-
description: "ID of the
|
|
17266
|
+
description: "ID of the workspace associated with the event.",
|
|
17321
17267
|
format: "uuid",
|
|
17322
17268
|
type: "string"
|
|
17323
17269
|
}
|
|
@@ -17337,7 +17283,7 @@ var openapi_default = {
|
|
|
17337
17283
|
description: "A [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts) completed the first sync after reconnection with Seam, and the corresponding devices or systems are now available.",
|
|
17338
17284
|
properties: {
|
|
17339
17285
|
connected_account_id: {
|
|
17340
|
-
description: "ID of the
|
|
17286
|
+
description: "ID of the affected connected account.",
|
|
17341
17287
|
format: "uuid",
|
|
17342
17288
|
type: "string"
|
|
17343
17289
|
},
|
|
@@ -17363,7 +17309,7 @@ var openapi_default = {
|
|
|
17363
17309
|
type: "string"
|
|
17364
17310
|
},
|
|
17365
17311
|
workspace_id: {
|
|
17366
|
-
description: "ID of the
|
|
17312
|
+
description: "ID of the workspace associated with the event.",
|
|
17367
17313
|
format: "uuid",
|
|
17368
17314
|
type: "string"
|
|
17369
17315
|
}
|
|
@@ -17383,11 +17329,14 @@ var openapi_default = {
|
|
|
17383
17329
|
description: "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.",
|
|
17384
17330
|
properties: {
|
|
17385
17331
|
action_attempt_id: {
|
|
17386
|
-
description: "ID of the
|
|
17332
|
+
description: "ID of the affected action attempt.",
|
|
17387
17333
|
format: "uuid",
|
|
17388
17334
|
type: "string"
|
|
17389
17335
|
},
|
|
17390
|
-
action_type: {
|
|
17336
|
+
action_type: {
|
|
17337
|
+
description: "Type of the action.",
|
|
17338
|
+
type: "string"
|
|
17339
|
+
},
|
|
17391
17340
|
created_at: {
|
|
17392
17341
|
description: "Date and time at which the event was created.",
|
|
17393
17342
|
format: "date-time",
|
|
@@ -17409,7 +17358,7 @@ var openapi_default = {
|
|
|
17409
17358
|
},
|
|
17410
17359
|
status: { description: "Status of the action.", type: "string" },
|
|
17411
17360
|
workspace_id: {
|
|
17412
|
-
description: "ID of the
|
|
17361
|
+
description: "ID of the workspace associated with the event.",
|
|
17413
17362
|
format: "uuid",
|
|
17414
17363
|
type: "string"
|
|
17415
17364
|
}
|
|
@@ -17431,11 +17380,14 @@ var openapi_default = {
|
|
|
17431
17380
|
description: "A lock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.",
|
|
17432
17381
|
properties: {
|
|
17433
17382
|
action_attempt_id: {
|
|
17434
|
-
description: "ID of the
|
|
17383
|
+
description: "ID of the affected action attempt.",
|
|
17435
17384
|
format: "uuid",
|
|
17436
17385
|
type: "string"
|
|
17437
17386
|
},
|
|
17438
|
-
action_type: {
|
|
17387
|
+
action_type: {
|
|
17388
|
+
description: "Type of the action.",
|
|
17389
|
+
type: "string"
|
|
17390
|
+
},
|
|
17439
17391
|
created_at: {
|
|
17440
17392
|
description: "Date and time at which the event was created.",
|
|
17441
17393
|
format: "date-time",
|
|
@@ -17457,7 +17409,7 @@ var openapi_default = {
|
|
|
17457
17409
|
},
|
|
17458
17410
|
status: { description: "Status of the action.", type: "string" },
|
|
17459
17411
|
workspace_id: {
|
|
17460
|
-
description: "ID of the
|
|
17412
|
+
description: "ID of the workspace associated with the event.",
|
|
17461
17413
|
format: "uuid",
|
|
17462
17414
|
type: "string"
|
|
17463
17415
|
}
|
|
@@ -17479,11 +17431,14 @@ var openapi_default = {
|
|
|
17479
17431
|
description: "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) succeeded.",
|
|
17480
17432
|
properties: {
|
|
17481
17433
|
action_attempt_id: {
|
|
17482
|
-
description: "ID of the
|
|
17434
|
+
description: "ID of the affected action attempt.",
|
|
17483
17435
|
format: "uuid",
|
|
17484
17436
|
type: "string"
|
|
17485
17437
|
},
|
|
17486
|
-
action_type: {
|
|
17438
|
+
action_type: {
|
|
17439
|
+
description: "Type of the action.",
|
|
17440
|
+
type: "string"
|
|
17441
|
+
},
|
|
17487
17442
|
created_at: {
|
|
17488
17443
|
description: "Date and time at which the event was created.",
|
|
17489
17444
|
format: "date-time",
|
|
@@ -17505,7 +17460,7 @@ var openapi_default = {
|
|
|
17505
17460
|
},
|
|
17506
17461
|
status: { description: "Status of the action.", type: "string" },
|
|
17507
17462
|
workspace_id: {
|
|
17508
|
-
description: "ID of the
|
|
17463
|
+
description: "ID of the workspace associated with the event.",
|
|
17509
17464
|
format: "uuid",
|
|
17510
17465
|
type: "string"
|
|
17511
17466
|
}
|
|
@@ -17527,11 +17482,14 @@ var openapi_default = {
|
|
|
17527
17482
|
description: "An unlock door [action attempt](https://docs.seam.co/latest/core-concepts/action-attempts) failed.",
|
|
17528
17483
|
properties: {
|
|
17529
17484
|
action_attempt_id: {
|
|
17530
|
-
description: "ID of the
|
|
17485
|
+
description: "ID of the affected action attempt.",
|
|
17531
17486
|
format: "uuid",
|
|
17532
17487
|
type: "string"
|
|
17533
17488
|
},
|
|
17534
|
-
action_type: {
|
|
17489
|
+
action_type: {
|
|
17490
|
+
description: "Type of the action.",
|
|
17491
|
+
type: "string"
|
|
17492
|
+
},
|
|
17535
17493
|
created_at: {
|
|
17536
17494
|
description: "Date and time at which the event was created.",
|
|
17537
17495
|
format: "date-time",
|
|
@@ -17553,7 +17511,7 @@ var openapi_default = {
|
|
|
17553
17511
|
},
|
|
17554
17512
|
status: { description: "Status of the action.", type: "string" },
|
|
17555
17513
|
workspace_id: {
|
|
17556
|
-
description: "ID of the
|
|
17514
|
+
description: "ID of the workspace associated with the event.",
|
|
17557
17515
|
format: "uuid",
|
|
17558
17516
|
type: "string"
|
|
17559
17517
|
}
|
|
@@ -17575,12 +17533,12 @@ var openapi_default = {
|
|
|
17575
17533
|
description: "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login succeeded.",
|
|
17576
17534
|
properties: {
|
|
17577
17535
|
connect_webview_id: {
|
|
17578
|
-
description: "ID of the
|
|
17536
|
+
description: "ID of the affected Connect Webview.",
|
|
17579
17537
|
format: "uuid",
|
|
17580
17538
|
type: "string"
|
|
17581
17539
|
},
|
|
17582
17540
|
connected_account_id: {
|
|
17583
|
-
description: "ID of the
|
|
17541
|
+
description: "ID of the connected account associated with the event.",
|
|
17584
17542
|
format: "uuid",
|
|
17585
17543
|
type: "string"
|
|
17586
17544
|
},
|
|
@@ -17604,7 +17562,7 @@ var openapi_default = {
|
|
|
17604
17562
|
type: "string"
|
|
17605
17563
|
},
|
|
17606
17564
|
workspace_id: {
|
|
17607
|
-
description: "ID of the
|
|
17565
|
+
description: "ID of the workspace associated with the event.",
|
|
17608
17566
|
format: "uuid",
|
|
17609
17567
|
type: "string"
|
|
17610
17568
|
}
|
|
@@ -17625,7 +17583,7 @@ var openapi_default = {
|
|
|
17625
17583
|
description: "A [Connect Webview](https://docs.seam.co/latest/ui-components/connect-webviews) login failed.",
|
|
17626
17584
|
properties: {
|
|
17627
17585
|
connect_webview_id: {
|
|
17628
|
-
description: "ID of the
|
|
17586
|
+
description: "ID of the affected Connect Webview.",
|
|
17629
17587
|
format: "uuid",
|
|
17630
17588
|
type: "string"
|
|
17631
17589
|
},
|
|
@@ -17649,7 +17607,7 @@ var openapi_default = {
|
|
|
17649
17607
|
type: "string"
|
|
17650
17608
|
},
|
|
17651
17609
|
workspace_id: {
|
|
17652
|
-
description: "ID of the
|
|
17610
|
+
description: "ID of the workspace associated with the event.",
|
|
17653
17611
|
format: "uuid",
|
|
17654
17612
|
type: "string"
|
|
17655
17613
|
}
|
|
@@ -17669,7 +17627,7 @@ var openapi_default = {
|
|
|
17669
17627
|
description: "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`. Note that some devices operate entirely in offline mode, so Seam never emits a `device.connected` event for these devices.",
|
|
17670
17628
|
properties: {
|
|
17671
17629
|
connected_account_id: {
|
|
17672
|
-
description: "ID of the
|
|
17630
|
+
description: "ID of the connected account associated with the event.",
|
|
17673
17631
|
format: "uuid",
|
|
17674
17632
|
type: "string"
|
|
17675
17633
|
},
|
|
@@ -17679,7 +17637,7 @@ var openapi_default = {
|
|
|
17679
17637
|
type: "string"
|
|
17680
17638
|
},
|
|
17681
17639
|
device_id: {
|
|
17682
|
-
description: "ID of the device.",
|
|
17640
|
+
description: "ID of the affected device.",
|
|
17683
17641
|
format: "uuid",
|
|
17684
17642
|
type: "string"
|
|
17685
17643
|
},
|
|
@@ -17695,7 +17653,7 @@ var openapi_default = {
|
|
|
17695
17653
|
type: "string"
|
|
17696
17654
|
},
|
|
17697
17655
|
workspace_id: {
|
|
17698
|
-
description: "ID of the
|
|
17656
|
+
description: "ID of the workspace associated with the event.",
|
|
17699
17657
|
format: "uuid",
|
|
17700
17658
|
type: "string"
|
|
17701
17659
|
}
|
|
@@ -17716,7 +17674,7 @@ var openapi_default = {
|
|
|
17716
17674
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was added to Seam or was re-added to Seam after having been removed.",
|
|
17717
17675
|
properties: {
|
|
17718
17676
|
connected_account_id: {
|
|
17719
|
-
description: "ID of the
|
|
17677
|
+
description: "ID of the connected account associated with the event.",
|
|
17720
17678
|
format: "uuid",
|
|
17721
17679
|
type: "string"
|
|
17722
17680
|
},
|
|
@@ -17726,7 +17684,7 @@ var openapi_default = {
|
|
|
17726
17684
|
type: "string"
|
|
17727
17685
|
},
|
|
17728
17686
|
device_id: {
|
|
17729
|
-
description: "ID of the device.",
|
|
17687
|
+
description: "ID of the affected device.",
|
|
17730
17688
|
format: "uuid",
|
|
17731
17689
|
type: "string"
|
|
17732
17690
|
},
|
|
@@ -17742,7 +17700,7 @@ var openapi_default = {
|
|
|
17742
17700
|
type: "string"
|
|
17743
17701
|
},
|
|
17744
17702
|
workspace_id: {
|
|
17745
|
-
description: "ID of the
|
|
17703
|
+
description: "ID of the workspace associated with the event.",
|
|
17746
17704
|
format: "uuid",
|
|
17747
17705
|
type: "string"
|
|
17748
17706
|
}
|
|
@@ -17763,7 +17721,7 @@ var openapi_default = {
|
|
|
17763
17721
|
description: "A managed device was successfully converted to an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).",
|
|
17764
17722
|
properties: {
|
|
17765
17723
|
connected_account_id: {
|
|
17766
|
-
description: "ID of the
|
|
17724
|
+
description: "ID of the connected account associated with the event.",
|
|
17767
17725
|
format: "uuid",
|
|
17768
17726
|
type: "string"
|
|
17769
17727
|
},
|
|
@@ -17773,7 +17731,7 @@ var openapi_default = {
|
|
|
17773
17731
|
type: "string"
|
|
17774
17732
|
},
|
|
17775
17733
|
device_id: {
|
|
17776
|
-
description: "ID of the device.",
|
|
17734
|
+
description: "ID of the affected device.",
|
|
17777
17735
|
format: "uuid",
|
|
17778
17736
|
type: "string"
|
|
17779
17737
|
},
|
|
@@ -17792,7 +17750,7 @@ var openapi_default = {
|
|
|
17792
17750
|
type: "string"
|
|
17793
17751
|
},
|
|
17794
17752
|
workspace_id: {
|
|
17795
|
-
description: "ID of the
|
|
17753
|
+
description: "ID of the workspace associated with the event.",
|
|
17796
17754
|
format: "uuid",
|
|
17797
17755
|
type: "string"
|
|
17798
17756
|
}
|
|
@@ -17813,7 +17771,7 @@ var openapi_default = {
|
|
|
17813
17771
|
description: "An [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) was successfully converted to a managed device.",
|
|
17814
17772
|
properties: {
|
|
17815
17773
|
connected_account_id: {
|
|
17816
|
-
description: "ID of the
|
|
17774
|
+
description: "ID of the connected account associated with the event.",
|
|
17817
17775
|
format: "uuid",
|
|
17818
17776
|
type: "string"
|
|
17819
17777
|
},
|
|
@@ -17823,7 +17781,7 @@ var openapi_default = {
|
|
|
17823
17781
|
type: "string"
|
|
17824
17782
|
},
|
|
17825
17783
|
device_id: {
|
|
17826
|
-
description: "ID of the device.",
|
|
17784
|
+
description: "ID of the affected device.",
|
|
17827
17785
|
format: "uuid",
|
|
17828
17786
|
type: "string"
|
|
17829
17787
|
},
|
|
@@ -17842,7 +17800,7 @@ var openapi_default = {
|
|
|
17842
17800
|
type: "string"
|
|
17843
17801
|
},
|
|
17844
17802
|
workspace_id: {
|
|
17845
|
-
description: "ID of the
|
|
17803
|
+
description: "ID of the workspace associated with the event.",
|
|
17846
17804
|
format: "uuid",
|
|
17847
17805
|
type: "string"
|
|
17848
17806
|
}
|
|
@@ -17863,7 +17821,7 @@ var openapi_default = {
|
|
|
17863
17821
|
description: "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from offline to online. That is, the `device.properties.online` property changed from `false` to `true`.",
|
|
17864
17822
|
properties: {
|
|
17865
17823
|
connected_account_id: {
|
|
17866
|
-
description: "ID of the
|
|
17824
|
+
description: "ID of the connected account associated with the event.",
|
|
17867
17825
|
format: "uuid",
|
|
17868
17826
|
type: "string"
|
|
17869
17827
|
},
|
|
@@ -17873,7 +17831,7 @@ var openapi_default = {
|
|
|
17873
17831
|
type: "string"
|
|
17874
17832
|
},
|
|
17875
17833
|
device_id: {
|
|
17876
|
-
description: "ID of the device.",
|
|
17834
|
+
description: "ID of the affected device.",
|
|
17877
17835
|
format: "uuid",
|
|
17878
17836
|
type: "string"
|
|
17879
17837
|
},
|
|
@@ -17892,7 +17850,7 @@ var openapi_default = {
|
|
|
17892
17850
|
type: "string"
|
|
17893
17851
|
},
|
|
17894
17852
|
workspace_id: {
|
|
17895
|
-
description: "ID of the
|
|
17853
|
+
description: "ID of the workspace associated with the event.",
|
|
17896
17854
|
format: "uuid",
|
|
17897
17855
|
type: "string"
|
|
17898
17856
|
}
|
|
@@ -17913,7 +17871,7 @@ var openapi_default = {
|
|
|
17913
17871
|
description: "The status of a [device](https://docs.seam.co/latest/core-concepts/devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.",
|
|
17914
17872
|
properties: {
|
|
17915
17873
|
connected_account_id: {
|
|
17916
|
-
description: "ID of the
|
|
17874
|
+
description: "ID of the connected account associated with the event.",
|
|
17917
17875
|
format: "uuid",
|
|
17918
17876
|
type: "string"
|
|
17919
17877
|
},
|
|
@@ -17923,7 +17881,7 @@ var openapi_default = {
|
|
|
17923
17881
|
type: "string"
|
|
17924
17882
|
},
|
|
17925
17883
|
device_id: {
|
|
17926
|
-
description: "ID of the device.",
|
|
17884
|
+
description: "ID of the affected device.",
|
|
17927
17885
|
format: "uuid",
|
|
17928
17886
|
type: "string"
|
|
17929
17887
|
},
|
|
@@ -17948,7 +17906,7 @@ var openapi_default = {
|
|
|
17948
17906
|
type: "string"
|
|
17949
17907
|
},
|
|
17950
17908
|
workspace_id: {
|
|
17951
|
-
description: "ID of the
|
|
17909
|
+
description: "ID of the workspace associated with the event.",
|
|
17952
17910
|
format: "uuid",
|
|
17953
17911
|
type: "string"
|
|
17954
17912
|
}
|
|
@@ -17970,7 +17928,7 @@ var openapi_default = {
|
|
|
17970
17928
|
description: "The status of an [unmanaged device](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices) changed from online to offline. That is, the `device.properties.online` property changed from `true` to `false`.",
|
|
17971
17929
|
properties: {
|
|
17972
17930
|
connected_account_id: {
|
|
17973
|
-
description: "ID of the
|
|
17931
|
+
description: "ID of the connected account associated with the event.",
|
|
17974
17932
|
format: "uuid",
|
|
17975
17933
|
type: "string"
|
|
17976
17934
|
},
|
|
@@ -17980,7 +17938,7 @@ var openapi_default = {
|
|
|
17980
17938
|
type: "string"
|
|
17981
17939
|
},
|
|
17982
17940
|
device_id: {
|
|
17983
|
-
description: "ID of the device.",
|
|
17941
|
+
description: "ID of the affected device.",
|
|
17984
17942
|
format: "uuid",
|
|
17985
17943
|
type: "string"
|
|
17986
17944
|
},
|
|
@@ -18008,7 +17966,7 @@ var openapi_default = {
|
|
|
18008
17966
|
type: "string"
|
|
18009
17967
|
},
|
|
18010
17968
|
workspace_id: {
|
|
18011
|
-
description: "ID of the
|
|
17969
|
+
description: "ID of the workspace associated with the event.",
|
|
18012
17970
|
format: "uuid",
|
|
18013
17971
|
type: "string"
|
|
18014
17972
|
}
|
|
@@ -18030,7 +17988,7 @@ var openapi_default = {
|
|
|
18030
17988
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) detected that it was tampered with, for example, opened or moved.",
|
|
18031
17989
|
properties: {
|
|
18032
17990
|
connected_account_id: {
|
|
18033
|
-
description: "ID of the
|
|
17991
|
+
description: "ID of the connected account associated with the event.",
|
|
18034
17992
|
format: "uuid",
|
|
18035
17993
|
type: "string"
|
|
18036
17994
|
},
|
|
@@ -18040,7 +17998,7 @@ var openapi_default = {
|
|
|
18040
17998
|
type: "string"
|
|
18041
17999
|
},
|
|
18042
18000
|
device_id: {
|
|
18043
|
-
description: "ID of the device.",
|
|
18001
|
+
description: "ID of the affected device.",
|
|
18044
18002
|
format: "uuid",
|
|
18045
18003
|
type: "string"
|
|
18046
18004
|
},
|
|
@@ -18056,7 +18014,7 @@ var openapi_default = {
|
|
|
18056
18014
|
type: "string"
|
|
18057
18015
|
},
|
|
18058
18016
|
workspace_id: {
|
|
18059
|
-
description: "ID of the
|
|
18017
|
+
description: "ID of the workspace associated with the event.",
|
|
18060
18018
|
format: "uuid",
|
|
18061
18019
|
type: "string"
|
|
18062
18020
|
}
|
|
@@ -18077,14 +18035,14 @@ var openapi_default = {
|
|
|
18077
18035
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) battery level dropped below the low threshold.",
|
|
18078
18036
|
properties: {
|
|
18079
18037
|
battery_level: {
|
|
18080
|
-
description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
|
|
18038
|
+
description: "Number in the range 0 to 1.0 indicating the amount of battery in the affected device, as reported by the device.",
|
|
18081
18039
|
format: "float",
|
|
18082
18040
|
maximum: 1,
|
|
18083
18041
|
minimum: 0,
|
|
18084
18042
|
type: "number"
|
|
18085
18043
|
},
|
|
18086
18044
|
connected_account_id: {
|
|
18087
|
-
description: "ID of the
|
|
18045
|
+
description: "ID of the connected account associated with the event.",
|
|
18088
18046
|
format: "uuid",
|
|
18089
18047
|
type: "string"
|
|
18090
18048
|
},
|
|
@@ -18094,7 +18052,7 @@ var openapi_default = {
|
|
|
18094
18052
|
type: "string"
|
|
18095
18053
|
},
|
|
18096
18054
|
device_id: {
|
|
18097
|
-
description: "ID of the device.",
|
|
18055
|
+
description: "ID of the affected device.",
|
|
18098
18056
|
format: "uuid",
|
|
18099
18057
|
type: "string"
|
|
18100
18058
|
},
|
|
@@ -18110,7 +18068,7 @@ var openapi_default = {
|
|
|
18110
18068
|
type: "string"
|
|
18111
18069
|
},
|
|
18112
18070
|
workspace_id: {
|
|
18113
|
-
description: "ID of the
|
|
18071
|
+
description: "ID of the workspace associated with the event.",
|
|
18114
18072
|
format: "uuid",
|
|
18115
18073
|
type: "string"
|
|
18116
18074
|
}
|
|
@@ -18132,19 +18090,19 @@ var openapi_default = {
|
|
|
18132
18090
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) battery status changed since the last `battery_status_changed` event.",
|
|
18133
18091
|
properties: {
|
|
18134
18092
|
battery_level: {
|
|
18135
|
-
description: "Number in the range 0 to 1.0 indicating the amount of battery in the device, as reported by the device.",
|
|
18093
|
+
description: "Number in the range 0 to 1.0 indicating the amount of battery in the affected device, as reported by the device.",
|
|
18136
18094
|
format: "float",
|
|
18137
18095
|
maximum: 1,
|
|
18138
18096
|
minimum: 0,
|
|
18139
18097
|
type: "number"
|
|
18140
18098
|
},
|
|
18141
18099
|
battery_status: {
|
|
18142
|
-
description: "Battery status of the device, calculated from the numeric `battery_level` value.",
|
|
18100
|
+
description: "Battery status of the affected device, calculated from the numeric `battery_level` value.",
|
|
18143
18101
|
enum: ["critical", "low", "good", "full"],
|
|
18144
18102
|
type: "string"
|
|
18145
18103
|
},
|
|
18146
18104
|
connected_account_id: {
|
|
18147
|
-
description: "ID of the
|
|
18105
|
+
description: "ID of the connected account associated with the event.",
|
|
18148
18106
|
format: "uuid",
|
|
18149
18107
|
type: "string"
|
|
18150
18108
|
},
|
|
@@ -18154,7 +18112,7 @@ var openapi_default = {
|
|
|
18154
18112
|
type: "string"
|
|
18155
18113
|
},
|
|
18156
18114
|
device_id: {
|
|
18157
|
-
description: "ID of the device.",
|
|
18115
|
+
description: "ID of the affected device.",
|
|
18158
18116
|
format: "uuid",
|
|
18159
18117
|
type: "string"
|
|
18160
18118
|
},
|
|
@@ -18173,7 +18131,7 @@ var openapi_default = {
|
|
|
18173
18131
|
type: "string"
|
|
18174
18132
|
},
|
|
18175
18133
|
workspace_id: {
|
|
18176
|
-
description: "ID of the
|
|
18134
|
+
description: "ID of the workspace associated with the event.",
|
|
18177
18135
|
format: "uuid",
|
|
18178
18136
|
type: "string"
|
|
18179
18137
|
}
|
|
@@ -18196,7 +18154,7 @@ var openapi_default = {
|
|
|
18196
18154
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was removed externally from the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
18197
18155
|
properties: {
|
|
18198
18156
|
connected_account_id: {
|
|
18199
|
-
description: "ID of the
|
|
18157
|
+
description: "ID of the connected account associated with the event.",
|
|
18200
18158
|
format: "uuid",
|
|
18201
18159
|
type: "string"
|
|
18202
18160
|
},
|
|
@@ -18206,7 +18164,7 @@ var openapi_default = {
|
|
|
18206
18164
|
type: "string"
|
|
18207
18165
|
},
|
|
18208
18166
|
device_id: {
|
|
18209
|
-
description: "ID of the device.",
|
|
18167
|
+
description: "ID of the affected device.",
|
|
18210
18168
|
format: "uuid",
|
|
18211
18169
|
type: "string"
|
|
18212
18170
|
},
|
|
@@ -18222,7 +18180,7 @@ var openapi_default = {
|
|
|
18222
18180
|
type: "string"
|
|
18223
18181
|
},
|
|
18224
18182
|
workspace_id: {
|
|
18225
|
-
description: "ID of the
|
|
18183
|
+
description: "ID of the workspace associated with the event.",
|
|
18226
18184
|
format: "uuid",
|
|
18227
18185
|
type: "string"
|
|
18228
18186
|
}
|
|
@@ -18243,7 +18201,7 @@ var openapi_default = {
|
|
|
18243
18201
|
description: "A [device](https://docs.seam.co/latest/core-concepts/devices) was deleted.",
|
|
18244
18202
|
properties: {
|
|
18245
18203
|
connected_account_id: {
|
|
18246
|
-
description: "ID of the
|
|
18204
|
+
description: "ID of the connected account associated with the event.",
|
|
18247
18205
|
format: "uuid",
|
|
18248
18206
|
type: "string"
|
|
18249
18207
|
},
|
|
@@ -18253,7 +18211,7 @@ var openapi_default = {
|
|
|
18253
18211
|
type: "string"
|
|
18254
18212
|
},
|
|
18255
18213
|
device_id: {
|
|
18256
|
-
description: "ID of the device.",
|
|
18214
|
+
description: "ID of the affected device.",
|
|
18257
18215
|
format: "uuid",
|
|
18258
18216
|
type: "string"
|
|
18259
18217
|
},
|
|
@@ -18269,7 +18227,7 @@ var openapi_default = {
|
|
|
18269
18227
|
type: "string"
|
|
18270
18228
|
},
|
|
18271
18229
|
workspace_id: {
|
|
18272
|
-
description: "ID of the
|
|
18230
|
+
description: "ID of the workspace associated with the event.",
|
|
18273
18231
|
format: "uuid",
|
|
18274
18232
|
type: "string"
|
|
18275
18233
|
}
|
|
@@ -18290,7 +18248,7 @@ var openapi_default = {
|
|
|
18290
18248
|
description: "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is using a third-party integration that will interfere with Seam device management.",
|
|
18291
18249
|
properties: {
|
|
18292
18250
|
connected_account_id: {
|
|
18293
|
-
description: "ID of the
|
|
18251
|
+
description: "ID of the connected account associated with the event.",
|
|
18294
18252
|
format: "uuid",
|
|
18295
18253
|
type: "string"
|
|
18296
18254
|
},
|
|
@@ -18300,7 +18258,7 @@ var openapi_default = {
|
|
|
18300
18258
|
type: "string"
|
|
18301
18259
|
},
|
|
18302
18260
|
device_id: {
|
|
18303
|
-
description: "ID of the device.",
|
|
18261
|
+
description: "ID of the affected device.",
|
|
18304
18262
|
format: "uuid",
|
|
18305
18263
|
type: "string"
|
|
18306
18264
|
},
|
|
@@ -18319,7 +18277,7 @@ var openapi_default = {
|
|
|
18319
18277
|
type: "string"
|
|
18320
18278
|
},
|
|
18321
18279
|
workspace_id: {
|
|
18322
|
-
description: "ID of the
|
|
18280
|
+
description: "ID of the workspace associated with the event.",
|
|
18323
18281
|
format: "uuid",
|
|
18324
18282
|
type: "string"
|
|
18325
18283
|
}
|
|
@@ -18340,7 +18298,7 @@ var openapi_default = {
|
|
|
18340
18298
|
description: "Seam detected that a [device](https://docs.seam.co/latest/core-concepts/devices) is no longer using a third-party integration that was interfering with Seam device management.",
|
|
18341
18299
|
properties: {
|
|
18342
18300
|
connected_account_id: {
|
|
18343
|
-
description: "ID of the
|
|
18301
|
+
description: "ID of the connected account associated with the event.",
|
|
18344
18302
|
format: "uuid",
|
|
18345
18303
|
type: "string"
|
|
18346
18304
|
},
|
|
@@ -18350,7 +18308,7 @@ var openapi_default = {
|
|
|
18350
18308
|
type: "string"
|
|
18351
18309
|
},
|
|
18352
18310
|
device_id: {
|
|
18353
|
-
description: "ID of the device.",
|
|
18311
|
+
description: "ID of the affected device.",
|
|
18354
18312
|
format: "uuid",
|
|
18355
18313
|
type: "string"
|
|
18356
18314
|
},
|
|
@@ -18369,7 +18327,7 @@ var openapi_default = {
|
|
|
18369
18327
|
type: "string"
|
|
18370
18328
|
},
|
|
18371
18329
|
workspace_id: {
|
|
18372
|
-
description: "ID of the
|
|
18330
|
+
description: "ID of the workspace associated with the event.",
|
|
18373
18331
|
format: "uuid",
|
|
18374
18332
|
type: "string"
|
|
18375
18333
|
}
|
|
@@ -18390,7 +18348,7 @@ var openapi_default = {
|
|
|
18390
18348
|
description: "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) activated privacy mode.",
|
|
18391
18349
|
properties: {
|
|
18392
18350
|
connected_account_id: {
|
|
18393
|
-
description: "ID of the
|
|
18351
|
+
description: "ID of the connected account associated with the event.",
|
|
18394
18352
|
format: "uuid",
|
|
18395
18353
|
type: "string"
|
|
18396
18354
|
},
|
|
@@ -18400,7 +18358,7 @@ var openapi_default = {
|
|
|
18400
18358
|
type: "string"
|
|
18401
18359
|
},
|
|
18402
18360
|
device_id: {
|
|
18403
|
-
description: "ID of the device.",
|
|
18361
|
+
description: "ID of the affected device.",
|
|
18404
18362
|
format: "uuid",
|
|
18405
18363
|
type: "string"
|
|
18406
18364
|
},
|
|
@@ -18419,7 +18377,7 @@ var openapi_default = {
|
|
|
18419
18377
|
type: "string"
|
|
18420
18378
|
},
|
|
18421
18379
|
workspace_id: {
|
|
18422
|
-
description: "ID of the
|
|
18380
|
+
description: "ID of the workspace associated with the event.",
|
|
18423
18381
|
format: "uuid",
|
|
18424
18382
|
type: "string"
|
|
18425
18383
|
}
|
|
@@ -18440,7 +18398,7 @@ var openapi_default = {
|
|
|
18440
18398
|
description: "A [Salto device](https://docs.seam.co/latest/device-and-system-integration-guides/salto-locks) deactivated privacy mode.",
|
|
18441
18399
|
properties: {
|
|
18442
18400
|
connected_account_id: {
|
|
18443
|
-
description: "ID of the
|
|
18401
|
+
description: "ID of the connected account associated with the event.",
|
|
18444
18402
|
format: "uuid",
|
|
18445
18403
|
type: "string"
|
|
18446
18404
|
},
|
|
@@ -18450,7 +18408,7 @@ var openapi_default = {
|
|
|
18450
18408
|
type: "string"
|
|
18451
18409
|
},
|
|
18452
18410
|
device_id: {
|
|
18453
|
-
description: "ID of the device.",
|
|
18411
|
+
description: "ID of the affected device.",
|
|
18454
18412
|
format: "uuid",
|
|
18455
18413
|
type: "string"
|
|
18456
18414
|
},
|
|
@@ -18469,7 +18427,7 @@ var openapi_default = {
|
|
|
18469
18427
|
type: "string"
|
|
18470
18428
|
},
|
|
18471
18429
|
workspace_id: {
|
|
18472
|
-
description: "ID of the
|
|
18430
|
+
description: "ID of the workspace associated with the event.",
|
|
18473
18431
|
format: "uuid",
|
|
18474
18432
|
type: "string"
|
|
18475
18433
|
}
|
|
@@ -18490,7 +18448,7 @@ var openapi_default = {
|
|
|
18490
18448
|
description: "Seam detected a flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection.",
|
|
18491
18449
|
properties: {
|
|
18492
18450
|
connected_account_id: {
|
|
18493
|
-
description: "ID of the
|
|
18451
|
+
description: "ID of the connected account associated with the event.",
|
|
18494
18452
|
format: "uuid",
|
|
18495
18453
|
type: "string"
|
|
18496
18454
|
},
|
|
@@ -18500,7 +18458,7 @@ var openapi_default = {
|
|
|
18500
18458
|
type: "string"
|
|
18501
18459
|
},
|
|
18502
18460
|
device_id: {
|
|
18503
|
-
description: "ID of the device.",
|
|
18461
|
+
description: "ID of the affected device.",
|
|
18504
18462
|
format: "uuid",
|
|
18505
18463
|
type: "string"
|
|
18506
18464
|
},
|
|
@@ -18519,7 +18477,7 @@ var openapi_default = {
|
|
|
18519
18477
|
type: "string"
|
|
18520
18478
|
},
|
|
18521
18479
|
workspace_id: {
|
|
18522
|
-
description: "ID of the
|
|
18480
|
+
description: "ID of the workspace associated with the event.",
|
|
18523
18481
|
format: "uuid",
|
|
18524
18482
|
type: "string"
|
|
18525
18483
|
}
|
|
@@ -18540,7 +18498,7 @@ var openapi_default = {
|
|
|
18540
18498
|
description: "Seam detected that a previously-flaky [device](https://docs.seam.co/latest/core-concepts/devices) connection stabilized.",
|
|
18541
18499
|
properties: {
|
|
18542
18500
|
connected_account_id: {
|
|
18543
|
-
description: "ID of the
|
|
18501
|
+
description: "ID of the connected account associated with the event.",
|
|
18544
18502
|
format: "uuid",
|
|
18545
18503
|
type: "string"
|
|
18546
18504
|
},
|
|
@@ -18550,7 +18508,7 @@ var openapi_default = {
|
|
|
18550
18508
|
type: "string"
|
|
18551
18509
|
},
|
|
18552
18510
|
device_id: {
|
|
18553
|
-
description: "ID of the device.",
|
|
18511
|
+
description: "ID of the affected device.",
|
|
18554
18512
|
format: "uuid",
|
|
18555
18513
|
type: "string"
|
|
18556
18514
|
},
|
|
@@ -18569,7 +18527,7 @@ var openapi_default = {
|
|
|
18569
18527
|
type: "string"
|
|
18570
18528
|
},
|
|
18571
18529
|
workspace_id: {
|
|
18572
|
-
description: "ID of the
|
|
18530
|
+
description: "ID of the workspace associated with the event.",
|
|
18573
18531
|
format: "uuid",
|
|
18574
18532
|
type: "string"
|
|
18575
18533
|
}
|
|
@@ -18590,7 +18548,7 @@ var openapi_default = {
|
|
|
18590
18548
|
description: "A third-party subscription is required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.",
|
|
18591
18549
|
properties: {
|
|
18592
18550
|
connected_account_id: {
|
|
18593
|
-
description: "ID of the
|
|
18551
|
+
description: "ID of the connected account associated with the event.",
|
|
18594
18552
|
format: "uuid",
|
|
18595
18553
|
type: "string"
|
|
18596
18554
|
},
|
|
@@ -18600,7 +18558,7 @@ var openapi_default = {
|
|
|
18600
18558
|
type: "string"
|
|
18601
18559
|
},
|
|
18602
18560
|
device_id: {
|
|
18603
|
-
description: "ID of the device.",
|
|
18561
|
+
description: "ID of the affected device.",
|
|
18604
18562
|
format: "uuid",
|
|
18605
18563
|
type: "string"
|
|
18606
18564
|
},
|
|
@@ -18619,7 +18577,7 @@ var openapi_default = {
|
|
|
18619
18577
|
type: "string"
|
|
18620
18578
|
},
|
|
18621
18579
|
workspace_id: {
|
|
18622
|
-
description: "ID of the
|
|
18580
|
+
description: "ID of the workspace associated with the event.",
|
|
18623
18581
|
format: "uuid",
|
|
18624
18582
|
type: "string"
|
|
18625
18583
|
}
|
|
@@ -18640,7 +18598,7 @@ var openapi_default = {
|
|
|
18640
18598
|
description: "A third-party subscription is active or no longer required to use all [device](https://docs.seam.co/latest/core-concepts/devices) features.",
|
|
18641
18599
|
properties: {
|
|
18642
18600
|
connected_account_id: {
|
|
18643
|
-
description: "ID of the
|
|
18601
|
+
description: "ID of the connected account associated with the event.",
|
|
18644
18602
|
format: "uuid",
|
|
18645
18603
|
type: "string"
|
|
18646
18604
|
},
|
|
@@ -18650,7 +18608,7 @@ var openapi_default = {
|
|
|
18650
18608
|
type: "string"
|
|
18651
18609
|
},
|
|
18652
18610
|
device_id: {
|
|
18653
|
-
description: "ID of the device.",
|
|
18611
|
+
description: "ID of the affected device.",
|
|
18654
18612
|
format: "uuid",
|
|
18655
18613
|
type: "string"
|
|
18656
18614
|
},
|
|
@@ -18669,7 +18627,7 @@ var openapi_default = {
|
|
|
18669
18627
|
type: "string"
|
|
18670
18628
|
},
|
|
18671
18629
|
workspace_id: {
|
|
18672
|
-
description: "ID of the
|
|
18630
|
+
description: "ID of the workspace associated with the event.",
|
|
18673
18631
|
format: "uuid",
|
|
18674
18632
|
type: "string"
|
|
18675
18633
|
}
|
|
@@ -18690,7 +18648,7 @@ var openapi_default = {
|
|
|
18690
18648
|
description: "An accessory keypad was connected to a [device](https://docs.seam.co/latest/core-concepts/devices).",
|
|
18691
18649
|
properties: {
|
|
18692
18650
|
connected_account_id: {
|
|
18693
|
-
description: "ID of the
|
|
18651
|
+
description: "ID of the connected account associated with the event.",
|
|
18694
18652
|
format: "uuid",
|
|
18695
18653
|
type: "string"
|
|
18696
18654
|
},
|
|
@@ -18700,7 +18658,7 @@ var openapi_default = {
|
|
|
18700
18658
|
type: "string"
|
|
18701
18659
|
},
|
|
18702
18660
|
device_id: {
|
|
18703
|
-
description: "ID of the device.",
|
|
18661
|
+
description: "ID of the affected device.",
|
|
18704
18662
|
format: "uuid",
|
|
18705
18663
|
type: "string"
|
|
18706
18664
|
},
|
|
@@ -18719,7 +18677,7 @@ var openapi_default = {
|
|
|
18719
18677
|
type: "string"
|
|
18720
18678
|
},
|
|
18721
18679
|
workspace_id: {
|
|
18722
|
-
description: "ID of the
|
|
18680
|
+
description: "ID of the workspace associated with the event.",
|
|
18723
18681
|
format: "uuid",
|
|
18724
18682
|
type: "string"
|
|
18725
18683
|
}
|
|
@@ -18740,7 +18698,7 @@ var openapi_default = {
|
|
|
18740
18698
|
description: "An accessory keypad was disconnected from a [device](https://docs.seam.co/latest/core-concepts/devices).",
|
|
18741
18699
|
properties: {
|
|
18742
18700
|
connected_account_id: {
|
|
18743
|
-
description: "ID of the
|
|
18701
|
+
description: "ID of the connected account associated with the event.",
|
|
18744
18702
|
format: "uuid",
|
|
18745
18703
|
type: "string"
|
|
18746
18704
|
},
|
|
@@ -18750,7 +18708,7 @@ var openapi_default = {
|
|
|
18750
18708
|
type: "string"
|
|
18751
18709
|
},
|
|
18752
18710
|
device_id: {
|
|
18753
|
-
description: "ID of the device.",
|
|
18711
|
+
description: "ID of the affected device.",
|
|
18754
18712
|
format: "uuid",
|
|
18755
18713
|
type: "string"
|
|
18756
18714
|
},
|
|
@@ -18769,7 +18727,7 @@ var openapi_default = {
|
|
|
18769
18727
|
type: "string"
|
|
18770
18728
|
},
|
|
18771
18729
|
workspace_id: {
|
|
18772
|
-
description: "ID of the
|
|
18730
|
+
description: "ID of the workspace associated with the event.",
|
|
18773
18731
|
format: "uuid",
|
|
18774
18732
|
type: "string"
|
|
18775
18733
|
}
|
|
@@ -18790,7 +18748,7 @@ var openapi_default = {
|
|
|
18790
18748
|
description: "Extended periods of noise or noise exceeding a [threshold](https://docs.seam.co/latest/capability-guides/noise-sensors#what-is-a-threshold) were detected.",
|
|
18791
18749
|
properties: {
|
|
18792
18750
|
connected_account_id: {
|
|
18793
|
-
description: "ID of the
|
|
18751
|
+
description: "ID of the connected account associated with the event.",
|
|
18794
18752
|
format: "uuid",
|
|
18795
18753
|
type: "string"
|
|
18796
18754
|
},
|
|
@@ -18800,7 +18758,7 @@ var openapi_default = {
|
|
|
18800
18758
|
type: "string"
|
|
18801
18759
|
},
|
|
18802
18760
|
device_id: {
|
|
18803
|
-
description: "ID of the device.",
|
|
18761
|
+
description: "ID of the affected device.",
|
|
18804
18762
|
format: "uuid",
|
|
18805
18763
|
type: "string"
|
|
18806
18764
|
},
|
|
@@ -18829,12 +18787,12 @@ var openapi_default = {
|
|
|
18829
18787
|
type: "number"
|
|
18830
18788
|
},
|
|
18831
18789
|
noise_threshold_id: {
|
|
18832
|
-
description: "ID of the
|
|
18790
|
+
description: "ID of the noise threshold that was triggered.",
|
|
18833
18791
|
format: "uuid",
|
|
18834
18792
|
type: "string"
|
|
18835
18793
|
},
|
|
18836
18794
|
noise_threshold_name: {
|
|
18837
|
-
description: "Name of the
|
|
18795
|
+
description: "Name of the noise threshold that was triggered.",
|
|
18838
18796
|
type: "string"
|
|
18839
18797
|
},
|
|
18840
18798
|
noiseaware_metadata: {
|
|
@@ -18848,7 +18806,7 @@ var openapi_default = {
|
|
|
18848
18806
|
type: "string"
|
|
18849
18807
|
},
|
|
18850
18808
|
workspace_id: {
|
|
18851
|
-
description: "ID of the
|
|
18809
|
+
description: "ID of the workspace associated with the event.",
|
|
18852
18810
|
format: "uuid",
|
|
18853
18811
|
type: "string"
|
|
18854
18812
|
}
|
|
@@ -18869,17 +18827,17 @@ var openapi_default = {
|
|
|
18869
18827
|
description: "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was locked.",
|
|
18870
18828
|
properties: {
|
|
18871
18829
|
access_code_id: {
|
|
18872
|
-
description: "ID of the
|
|
18830
|
+
description: "ID of the access code that was used to lock the device.",
|
|
18873
18831
|
format: "uuid",
|
|
18874
18832
|
type: "string"
|
|
18875
18833
|
},
|
|
18876
18834
|
action_attempt_id: {
|
|
18877
|
-
description: "ID of the
|
|
18835
|
+
description: "ID of the action attempt associated with the lock action.",
|
|
18878
18836
|
format: "uuid",
|
|
18879
18837
|
type: "string"
|
|
18880
18838
|
},
|
|
18881
18839
|
connected_account_id: {
|
|
18882
|
-
description: "ID of the
|
|
18840
|
+
description: "ID of the connected account associated with the event.",
|
|
18883
18841
|
format: "uuid",
|
|
18884
18842
|
type: "string"
|
|
18885
18843
|
},
|
|
@@ -18889,7 +18847,7 @@ var openapi_default = {
|
|
|
18889
18847
|
type: "string"
|
|
18890
18848
|
},
|
|
18891
18849
|
device_id: {
|
|
18892
|
-
description: "ID of the device.",
|
|
18850
|
+
description: "ID of the affected device.",
|
|
18893
18851
|
format: "uuid",
|
|
18894
18852
|
type: "string"
|
|
18895
18853
|
},
|
|
@@ -18900,7 +18858,7 @@ var openapi_default = {
|
|
|
18900
18858
|
},
|
|
18901
18859
|
event_type: { enum: ["lock.locked"], type: "string" },
|
|
18902
18860
|
method: {
|
|
18903
|
-
description: "Method by which
|
|
18861
|
+
description: "Method by which the affected lock device was locked. When the method is `keycode`, the `access_code_id` indicates the access code that was used, if reported by the device.",
|
|
18904
18862
|
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
18905
18863
|
type: "string"
|
|
18906
18864
|
},
|
|
@@ -18910,7 +18868,7 @@ var openapi_default = {
|
|
|
18910
18868
|
type: "string"
|
|
18911
18869
|
},
|
|
18912
18870
|
workspace_id: {
|
|
18913
|
-
description: "ID of the
|
|
18871
|
+
description: "ID of the workspace associated with the event.",
|
|
18914
18872
|
format: "uuid",
|
|
18915
18873
|
type: "string"
|
|
18916
18874
|
}
|
|
@@ -18932,17 +18890,17 @@ var openapi_default = {
|
|
|
18932
18890
|
description: "A [lock](https://docs.seam.co/latest/capability-guides/smart-locks) was unlocked.",
|
|
18933
18891
|
properties: {
|
|
18934
18892
|
access_code_id: {
|
|
18935
|
-
description: "ID of the
|
|
18893
|
+
description: "ID of the access code that was used to unlock the affected device.",
|
|
18936
18894
|
format: "uuid",
|
|
18937
18895
|
type: "string"
|
|
18938
18896
|
},
|
|
18939
18897
|
action_attempt_id: {
|
|
18940
|
-
description: "ID of the
|
|
18898
|
+
description: "ID of the action attempt associated with the unlock action.",
|
|
18941
18899
|
format: "uuid",
|
|
18942
18900
|
type: "string"
|
|
18943
18901
|
},
|
|
18944
18902
|
connected_account_id: {
|
|
18945
|
-
description: "ID of the
|
|
18903
|
+
description: "ID of the connected account associated with the event.",
|
|
18946
18904
|
format: "uuid",
|
|
18947
18905
|
type: "string"
|
|
18948
18906
|
},
|
|
@@ -18952,7 +18910,7 @@ var openapi_default = {
|
|
|
18952
18910
|
type: "string"
|
|
18953
18911
|
},
|
|
18954
18912
|
device_id: {
|
|
18955
|
-
description: "ID of the device.",
|
|
18913
|
+
description: "ID of the affected device.",
|
|
18956
18914
|
format: "uuid",
|
|
18957
18915
|
type: "string"
|
|
18958
18916
|
},
|
|
@@ -18963,7 +18921,7 @@ var openapi_default = {
|
|
|
18963
18921
|
},
|
|
18964
18922
|
event_type: { enum: ["lock.unlocked"], type: "string" },
|
|
18965
18923
|
method: {
|
|
18966
|
-
description: "Method by which
|
|
18924
|
+
description: "Method by which the affected lock device was unlocked. When the method is `keycode`, the `access_code_id` indicates the [access code](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes) that was used, if reported by the device.",
|
|
18967
18925
|
enum: ["keycode", "manual", "automatic", "unknown", "seamapi"],
|
|
18968
18926
|
type: "string"
|
|
18969
18927
|
},
|
|
@@ -18973,7 +18931,7 @@ var openapi_default = {
|
|
|
18973
18931
|
type: "string"
|
|
18974
18932
|
},
|
|
18975
18933
|
workspace_id: {
|
|
18976
|
-
description: "ID of the
|
|
18934
|
+
description: "ID of the workspace associated with the event.",
|
|
18977
18935
|
format: "uuid",
|
|
18978
18936
|
type: "string"
|
|
18979
18937
|
}
|
|
@@ -18995,12 +18953,12 @@ var openapi_default = {
|
|
|
18995
18953
|
description: "The [lock](https://docs.seam.co/latest/capability-guides/smart-locks) denied access to a user after one or more consecutive invalid attempts to unlock the device.",
|
|
18996
18954
|
properties: {
|
|
18997
18955
|
access_code_id: {
|
|
18998
|
-
description: "ID of the
|
|
18956
|
+
description: "ID of the access code that was used in the unlock attempts.",
|
|
18999
18957
|
format: "uuid",
|
|
19000
18958
|
type: "string"
|
|
19001
18959
|
},
|
|
19002
18960
|
connected_account_id: {
|
|
19003
|
-
description: "ID of the
|
|
18961
|
+
description: "ID of the connected account associated with the event.",
|
|
19004
18962
|
format: "uuid",
|
|
19005
18963
|
type: "string"
|
|
19006
18964
|
},
|
|
@@ -19010,7 +18968,7 @@ var openapi_default = {
|
|
|
19010
18968
|
type: "string"
|
|
19011
18969
|
},
|
|
19012
18970
|
device_id: {
|
|
19013
|
-
description: "ID of the device.",
|
|
18971
|
+
description: "ID of the affected device.",
|
|
19014
18972
|
format: "uuid",
|
|
19015
18973
|
type: "string"
|
|
19016
18974
|
},
|
|
@@ -19026,7 +18984,7 @@ var openapi_default = {
|
|
|
19026
18984
|
type: "string"
|
|
19027
18985
|
},
|
|
19028
18986
|
workspace_id: {
|
|
19029
|
-
description: "ID of the
|
|
18987
|
+
description: "ID of the workspace associated with the event.",
|
|
19030
18988
|
format: "uuid",
|
|
19031
18989
|
type: "string"
|
|
19032
18990
|
}
|
|
@@ -19047,11 +19005,11 @@ var openapi_default = {
|
|
|
19047
19005
|
description: "A thermostat [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) was activated.",
|
|
19048
19006
|
properties: {
|
|
19049
19007
|
climate_preset_key: {
|
|
19050
|
-
description: "Key of the
|
|
19008
|
+
description: "Key of the climate preset that was activated.",
|
|
19051
19009
|
type: "string"
|
|
19052
19010
|
},
|
|
19053
19011
|
connected_account_id: {
|
|
19054
|
-
description: "ID of the
|
|
19012
|
+
description: "ID of the connected account associated with the event.",
|
|
19055
19013
|
format: "uuid",
|
|
19056
19014
|
type: "string"
|
|
19057
19015
|
},
|
|
@@ -19061,7 +19019,7 @@ var openapi_default = {
|
|
|
19061
19019
|
type: "string"
|
|
19062
19020
|
},
|
|
19063
19021
|
device_id: {
|
|
19064
|
-
description: "ID of the device.",
|
|
19022
|
+
description: "ID of the affected device.",
|
|
19065
19023
|
format: "uuid",
|
|
19066
19024
|
type: "string"
|
|
19067
19025
|
},
|
|
@@ -19075,7 +19033,7 @@ var openapi_default = {
|
|
|
19075
19033
|
type: "string"
|
|
19076
19034
|
},
|
|
19077
19035
|
is_fallback_climate_preset: {
|
|
19078
|
-
description: "Indicates whether the
|
|
19036
|
+
description: "Indicates whether the climate preset that was activated is the fallback climate preset for the thermostat.",
|
|
19079
19037
|
type: "boolean"
|
|
19080
19038
|
},
|
|
19081
19039
|
occurred_at: {
|
|
@@ -19084,13 +19042,13 @@ var openapi_default = {
|
|
|
19084
19042
|
type: "string"
|
|
19085
19043
|
},
|
|
19086
19044
|
thermostat_schedule_id: {
|
|
19087
|
-
description: "ID of the
|
|
19045
|
+
description: "ID of the thermostat schedule that prompted the affected climate preset to be activated.",
|
|
19088
19046
|
format: "uuid",
|
|
19089
19047
|
nullable: true,
|
|
19090
19048
|
type: "string"
|
|
19091
19049
|
},
|
|
19092
19050
|
workspace_id: {
|
|
19093
|
-
description: "ID of the
|
|
19051
|
+
description: "ID of the workspace associated with the event.",
|
|
19094
19052
|
format: "uuid",
|
|
19095
19053
|
type: "string"
|
|
19096
19054
|
}
|
|
@@ -19114,7 +19072,7 @@ var openapi_default = {
|
|
|
19114
19072
|
description: "A [thermostat](https://docs.seam.co/latest/capability-guides/thermostats) was adjusted manually.",
|
|
19115
19073
|
properties: {
|
|
19116
19074
|
connected_account_id: {
|
|
19117
|
-
description: "ID of the
|
|
19075
|
+
description: "ID of the connected account associated with the event.",
|
|
19118
19076
|
format: "uuid",
|
|
19119
19077
|
type: "string"
|
|
19120
19078
|
},
|
|
@@ -19134,7 +19092,7 @@ var openapi_default = {
|
|
|
19134
19092
|
type: "string"
|
|
19135
19093
|
},
|
|
19136
19094
|
device_id: {
|
|
19137
|
-
description: "ID of the device.",
|
|
19095
|
+
description: "ID of the affected device.",
|
|
19138
19096
|
format: "uuid",
|
|
19139
19097
|
type: "string"
|
|
19140
19098
|
},
|
|
@@ -19168,7 +19126,7 @@ var openapi_default = {
|
|
|
19168
19126
|
type: "string"
|
|
19169
19127
|
},
|
|
19170
19128
|
method: {
|
|
19171
|
-
description: "Method used to adjust the
|
|
19129
|
+
description: "Method used to adjust the affected thermostat manually. `seam` indicates that the Seam API, Seam CLI, or Seam Console was used to adjust the thermostat.",
|
|
19172
19130
|
enum: ["seam", "external"],
|
|
19173
19131
|
type: "string"
|
|
19174
19132
|
},
|
|
@@ -19178,7 +19136,7 @@ var openapi_default = {
|
|
|
19178
19136
|
type: "string"
|
|
19179
19137
|
},
|
|
19180
19138
|
workspace_id: {
|
|
19181
|
-
description: "ID of the
|
|
19139
|
+
description: "ID of the workspace associated with the event.",
|
|
19182
19140
|
format: "uuid",
|
|
19183
19141
|
type: "string"
|
|
19184
19142
|
}
|
|
@@ -19200,7 +19158,7 @@ var openapi_default = {
|
|
|
19200
19158
|
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading exceeded the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
19201
19159
|
properties: {
|
|
19202
19160
|
connected_account_id: {
|
|
19203
|
-
description: "ID of the
|
|
19161
|
+
description: "ID of the connected account associated with the event.",
|
|
19204
19162
|
format: "uuid",
|
|
19205
19163
|
type: "string"
|
|
19206
19164
|
},
|
|
@@ -19210,7 +19168,7 @@ var openapi_default = {
|
|
|
19210
19168
|
type: "string"
|
|
19211
19169
|
},
|
|
19212
19170
|
device_id: {
|
|
19213
|
-
description: "ID of the device.",
|
|
19171
|
+
description: "ID of the affected device.",
|
|
19214
19172
|
format: "uuid",
|
|
19215
19173
|
type: "string"
|
|
19216
19174
|
},
|
|
@@ -19224,13 +19182,13 @@ var openapi_default = {
|
|
|
19224
19182
|
type: "string"
|
|
19225
19183
|
},
|
|
19226
19184
|
lower_limit_celsius: {
|
|
19227
|
-
description: "Lower temperature limit, in \xB0C, defined by the set
|
|
19185
|
+
description: "Lower temperature limit, in \xB0C, defined by the set threshold.",
|
|
19228
19186
|
format: "float",
|
|
19229
19187
|
nullable: true,
|
|
19230
19188
|
type: "number"
|
|
19231
19189
|
},
|
|
19232
19190
|
lower_limit_fahrenheit: {
|
|
19233
|
-
description: "Lower temperature limit, in \xB0F, defined by the set
|
|
19191
|
+
description: "Lower temperature limit, in \xB0F, defined by the set threshold.",
|
|
19234
19192
|
format: "float",
|
|
19235
19193
|
nullable: true,
|
|
19236
19194
|
type: "number"
|
|
@@ -19241,29 +19199,29 @@ var openapi_default = {
|
|
|
19241
19199
|
type: "string"
|
|
19242
19200
|
},
|
|
19243
19201
|
temperature_celsius: {
|
|
19244
|
-
description: "Temperature, in \xB0C, reported by the
|
|
19202
|
+
description: "Temperature, in \xB0C, reported by the affected thermostat.",
|
|
19245
19203
|
format: "float",
|
|
19246
19204
|
type: "number"
|
|
19247
19205
|
},
|
|
19248
19206
|
temperature_fahrenheit: {
|
|
19249
|
-
description: "Temperature, in \xB0F, reported by the
|
|
19207
|
+
description: "Temperature, in \xB0F, reported by the affected thermostat.",
|
|
19250
19208
|
format: "float",
|
|
19251
19209
|
type: "number"
|
|
19252
19210
|
},
|
|
19253
19211
|
upper_limit_celsius: {
|
|
19254
|
-
description: "Upper temperature limit, in \xB0C, defined by the set
|
|
19212
|
+
description: "Upper temperature limit, in \xB0C, defined by the set threshold.",
|
|
19255
19213
|
format: "float",
|
|
19256
19214
|
nullable: true,
|
|
19257
19215
|
type: "number"
|
|
19258
19216
|
},
|
|
19259
19217
|
upper_limit_fahrenheit: {
|
|
19260
|
-
description: "Upper temperature limit, in \xB0F, defined by the set
|
|
19218
|
+
description: "Upper temperature limit, in \xB0F, defined by the set threshold.",
|
|
19261
19219
|
format: "float",
|
|
19262
19220
|
nullable: true,
|
|
19263
19221
|
type: "number"
|
|
19264
19222
|
},
|
|
19265
19223
|
workspace_id: {
|
|
19266
|
-
description: "ID of the
|
|
19224
|
+
description: "ID of the workspace associated with the event.",
|
|
19267
19225
|
format: "uuid",
|
|
19268
19226
|
type: "string"
|
|
19269
19227
|
}
|
|
@@ -19290,7 +19248,7 @@ var openapi_default = {
|
|
|
19290
19248
|
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading no longer exceeds the set [threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds).",
|
|
19291
19249
|
properties: {
|
|
19292
19250
|
connected_account_id: {
|
|
19293
|
-
description: "ID of the
|
|
19251
|
+
description: "ID of the connected account associated with the event.",
|
|
19294
19252
|
format: "uuid",
|
|
19295
19253
|
type: "string"
|
|
19296
19254
|
},
|
|
@@ -19300,7 +19258,7 @@ var openapi_default = {
|
|
|
19300
19258
|
type: "string"
|
|
19301
19259
|
},
|
|
19302
19260
|
device_id: {
|
|
19303
|
-
description: "ID of the device.",
|
|
19261
|
+
description: "ID of the affected device.",
|
|
19304
19262
|
format: "uuid",
|
|
19305
19263
|
type: "string"
|
|
19306
19264
|
},
|
|
@@ -19314,13 +19272,13 @@ var openapi_default = {
|
|
|
19314
19272
|
type: "string"
|
|
19315
19273
|
},
|
|
19316
19274
|
lower_limit_celsius: {
|
|
19317
|
-
description: "Lower temperature limit, in \xB0C, defined by the set
|
|
19275
|
+
description: "Lower temperature limit, in \xB0C, defined by the set threshold.",
|
|
19318
19276
|
format: "float",
|
|
19319
19277
|
nullable: true,
|
|
19320
19278
|
type: "number"
|
|
19321
19279
|
},
|
|
19322
19280
|
lower_limit_fahrenheit: {
|
|
19323
|
-
description: "Lower temperature limit, in \xB0F, defined by the set
|
|
19281
|
+
description: "Lower temperature limit, in \xB0F, defined by the set threshold.",
|
|
19324
19282
|
format: "float",
|
|
19325
19283
|
nullable: true,
|
|
19326
19284
|
type: "number"
|
|
@@ -19331,29 +19289,29 @@ var openapi_default = {
|
|
|
19331
19289
|
type: "string"
|
|
19332
19290
|
},
|
|
19333
19291
|
temperature_celsius: {
|
|
19334
|
-
description: "Temperature, in \xB0C, reported by the
|
|
19292
|
+
description: "Temperature, in \xB0C, reported by the affected thermostat.",
|
|
19335
19293
|
format: "float",
|
|
19336
19294
|
type: "number"
|
|
19337
19295
|
},
|
|
19338
19296
|
temperature_fahrenheit: {
|
|
19339
|
-
description: "Temperature, in \xB0F, reported by the
|
|
19297
|
+
description: "Temperature, in \xB0F, reported by the affected thermostat.",
|
|
19340
19298
|
format: "float",
|
|
19341
19299
|
type: "number"
|
|
19342
19300
|
},
|
|
19343
19301
|
upper_limit_celsius: {
|
|
19344
|
-
description: "Upper temperature limit, in \xB0C, defined by the set
|
|
19302
|
+
description: "Upper temperature limit, in \xB0C, defined by the set threshold.",
|
|
19345
19303
|
format: "float",
|
|
19346
19304
|
nullable: true,
|
|
19347
19305
|
type: "number"
|
|
19348
19306
|
},
|
|
19349
19307
|
upper_limit_fahrenheit: {
|
|
19350
|
-
description: "Upper temperature limit, in \xB0F, defined by the set
|
|
19308
|
+
description: "Upper temperature limit, in \xB0F, defined by the set threshold.",
|
|
19351
19309
|
format: "float",
|
|
19352
19310
|
nullable: true,
|
|
19353
19311
|
type: "number"
|
|
19354
19312
|
},
|
|
19355
19313
|
workspace_id: {
|
|
19356
|
-
description: "ID of the
|
|
19314
|
+
description: "ID of the workspace associated with the event.",
|
|
19357
19315
|
format: "uuid",
|
|
19358
19316
|
type: "string"
|
|
19359
19317
|
}
|
|
@@ -19380,7 +19338,7 @@ var openapi_default = {
|
|
|
19380
19338
|
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) temperature reading is within 1 \xB0C of the configured cooling or heating [set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points).",
|
|
19381
19339
|
properties: {
|
|
19382
19340
|
connected_account_id: {
|
|
19383
|
-
description: "ID of the
|
|
19341
|
+
description: "ID of the connected account associated with the event.",
|
|
19384
19342
|
format: "uuid",
|
|
19385
19343
|
type: "string"
|
|
19386
19344
|
},
|
|
@@ -19390,17 +19348,17 @@ var openapi_default = {
|
|
|
19390
19348
|
type: "string"
|
|
19391
19349
|
},
|
|
19392
19350
|
desired_temperature_celsius: {
|
|
19393
|
-
description: "Desired temperature, in \xB0C, defined by the
|
|
19351
|
+
description: "Desired temperature, in \xB0C, defined by the affected thermostat's cooling or heating set point.",
|
|
19394
19352
|
format: "float",
|
|
19395
19353
|
type: "number"
|
|
19396
19354
|
},
|
|
19397
19355
|
desired_temperature_fahrenheit: {
|
|
19398
|
-
description: "Desired temperature, in \xB0F, defined by the
|
|
19356
|
+
description: "Desired temperature, in \xB0F, defined by the affected thermostat's cooling or heating set point.",
|
|
19399
19357
|
format: "float",
|
|
19400
19358
|
type: "number"
|
|
19401
19359
|
},
|
|
19402
19360
|
device_id: {
|
|
19403
|
-
description: "ID of the device.",
|
|
19361
|
+
description: "ID of the affected device.",
|
|
19404
19362
|
format: "uuid",
|
|
19405
19363
|
type: "string"
|
|
19406
19364
|
},
|
|
@@ -19419,17 +19377,17 @@ var openapi_default = {
|
|
|
19419
19377
|
type: "string"
|
|
19420
19378
|
},
|
|
19421
19379
|
temperature_celsius: {
|
|
19422
|
-
description: "Temperature, in \xB0C, reported by the
|
|
19380
|
+
description: "Temperature, in \xB0C, reported by the affected thermostat.",
|
|
19423
19381
|
format: "float",
|
|
19424
19382
|
type: "number"
|
|
19425
19383
|
},
|
|
19426
19384
|
temperature_fahrenheit: {
|
|
19427
|
-
description: "Temperature, in \xB0F, reported by the
|
|
19385
|
+
description: "Temperature, in \xB0F, reported by the affected thermostat.",
|
|
19428
19386
|
format: "float",
|
|
19429
19387
|
type: "number"
|
|
19430
19388
|
},
|
|
19431
19389
|
workspace_id: {
|
|
19432
|
-
description: "ID of the
|
|
19390
|
+
description: "ID of the workspace associated with the event.",
|
|
19433
19391
|
format: "uuid",
|
|
19434
19392
|
type: "string"
|
|
19435
19393
|
}
|
|
@@ -19452,7 +19410,7 @@ var openapi_default = {
|
|
|
19452
19410
|
description: "A [thermostat's](https://docs.seam.co/latest/capability-guides/thermostats) reported temperature changed by at least 1 \xB0C.",
|
|
19453
19411
|
properties: {
|
|
19454
19412
|
connected_account_id: {
|
|
19455
|
-
description: "ID of the
|
|
19413
|
+
description: "ID of the connected account associated with the event.",
|
|
19456
19414
|
format: "uuid",
|
|
19457
19415
|
type: "string"
|
|
19458
19416
|
},
|
|
@@ -19462,7 +19420,7 @@ var openapi_default = {
|
|
|
19462
19420
|
type: "string"
|
|
19463
19421
|
},
|
|
19464
19422
|
device_id: {
|
|
19465
|
-
description: "ID of the device.",
|
|
19423
|
+
description: "ID of the affected device.",
|
|
19466
19424
|
format: "uuid",
|
|
19467
19425
|
type: "string"
|
|
19468
19426
|
},
|
|
@@ -19481,17 +19439,17 @@ var openapi_default = {
|
|
|
19481
19439
|
type: "string"
|
|
19482
19440
|
},
|
|
19483
19441
|
temperature_celsius: {
|
|
19484
|
-
description: "Temperature, in \xB0C, reported by the
|
|
19442
|
+
description: "Temperature, in \xB0C, reported by the affected thermostat.",
|
|
19485
19443
|
format: "float",
|
|
19486
19444
|
type: "number"
|
|
19487
19445
|
},
|
|
19488
19446
|
temperature_fahrenheit: {
|
|
19489
|
-
description: "Temperature, in \xB0F, reported by the
|
|
19447
|
+
description: "Temperature, in \xB0F, reported by the affected thermostat.",
|
|
19490
19448
|
format: "float",
|
|
19491
19449
|
type: "number"
|
|
19492
19450
|
},
|
|
19493
19451
|
workspace_id: {
|
|
19494
|
-
description: "ID of the
|
|
19452
|
+
description: "ID of the workspace associated with the event.",
|
|
19495
19453
|
format: "uuid",
|
|
19496
19454
|
type: "string"
|
|
19497
19455
|
}
|
|
@@ -19514,7 +19472,7 @@ var openapi_default = {
|
|
|
19514
19472
|
description: "The name of a [device](https://docs.seam.co/latest/core-concepts/devices) was changed.",
|
|
19515
19473
|
properties: {
|
|
19516
19474
|
connected_account_id: {
|
|
19517
|
-
description: "ID of the
|
|
19475
|
+
description: "ID of the connected account associated with the event.",
|
|
19518
19476
|
format: "uuid",
|
|
19519
19477
|
type: "string"
|
|
19520
19478
|
},
|
|
@@ -19524,12 +19482,12 @@ var openapi_default = {
|
|
|
19524
19482
|
type: "string"
|
|
19525
19483
|
},
|
|
19526
19484
|
device_id: {
|
|
19527
|
-
description: "ID of the device.",
|
|
19485
|
+
description: "ID of the affected device.",
|
|
19528
19486
|
format: "uuid",
|
|
19529
19487
|
type: "string"
|
|
19530
19488
|
},
|
|
19531
19489
|
device_name: {
|
|
19532
|
-
description: "The new name of the device.",
|
|
19490
|
+
description: "The new name of the affected device.",
|
|
19533
19491
|
type: "string"
|
|
19534
19492
|
},
|
|
19535
19493
|
event_id: {
|
|
@@ -19544,7 +19502,7 @@ var openapi_default = {
|
|
|
19544
19502
|
type: "string"
|
|
19545
19503
|
},
|
|
19546
19504
|
workspace_id: {
|
|
19547
|
-
description: "ID of the
|
|
19505
|
+
description: "ID of the workspace associated with the event.",
|
|
19548
19506
|
format: "uuid",
|
|
19549
19507
|
type: "string"
|
|
19550
19508
|
}
|
|
@@ -19571,7 +19529,7 @@ var openapi_default = {
|
|
|
19571
19529
|
type: "string"
|
|
19572
19530
|
},
|
|
19573
19531
|
enrollment_automation_id: {
|
|
19574
|
-
description: "ID of the
|
|
19532
|
+
description: "ID of the affected enrollment automation.",
|
|
19575
19533
|
format: "uuid",
|
|
19576
19534
|
type: "string"
|
|
19577
19535
|
},
|
|
@@ -19590,7 +19548,7 @@ var openapi_default = {
|
|
|
19590
19548
|
type: "string"
|
|
19591
19549
|
},
|
|
19592
19550
|
workspace_id: {
|
|
19593
|
-
description: "ID of the
|
|
19551
|
+
description: "ID of the workspace associated with the event.",
|
|
19594
19552
|
format: "uuid",
|
|
19595
19553
|
type: "string"
|
|
19596
19554
|
}
|
|
@@ -19615,7 +19573,7 @@ var openapi_default = {
|
|
|
19615
19573
|
type: "string"
|
|
19616
19574
|
},
|
|
19617
19575
|
device_id: {
|
|
19618
|
-
description: "ID of the
|
|
19576
|
+
description: "ID of the affected phone device.",
|
|
19619
19577
|
format: "uuid",
|
|
19620
19578
|
type: "string"
|
|
19621
19579
|
},
|
|
@@ -19631,7 +19589,7 @@ var openapi_default = {
|
|
|
19631
19589
|
type: "string"
|
|
19632
19590
|
},
|
|
19633
19591
|
workspace_id: {
|
|
19634
|
-
description: "ID of the
|
|
19592
|
+
description: "ID of the workspace associated with the event.",
|
|
19635
19593
|
format: "uuid",
|
|
19636
19594
|
type: "string"
|
|
19637
19595
|
}
|
|
@@ -32349,9 +32307,20 @@ var openapi_default = {
|
|
|
32349
32307
|
"application/json": {
|
|
32350
32308
|
schema: {
|
|
32351
32309
|
properties: {
|
|
32352
|
-
device_id: {
|
|
32353
|
-
|
|
32354
|
-
|
|
32310
|
+
device_id: {
|
|
32311
|
+
description: "Unique identifier for the device that triggered the event that you want to get.",
|
|
32312
|
+
format: "uuid",
|
|
32313
|
+
type: "string"
|
|
32314
|
+
},
|
|
32315
|
+
event_id: {
|
|
32316
|
+
description: "Unique identifier for the event that you want to get.",
|
|
32317
|
+
format: "uuid",
|
|
32318
|
+
type: "string"
|
|
32319
|
+
},
|
|
32320
|
+
event_type: {
|
|
32321
|
+
description: "Type of the event that you want to get.",
|
|
32322
|
+
type: "string"
|
|
32323
|
+
}
|
|
32355
32324
|
},
|
|
32356
32325
|
type: "object"
|
|
32357
32326
|
}
|
|
@@ -32402,17 +32371,28 @@ var openapi_default = {
|
|
|
32402
32371
|
"application/json": {
|
|
32403
32372
|
schema: {
|
|
32404
32373
|
properties: {
|
|
32405
|
-
access_code_id: {
|
|
32374
|
+
access_code_id: {
|
|
32375
|
+
description: "ID of the access code for which you want to list events.",
|
|
32376
|
+
format: "uuid",
|
|
32377
|
+
type: "string"
|
|
32378
|
+
},
|
|
32406
32379
|
access_code_ids: {
|
|
32380
|
+
description: "IDs of the access codes for which you want to list events.",
|
|
32407
32381
|
items: { format: "uuid", type: "string" },
|
|
32408
32382
|
type: "array"
|
|
32409
32383
|
},
|
|
32410
|
-
acs_system_id: {
|
|
32384
|
+
acs_system_id: {
|
|
32385
|
+
description: "ID of the access system for which you want to list events.",
|
|
32386
|
+
format: "uuid",
|
|
32387
|
+
type: "string"
|
|
32388
|
+
},
|
|
32411
32389
|
acs_system_ids: {
|
|
32390
|
+
description: "IDs of the access systems for which you want to list events.",
|
|
32412
32391
|
items: { format: "uuid", type: "string" },
|
|
32413
32392
|
type: "array"
|
|
32414
32393
|
},
|
|
32415
32394
|
between: {
|
|
32395
|
+
description: "Lower and upper timestamps to define an exclusive interval containing the events that you want to list. You must include `since` or `between`.",
|
|
32416
32396
|
items: {
|
|
32417
32397
|
oneOf: [
|
|
32418
32398
|
{ type: "string" },
|
|
@@ -32423,22 +32403,38 @@ var openapi_default = {
|
|
|
32423
32403
|
minItems: 2,
|
|
32424
32404
|
type: "array"
|
|
32425
32405
|
},
|
|
32426
|
-
connect_webview_id: {
|
|
32427
|
-
|
|
32406
|
+
connect_webview_id: {
|
|
32407
|
+
description: "IDs of the connected accounts for which you want to list events.",
|
|
32408
|
+
format: "uuid",
|
|
32409
|
+
type: "string"
|
|
32410
|
+
},
|
|
32411
|
+
connected_account_id: {
|
|
32412
|
+
description: "ID of the connected account for which you want to list events.",
|
|
32413
|
+
format: "uuid",
|
|
32414
|
+
type: "string"
|
|
32415
|
+
},
|
|
32428
32416
|
customer_ids: {
|
|
32417
|
+
description: "IDs of the customers for which you want to list events.",
|
|
32429
32418
|
items: { format: "uuid", type: "string" },
|
|
32430
32419
|
type: "array"
|
|
32431
32420
|
},
|
|
32432
|
-
device_id: {
|
|
32421
|
+
device_id: {
|
|
32422
|
+
description: "ID of the device for which you want to list events.",
|
|
32423
|
+
format: "uuid",
|
|
32424
|
+
type: "string"
|
|
32425
|
+
},
|
|
32433
32426
|
device_ids: {
|
|
32427
|
+
description: "IDs of the devices for which you want to list events.",
|
|
32434
32428
|
items: { format: "uuid", type: "string" },
|
|
32435
32429
|
type: "array"
|
|
32436
32430
|
},
|
|
32437
32431
|
event_ids: {
|
|
32432
|
+
description: "IDs of the events that you want to list.",
|
|
32438
32433
|
items: { format: "uuid", type: "string" },
|
|
32439
32434
|
type: "array"
|
|
32440
32435
|
},
|
|
32441
32436
|
event_type: {
|
|
32437
|
+
description: "Type of the events that you want to list.",
|
|
32442
32438
|
enum: [
|
|
32443
32439
|
"access_code.created",
|
|
32444
32440
|
"access_code.changed",
|
|
@@ -32532,6 +32528,7 @@ var openapi_default = {
|
|
|
32532
32528
|
type: "string"
|
|
32533
32529
|
},
|
|
32534
32530
|
event_types: {
|
|
32531
|
+
description: "Types of the events that you want to list.",
|
|
32535
32532
|
items: {
|
|
32536
32533
|
enum: [
|
|
32537
32534
|
"access_code.created",
|
|
@@ -32627,9 +32624,21 @@ var openapi_default = {
|
|
|
32627
32624
|
},
|
|
32628
32625
|
type: "array"
|
|
32629
32626
|
},
|
|
32630
|
-
limit: {
|
|
32631
|
-
|
|
32632
|
-
|
|
32627
|
+
limit: {
|
|
32628
|
+
default: 500,
|
|
32629
|
+
description: "Numerical limit on the number of events to return.",
|
|
32630
|
+
format: "float",
|
|
32631
|
+
type: "number"
|
|
32632
|
+
},
|
|
32633
|
+
since: {
|
|
32634
|
+
description: "Timestamp to indicate the beginning generation time for the events that you want to list. You must include `since` or `between`.",
|
|
32635
|
+
type: "string"
|
|
32636
|
+
},
|
|
32637
|
+
unstable_offset: {
|
|
32638
|
+
description: "Offset for the events that you want to list.",
|
|
32639
|
+
format: "float",
|
|
32640
|
+
type: "number"
|
|
32641
|
+
}
|
|
32633
32642
|
},
|
|
32634
32643
|
type: "object"
|
|
32635
32644
|
}
|