@seamapi/types 1.362.0 → 1.363.1
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 +228 -3
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +940 -4
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +1097 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js +67 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +155 -0
- package/lib/seam/connect/models/events/acs/entrances.d.ts +125 -0
- package/lib/seam/connect/models/events/acs/entrances.js +28 -0
- package/lib/seam/connect/models/events/acs/entrances.js.map +1 -0
- package/lib/seam/connect/models/events/acs/index.d.ts +60 -0
- package/lib/seam/connect/models/events/acs/index.js +2 -0
- package/lib/seam/connect/models/events/acs/index.js.map +1 -1
- package/lib/seam/connect/models/events/seam-event.d.ts +61 -1
- package/lib/seam/connect/openapi.d.ts +136 -2
- package/lib/seam/connect/openapi.js +162 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +341 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/models/events/acs/entrances.ts +36 -0
- package/src/lib/seam/connect/models/events/acs/index.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +170 -0
- package/src/lib/seam/connect/route-types.ts +347 -0
package/dist/connect.cjs
CHANGED
|
@@ -1366,7 +1366,8 @@ var unmanaged_device = device.pick({
|
|
|
1366
1366
|
// src/lib/seam/connect/models/access-codes/managed-access-code.ts
|
|
1367
1367
|
var common_access_code_error = zod.z.object({
|
|
1368
1368
|
message: zod.z.string(),
|
|
1369
|
-
is_access_code_error: zod.z.literal(true)
|
|
1369
|
+
is_access_code_error: zod.z.literal(true),
|
|
1370
|
+
created_at: zod.z.string().datetime().optional()
|
|
1370
1371
|
});
|
|
1371
1372
|
var error_code_description3 = "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.";
|
|
1372
1373
|
var smartthings_failed_to_set_access_code_error = common_access_code_error.extend({
|
|
@@ -1451,8 +1452,30 @@ var access_code_error = zod.z.discriminatedUnion("error_code", [
|
|
|
1451
1452
|
hubitat_device_programming_delay,
|
|
1452
1453
|
hubitat_no_free_positions_available
|
|
1453
1454
|
]);
|
|
1455
|
+
zod.z.object({
|
|
1456
|
+
smartthings_failed_to_set_access_code_error: smartthings_failed_to_set_access_code_error.optional().nullable(),
|
|
1457
|
+
smartthings_failed_to_set_after_multiple_retries: smartthings_failed_to_set_after_multiple_retries.optional().nullable(),
|
|
1458
|
+
failed_to_set_on_device: failed_to_set_on_device.optional().nullable(),
|
|
1459
|
+
failed_to_remove_from_device: failed_to_remove_from_device.optional().nullable(),
|
|
1460
|
+
duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
|
|
1461
|
+
duplicate_code_attempt_prevented: duplicate_code_attempt_prevented.optional().nullable(),
|
|
1462
|
+
igloohome_bridge_too_many_pending_jobs: igloohome_bridge_too_many_pending_jobs.optional().nullable(),
|
|
1463
|
+
igloohome_bridge_offline: igloohome_bridge_offline.optional().nullable(),
|
|
1464
|
+
igloohome_offline_access_code_no_variance_available: igloohome_offline_access_code_no_variance_available.optional().nullable(),
|
|
1465
|
+
kwikset_unable_to_confirm_code: kwikset_unable_to_confirm_code.optional().nullable(),
|
|
1466
|
+
kwikset_unable_to_confirm_deletion: kwikset_unable_to_confirm_deletion.optional().nullable(),
|
|
1467
|
+
code_modified_external_to_seam_error: code_modified_external_to_seam_error.optional().nullable(),
|
|
1468
|
+
august_lock_invalid_code_length: august_lock_invalid_code_length.optional().nullable(),
|
|
1469
|
+
august_device_programming_delay_error: august_device_programming_delay_error.optional().nullable(),
|
|
1470
|
+
august_device_slots_full: august_device_slots_full.optional().nullable(),
|
|
1471
|
+
august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
|
|
1472
|
+
salto_site_user_not_subscribed: salto_site_user_not_subscribed.optional().nullable(),
|
|
1473
|
+
hubitat_device_programming_delay: hubitat_device_programming_delay.optional().nullable(),
|
|
1474
|
+
hubitat_no_free_positions_available: hubitat_no_free_positions_available.optional().nullable()
|
|
1475
|
+
});
|
|
1454
1476
|
var common_access_code_warning = zod.z.object({
|
|
1455
|
-
message: zod.z.string()
|
|
1477
|
+
message: zod.z.string(),
|
|
1478
|
+
created_at: zod.z.string().datetime().optional()
|
|
1456
1479
|
});
|
|
1457
1480
|
var warning_code_description3 = "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.";
|
|
1458
1481
|
var smartthings_failed_to_set_access_code_warning = common_access_code_warning.extend({
|
|
@@ -1509,6 +1532,20 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
1509
1532
|
management_transferred,
|
|
1510
1533
|
kwikset_unable_to_confirm_code_warning
|
|
1511
1534
|
]);
|
|
1535
|
+
zod.z.object({
|
|
1536
|
+
smartthings_failed_to_set_access_code_warning: smartthings_failed_to_set_access_code_warning.optional().nullable(),
|
|
1537
|
+
schlage_detected_duplicate: schlage_detected_duplicate.optional().nullable(),
|
|
1538
|
+
schlage_creation_outage: schlage_creation_outage.optional().nullable(),
|
|
1539
|
+
salto_office_mode: salto_office_mode.optional().nullable(),
|
|
1540
|
+
code_modified_external_to_seam_warning: code_modified_external_to_seam_warning.optional().nullable(),
|
|
1541
|
+
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
1542
|
+
delay_in_removing_from_device: delay_in_removing_from_device.optional().nullable(),
|
|
1543
|
+
third_party_integration_detected: third_party_integration_detected2.optional().nullable(),
|
|
1544
|
+
august_device_programming_delay_warning: august_device_programming_delay_warning.optional().nullable(),
|
|
1545
|
+
igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
1546
|
+
management_transferred: management_transferred.optional().nullable(),
|
|
1547
|
+
kwikset_unable_to_confirm_code_warning: kwikset_unable_to_confirm_code_warning.optional().nullable()
|
|
1548
|
+
});
|
|
1512
1549
|
var access_code = zod.z.object({
|
|
1513
1550
|
common_code_key: zod.z.string().nullable().describe(
|
|
1514
1551
|
"Unique identifier for a group of access codes that share the same code."
|
|
@@ -3140,6 +3177,31 @@ var acs_encoder_events = [
|
|
|
3140
3177
|
acs_encoder_added_event,
|
|
3141
3178
|
acs_encoder_removed_event
|
|
3142
3179
|
];
|
|
3180
|
+
var acs_entrance_event = common_acs_event.extend({
|
|
3181
|
+
acs_entrance_id: zod.z.string().uuid()
|
|
3182
|
+
}).describe(
|
|
3183
|
+
"ID of the [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details)."
|
|
3184
|
+
);
|
|
3185
|
+
var acs_entrance_added_event = acs_entrance_event.extend({
|
|
3186
|
+
event_type: zod.z.literal("acs_entrance.added")
|
|
3187
|
+
}).describe(`
|
|
3188
|
+
---
|
|
3189
|
+
route_path: /acs/entrances
|
|
3190
|
+
---
|
|
3191
|
+
An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was added.
|
|
3192
|
+
`);
|
|
3193
|
+
var acs_entrance_removed_event = acs_entrance_event.extend({
|
|
3194
|
+
event_type: zod.z.literal("acs_entrance.removed")
|
|
3195
|
+
}).describe(`
|
|
3196
|
+
---
|
|
3197
|
+
route_path: /acs/entrances
|
|
3198
|
+
---
|
|
3199
|
+
An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was removed.
|
|
3200
|
+
`);
|
|
3201
|
+
var acs_entrance_events = [
|
|
3202
|
+
acs_entrance_added_event,
|
|
3203
|
+
acs_entrance_removed_event
|
|
3204
|
+
];
|
|
3143
3205
|
var acs_system_event = common_acs_event.extend({});
|
|
3144
3206
|
var acs_system_connected_event = acs_system_event.extend({
|
|
3145
3207
|
event_type: zod.z.literal("acs_system.connected")
|
|
@@ -3191,7 +3253,8 @@ var acs_events = [
|
|
|
3191
3253
|
...acs_credential_events,
|
|
3192
3254
|
...acs_user_events,
|
|
3193
3255
|
...acs_encoder_events,
|
|
3194
|
-
...acs_access_group_events
|
|
3256
|
+
...acs_access_group_events,
|
|
3257
|
+
...acs_entrance_events
|
|
3195
3258
|
];
|
|
3196
3259
|
var action_attempt_event = common_event.extend({
|
|
3197
3260
|
action_attempt_id: zod.z.string().uuid().describe(
|
|
@@ -3965,6 +4028,7 @@ var openapi_default = {
|
|
|
3965
4028
|
{
|
|
3966
4029
|
description: "Failed to set code on Smart Things device.",
|
|
3967
4030
|
properties: {
|
|
4031
|
+
created_at: { format: "date-time", type: "string" },
|
|
3968
4032
|
error_code: {
|
|
3969
4033
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
3970
4034
|
enum: ["smartthings_failed_to_set_access_code"],
|
|
@@ -3979,6 +4043,7 @@ var openapi_default = {
|
|
|
3979
4043
|
{
|
|
3980
4044
|
description: "Failed to set code after multiple retries.",
|
|
3981
4045
|
properties: {
|
|
4046
|
+
created_at: { format: "date-time", type: "string" },
|
|
3982
4047
|
error_code: {
|
|
3983
4048
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
3984
4049
|
enum: [
|
|
@@ -3995,6 +4060,7 @@ var openapi_default = {
|
|
|
3995
4060
|
{
|
|
3996
4061
|
description: "Failed to set code on device.",
|
|
3997
4062
|
properties: {
|
|
4063
|
+
created_at: { format: "date-time", type: "string" },
|
|
3998
4064
|
error_code: {
|
|
3999
4065
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4000
4066
|
enum: ["failed_to_set_on_device"],
|
|
@@ -4009,6 +4075,7 @@ var openapi_default = {
|
|
|
4009
4075
|
{
|
|
4010
4076
|
description: "Failed to remove code from device.",
|
|
4011
4077
|
properties: {
|
|
4078
|
+
created_at: { format: "date-time", type: "string" },
|
|
4012
4079
|
error_code: {
|
|
4013
4080
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4014
4081
|
enum: ["failed_to_remove_from_device"],
|
|
@@ -4023,6 +4090,7 @@ var openapi_default = {
|
|
|
4023
4090
|
{
|
|
4024
4091
|
description: "Duplicate access code detected on device.",
|
|
4025
4092
|
properties: {
|
|
4093
|
+
created_at: { format: "date-time", type: "string" },
|
|
4026
4094
|
error_code: {
|
|
4027
4095
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4028
4096
|
enum: ["duplicate_code_on_device"],
|
|
@@ -4037,6 +4105,7 @@ var openapi_default = {
|
|
|
4037
4105
|
{
|
|
4038
4106
|
description: "An attempt to modify this access code was prevented.",
|
|
4039
4107
|
properties: {
|
|
4108
|
+
created_at: { format: "date-time", type: "string" },
|
|
4040
4109
|
error_code: {
|
|
4041
4110
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4042
4111
|
enum: ["duplicate_code_attempt_prevented"],
|
|
@@ -4051,6 +4120,7 @@ var openapi_default = {
|
|
|
4051
4120
|
{
|
|
4052
4121
|
description: "Igloohome bridge has too many pending jobs in the queue.",
|
|
4053
4122
|
properties: {
|
|
4123
|
+
created_at: { format: "date-time", type: "string" },
|
|
4054
4124
|
error_code: {
|
|
4055
4125
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4056
4126
|
enum: ["igloohome_bridge_too_many_pending_jobs"],
|
|
@@ -4065,6 +4135,7 @@ var openapi_default = {
|
|
|
4065
4135
|
{
|
|
4066
4136
|
description: "Igloohome bridge is offline.",
|
|
4067
4137
|
properties: {
|
|
4138
|
+
created_at: { format: "date-time", type: "string" },
|
|
4068
4139
|
error_code: {
|
|
4069
4140
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4070
4141
|
enum: ["igloohome_bridge_offline"],
|
|
@@ -4079,6 +4150,7 @@ var openapi_default = {
|
|
|
4079
4150
|
{
|
|
4080
4151
|
description: "Lock as reached max amount of codes.",
|
|
4081
4152
|
properties: {
|
|
4153
|
+
created_at: { format: "date-time", type: "string" },
|
|
4082
4154
|
error_code: {
|
|
4083
4155
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4084
4156
|
enum: [
|
|
@@ -4095,6 +4167,7 @@ var openapi_default = {
|
|
|
4095
4167
|
{
|
|
4096
4168
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
4097
4169
|
properties: {
|
|
4170
|
+
created_at: { format: "date-time", type: "string" },
|
|
4098
4171
|
error_code: {
|
|
4099
4172
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4100
4173
|
enum: ["kwikset_unable_to_confirm_code"],
|
|
@@ -4109,6 +4182,7 @@ var openapi_default = {
|
|
|
4109
4182
|
{
|
|
4110
4183
|
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
4111
4184
|
properties: {
|
|
4185
|
+
created_at: { format: "date-time", type: "string" },
|
|
4112
4186
|
error_code: {
|
|
4113
4187
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4114
4188
|
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
@@ -4123,6 +4197,7 @@ var openapi_default = {
|
|
|
4123
4197
|
{
|
|
4124
4198
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
4125
4199
|
properties: {
|
|
4200
|
+
created_at: { format: "date-time", type: "string" },
|
|
4126
4201
|
error_code: {
|
|
4127
4202
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4128
4203
|
enum: ["code_modified_external_to_seam"],
|
|
@@ -4137,6 +4212,7 @@ var openapi_default = {
|
|
|
4137
4212
|
{
|
|
4138
4213
|
description: "Invalid code length for August lock.",
|
|
4139
4214
|
properties: {
|
|
4215
|
+
created_at: { format: "date-time", type: "string" },
|
|
4140
4216
|
error_code: {
|
|
4141
4217
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4142
4218
|
enum: ["august_lock_invalid_code_length"],
|
|
@@ -4151,6 +4227,7 @@ var openapi_default = {
|
|
|
4151
4227
|
{
|
|
4152
4228
|
description: "Access code has not yet been fully moved to the device.",
|
|
4153
4229
|
properties: {
|
|
4230
|
+
created_at: { format: "date-time", type: "string" },
|
|
4154
4231
|
error_code: {
|
|
4155
4232
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4156
4233
|
enum: ["august_device_programming_delay"],
|
|
@@ -4165,6 +4242,7 @@ var openapi_default = {
|
|
|
4165
4242
|
{
|
|
4166
4243
|
description: "All access code slots on the device are full.",
|
|
4167
4244
|
properties: {
|
|
4245
|
+
created_at: { format: "date-time", type: "string" },
|
|
4168
4246
|
error_code: {
|
|
4169
4247
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4170
4248
|
enum: ["august_device_slots_full"],
|
|
@@ -4179,6 +4257,7 @@ var openapi_default = {
|
|
|
4179
4257
|
{
|
|
4180
4258
|
description: "August lock is missing a keypad.",
|
|
4181
4259
|
properties: {
|
|
4260
|
+
created_at: { format: "date-time", type: "string" },
|
|
4182
4261
|
error_code: {
|
|
4183
4262
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4184
4263
|
enum: ["august_lock_missing_keypad"],
|
|
@@ -4193,6 +4272,7 @@ var openapi_default = {
|
|
|
4193
4272
|
{
|
|
4194
4273
|
description: "Salto site user is not subscribed.",
|
|
4195
4274
|
properties: {
|
|
4275
|
+
created_at: { format: "date-time", type: "string" },
|
|
4196
4276
|
error_code: {
|
|
4197
4277
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4198
4278
|
enum: ["salto_site_user_not_subscribed"],
|
|
@@ -4207,6 +4287,7 @@ var openapi_default = {
|
|
|
4207
4287
|
{
|
|
4208
4288
|
description: "Access code has not yet been fully moved to the device.",
|
|
4209
4289
|
properties: {
|
|
4290
|
+
created_at: { format: "date-time", type: "string" },
|
|
4210
4291
|
error_code: {
|
|
4211
4292
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4212
4293
|
enum: ["hubitat_device_programming_delay"],
|
|
@@ -4221,6 +4302,7 @@ var openapi_default = {
|
|
|
4221
4302
|
{
|
|
4222
4303
|
description: "No free positions available on the device.",
|
|
4223
4304
|
properties: {
|
|
4305
|
+
created_at: { format: "date-time", type: "string" },
|
|
4224
4306
|
error_code: {
|
|
4225
4307
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4226
4308
|
enum: ["hubitat_no_free_positions_available"],
|
|
@@ -4601,6 +4683,7 @@ var openapi_default = {
|
|
|
4601
4683
|
{
|
|
4602
4684
|
description: "Failed to set code on Smart Things device.",
|
|
4603
4685
|
properties: {
|
|
4686
|
+
created_at: { format: "date-time", type: "string" },
|
|
4604
4687
|
message: { type: "string" },
|
|
4605
4688
|
warning_code: {
|
|
4606
4689
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4614,6 +4697,7 @@ var openapi_default = {
|
|
|
4614
4697
|
{
|
|
4615
4698
|
description: "Duplicate access code detected.",
|
|
4616
4699
|
properties: {
|
|
4700
|
+
created_at: { format: "date-time", type: "string" },
|
|
4617
4701
|
message: { type: "string" },
|
|
4618
4702
|
warning_code: {
|
|
4619
4703
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4627,6 +4711,7 @@ var openapi_default = {
|
|
|
4627
4711
|
{
|
|
4628
4712
|
description: "Received an error when attempting to create this code.",
|
|
4629
4713
|
properties: {
|
|
4714
|
+
created_at: { format: "date-time", type: "string" },
|
|
4630
4715
|
message: { type: "string" },
|
|
4631
4716
|
warning_code: {
|
|
4632
4717
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4640,6 +4725,7 @@ var openapi_default = {
|
|
|
4640
4725
|
{
|
|
4641
4726
|
description: "Lock is in Office Mode. Access Codes will not unlock doors.",
|
|
4642
4727
|
properties: {
|
|
4728
|
+
created_at: { format: "date-time", type: "string" },
|
|
4643
4729
|
message: { type: "string" },
|
|
4644
4730
|
warning_code: {
|
|
4645
4731
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4653,6 +4739,7 @@ var openapi_default = {
|
|
|
4653
4739
|
{
|
|
4654
4740
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
4655
4741
|
properties: {
|
|
4742
|
+
created_at: { format: "date-time", type: "string" },
|
|
4656
4743
|
message: { type: "string" },
|
|
4657
4744
|
warning_code: {
|
|
4658
4745
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4666,6 +4753,7 @@ var openapi_default = {
|
|
|
4666
4753
|
{
|
|
4667
4754
|
description: "Delay in setting code on device.",
|
|
4668
4755
|
properties: {
|
|
4756
|
+
created_at: { format: "date-time", type: "string" },
|
|
4669
4757
|
message: { type: "string" },
|
|
4670
4758
|
warning_code: {
|
|
4671
4759
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4679,6 +4767,7 @@ var openapi_default = {
|
|
|
4679
4767
|
{
|
|
4680
4768
|
description: "Delay in removing code from device.",
|
|
4681
4769
|
properties: {
|
|
4770
|
+
created_at: { format: "date-time", type: "string" },
|
|
4682
4771
|
message: { type: "string" },
|
|
4683
4772
|
warning_code: {
|
|
4684
4773
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4692,6 +4781,7 @@ var openapi_default = {
|
|
|
4692
4781
|
{
|
|
4693
4782
|
description: "Third party integration detected that may cause access codes to fail.",
|
|
4694
4783
|
properties: {
|
|
4784
|
+
created_at: { format: "date-time", type: "string" },
|
|
4695
4785
|
message: { type: "string" },
|
|
4696
4786
|
warning_code: {
|
|
4697
4787
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4705,6 +4795,7 @@ var openapi_default = {
|
|
|
4705
4795
|
{
|
|
4706
4796
|
description: "Access code has not yet been fully moved to the device.",
|
|
4707
4797
|
properties: {
|
|
4798
|
+
created_at: { format: "date-time", type: "string" },
|
|
4708
4799
|
message: { type: "string" },
|
|
4709
4800
|
warning_code: {
|
|
4710
4801
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4718,6 +4809,7 @@ var openapi_default = {
|
|
|
4718
4809
|
{
|
|
4719
4810
|
description: "Algopins must be used within 24 hours.",
|
|
4720
4811
|
properties: {
|
|
4812
|
+
created_at: { format: "date-time", type: "string" },
|
|
4721
4813
|
message: { type: "string" },
|
|
4722
4814
|
warning_code: {
|
|
4723
4815
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4731,6 +4823,7 @@ var openapi_default = {
|
|
|
4731
4823
|
{
|
|
4732
4824
|
description: "Management was transferred to another workspace.",
|
|
4733
4825
|
properties: {
|
|
4826
|
+
created_at: { format: "date-time", type: "string" },
|
|
4734
4827
|
message: { type: "string" },
|
|
4735
4828
|
warning_code: {
|
|
4736
4829
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4744,6 +4837,7 @@ var openapi_default = {
|
|
|
4744
4837
|
{
|
|
4745
4838
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
4746
4839
|
properties: {
|
|
4840
|
+
created_at: { format: "date-time", type: "string" },
|
|
4747
4841
|
message: { type: "string" },
|
|
4748
4842
|
warning_code: {
|
|
4749
4843
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -12713,6 +12807,102 @@ var openapi_default = {
|
|
|
12713
12807
|
type: "object",
|
|
12714
12808
|
"x-route-path": "/acs/access_groups"
|
|
12715
12809
|
},
|
|
12810
|
+
{
|
|
12811
|
+
description: "An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was added.",
|
|
12812
|
+
properties: {
|
|
12813
|
+
acs_entrance_id: { format: "uuid", type: "string" },
|
|
12814
|
+
acs_system_id: {
|
|
12815
|
+
description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
12816
|
+
format: "uuid",
|
|
12817
|
+
type: "string"
|
|
12818
|
+
},
|
|
12819
|
+
connected_account_id: {
|
|
12820
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
12821
|
+
format: "uuid",
|
|
12822
|
+
type: "string"
|
|
12823
|
+
},
|
|
12824
|
+
created_at: {
|
|
12825
|
+
description: "Date and time at which the event was created.",
|
|
12826
|
+
format: "date-time",
|
|
12827
|
+
type: "string"
|
|
12828
|
+
},
|
|
12829
|
+
event_id: {
|
|
12830
|
+
description: "ID of the event.",
|
|
12831
|
+
format: "uuid",
|
|
12832
|
+
type: "string"
|
|
12833
|
+
},
|
|
12834
|
+
event_type: { enum: ["acs_entrance.added"], type: "string" },
|
|
12835
|
+
occurred_at: {
|
|
12836
|
+
description: "Date and time at which the event occurred.",
|
|
12837
|
+
format: "date-time",
|
|
12838
|
+
type: "string"
|
|
12839
|
+
},
|
|
12840
|
+
workspace_id: {
|
|
12841
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12842
|
+
format: "uuid",
|
|
12843
|
+
type: "string"
|
|
12844
|
+
}
|
|
12845
|
+
},
|
|
12846
|
+
required: [
|
|
12847
|
+
"event_id",
|
|
12848
|
+
"workspace_id",
|
|
12849
|
+
"created_at",
|
|
12850
|
+
"occurred_at",
|
|
12851
|
+
"acs_system_id",
|
|
12852
|
+
"acs_entrance_id",
|
|
12853
|
+
"event_type"
|
|
12854
|
+
],
|
|
12855
|
+
type: "object",
|
|
12856
|
+
"x-route-path": "/acs/entrances"
|
|
12857
|
+
},
|
|
12858
|
+
{
|
|
12859
|
+
description: "An [ACS entrance](https://docs.seam.co/latest/capability-guides/retrieving-entrance-details) was removed.",
|
|
12860
|
+
properties: {
|
|
12861
|
+
acs_entrance_id: { format: "uuid", type: "string" },
|
|
12862
|
+
acs_system_id: {
|
|
12863
|
+
description: "ID of the [ACS system](https://docs.seam.co/latest/capability-guides/access-systems).",
|
|
12864
|
+
format: "uuid",
|
|
12865
|
+
type: "string"
|
|
12866
|
+
},
|
|
12867
|
+
connected_account_id: {
|
|
12868
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/core-concepts/connected-accounts).",
|
|
12869
|
+
format: "uuid",
|
|
12870
|
+
type: "string"
|
|
12871
|
+
},
|
|
12872
|
+
created_at: {
|
|
12873
|
+
description: "Date and time at which the event was created.",
|
|
12874
|
+
format: "date-time",
|
|
12875
|
+
type: "string"
|
|
12876
|
+
},
|
|
12877
|
+
event_id: {
|
|
12878
|
+
description: "ID of the event.",
|
|
12879
|
+
format: "uuid",
|
|
12880
|
+
type: "string"
|
|
12881
|
+
},
|
|
12882
|
+
event_type: { enum: ["acs_entrance.removed"], type: "string" },
|
|
12883
|
+
occurred_at: {
|
|
12884
|
+
description: "Date and time at which the event occurred.",
|
|
12885
|
+
format: "date-time",
|
|
12886
|
+
type: "string"
|
|
12887
|
+
},
|
|
12888
|
+
workspace_id: {
|
|
12889
|
+
description: "ID of the [workspace](https://docs.seam.co/latest/core-concepts/workspaces).",
|
|
12890
|
+
format: "uuid",
|
|
12891
|
+
type: "string"
|
|
12892
|
+
}
|
|
12893
|
+
},
|
|
12894
|
+
required: [
|
|
12895
|
+
"event_id",
|
|
12896
|
+
"workspace_id",
|
|
12897
|
+
"created_at",
|
|
12898
|
+
"occurred_at",
|
|
12899
|
+
"acs_system_id",
|
|
12900
|
+
"acs_entrance_id",
|
|
12901
|
+
"event_type"
|
|
12902
|
+
],
|
|
12903
|
+
type: "object",
|
|
12904
|
+
"x-route-path": "/acs/entrances"
|
|
12905
|
+
},
|
|
12716
12906
|
{
|
|
12717
12907
|
description: "A [client session](https://docs.seam.co/latest/core-concepts/authentication/client-session-tokens) was deleted.",
|
|
12718
12908
|
properties: {
|
|
@@ -15646,6 +15836,7 @@ var openapi_default = {
|
|
|
15646
15836
|
{
|
|
15647
15837
|
description: "Failed to set code on Smart Things device.",
|
|
15648
15838
|
properties: {
|
|
15839
|
+
created_at: { format: "date-time", type: "string" },
|
|
15649
15840
|
error_code: {
|
|
15650
15841
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15651
15842
|
enum: ["smartthings_failed_to_set_access_code"],
|
|
@@ -15660,6 +15851,7 @@ var openapi_default = {
|
|
|
15660
15851
|
{
|
|
15661
15852
|
description: "Failed to set code after multiple retries.",
|
|
15662
15853
|
properties: {
|
|
15854
|
+
created_at: { format: "date-time", type: "string" },
|
|
15663
15855
|
error_code: {
|
|
15664
15856
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15665
15857
|
enum: [
|
|
@@ -15676,6 +15868,7 @@ var openapi_default = {
|
|
|
15676
15868
|
{
|
|
15677
15869
|
description: "Failed to set code on device.",
|
|
15678
15870
|
properties: {
|
|
15871
|
+
created_at: { format: "date-time", type: "string" },
|
|
15679
15872
|
error_code: {
|
|
15680
15873
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15681
15874
|
enum: ["failed_to_set_on_device"],
|
|
@@ -15690,6 +15883,7 @@ var openapi_default = {
|
|
|
15690
15883
|
{
|
|
15691
15884
|
description: "Failed to remove code from device.",
|
|
15692
15885
|
properties: {
|
|
15886
|
+
created_at: { format: "date-time", type: "string" },
|
|
15693
15887
|
error_code: {
|
|
15694
15888
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15695
15889
|
enum: ["failed_to_remove_from_device"],
|
|
@@ -15704,6 +15898,7 @@ var openapi_default = {
|
|
|
15704
15898
|
{
|
|
15705
15899
|
description: "Duplicate access code detected on device.",
|
|
15706
15900
|
properties: {
|
|
15901
|
+
created_at: { format: "date-time", type: "string" },
|
|
15707
15902
|
error_code: {
|
|
15708
15903
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15709
15904
|
enum: ["duplicate_code_on_device"],
|
|
@@ -15718,6 +15913,7 @@ var openapi_default = {
|
|
|
15718
15913
|
{
|
|
15719
15914
|
description: "An attempt to modify this access code was prevented.",
|
|
15720
15915
|
properties: {
|
|
15916
|
+
created_at: { format: "date-time", type: "string" },
|
|
15721
15917
|
error_code: {
|
|
15722
15918
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15723
15919
|
enum: ["duplicate_code_attempt_prevented"],
|
|
@@ -15732,6 +15928,7 @@ var openapi_default = {
|
|
|
15732
15928
|
{
|
|
15733
15929
|
description: "Igloohome bridge has too many pending jobs in the queue.",
|
|
15734
15930
|
properties: {
|
|
15931
|
+
created_at: { format: "date-time", type: "string" },
|
|
15735
15932
|
error_code: {
|
|
15736
15933
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15737
15934
|
enum: ["igloohome_bridge_too_many_pending_jobs"],
|
|
@@ -15746,6 +15943,7 @@ var openapi_default = {
|
|
|
15746
15943
|
{
|
|
15747
15944
|
description: "Igloohome bridge is offline.",
|
|
15748
15945
|
properties: {
|
|
15946
|
+
created_at: { format: "date-time", type: "string" },
|
|
15749
15947
|
error_code: {
|
|
15750
15948
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15751
15949
|
enum: ["igloohome_bridge_offline"],
|
|
@@ -15760,6 +15958,7 @@ var openapi_default = {
|
|
|
15760
15958
|
{
|
|
15761
15959
|
description: "Lock as reached max amount of codes.",
|
|
15762
15960
|
properties: {
|
|
15961
|
+
created_at: { format: "date-time", type: "string" },
|
|
15763
15962
|
error_code: {
|
|
15764
15963
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15765
15964
|
enum: [
|
|
@@ -15776,6 +15975,7 @@ var openapi_default = {
|
|
|
15776
15975
|
{
|
|
15777
15976
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
15778
15977
|
properties: {
|
|
15978
|
+
created_at: { format: "date-time", type: "string" },
|
|
15779
15979
|
error_code: {
|
|
15780
15980
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15781
15981
|
enum: ["kwikset_unable_to_confirm_code"],
|
|
@@ -15790,6 +15990,7 @@ var openapi_default = {
|
|
|
15790
15990
|
{
|
|
15791
15991
|
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
15792
15992
|
properties: {
|
|
15993
|
+
created_at: { format: "date-time", type: "string" },
|
|
15793
15994
|
error_code: {
|
|
15794
15995
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15795
15996
|
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
@@ -15804,6 +16005,7 @@ var openapi_default = {
|
|
|
15804
16005
|
{
|
|
15805
16006
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
15806
16007
|
properties: {
|
|
16008
|
+
created_at: { format: "date-time", type: "string" },
|
|
15807
16009
|
error_code: {
|
|
15808
16010
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15809
16011
|
enum: ["code_modified_external_to_seam"],
|
|
@@ -15818,6 +16020,7 @@ var openapi_default = {
|
|
|
15818
16020
|
{
|
|
15819
16021
|
description: "Invalid code length for August lock.",
|
|
15820
16022
|
properties: {
|
|
16023
|
+
created_at: { format: "date-time", type: "string" },
|
|
15821
16024
|
error_code: {
|
|
15822
16025
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15823
16026
|
enum: ["august_lock_invalid_code_length"],
|
|
@@ -15832,6 +16035,7 @@ var openapi_default = {
|
|
|
15832
16035
|
{
|
|
15833
16036
|
description: "Access code has not yet been fully moved to the device.",
|
|
15834
16037
|
properties: {
|
|
16038
|
+
created_at: { format: "date-time", type: "string" },
|
|
15835
16039
|
error_code: {
|
|
15836
16040
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15837
16041
|
enum: ["august_device_programming_delay"],
|
|
@@ -15846,6 +16050,7 @@ var openapi_default = {
|
|
|
15846
16050
|
{
|
|
15847
16051
|
description: "All access code slots on the device are full.",
|
|
15848
16052
|
properties: {
|
|
16053
|
+
created_at: { format: "date-time", type: "string" },
|
|
15849
16054
|
error_code: {
|
|
15850
16055
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15851
16056
|
enum: ["august_device_slots_full"],
|
|
@@ -15860,6 +16065,7 @@ var openapi_default = {
|
|
|
15860
16065
|
{
|
|
15861
16066
|
description: "August lock is missing a keypad.",
|
|
15862
16067
|
properties: {
|
|
16068
|
+
created_at: { format: "date-time", type: "string" },
|
|
15863
16069
|
error_code: {
|
|
15864
16070
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15865
16071
|
enum: ["august_lock_missing_keypad"],
|
|
@@ -15874,6 +16080,7 @@ var openapi_default = {
|
|
|
15874
16080
|
{
|
|
15875
16081
|
description: "Salto site user is not subscribed.",
|
|
15876
16082
|
properties: {
|
|
16083
|
+
created_at: { format: "date-time", type: "string" },
|
|
15877
16084
|
error_code: {
|
|
15878
16085
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15879
16086
|
enum: ["salto_site_user_not_subscribed"],
|
|
@@ -15888,6 +16095,7 @@ var openapi_default = {
|
|
|
15888
16095
|
{
|
|
15889
16096
|
description: "Access code has not yet been fully moved to the device.",
|
|
15890
16097
|
properties: {
|
|
16098
|
+
created_at: { format: "date-time", type: "string" },
|
|
15891
16099
|
error_code: {
|
|
15892
16100
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15893
16101
|
enum: ["hubitat_device_programming_delay"],
|
|
@@ -15902,6 +16110,7 @@ var openapi_default = {
|
|
|
15902
16110
|
{
|
|
15903
16111
|
description: "No free positions available on the device.",
|
|
15904
16112
|
properties: {
|
|
16113
|
+
created_at: { format: "date-time", type: "string" },
|
|
15905
16114
|
error_code: {
|
|
15906
16115
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15907
16116
|
enum: ["hubitat_no_free_positions_available"],
|
|
@@ -16240,6 +16449,7 @@ var openapi_default = {
|
|
|
16240
16449
|
{
|
|
16241
16450
|
description: "Failed to set code on Smart Things device.",
|
|
16242
16451
|
properties: {
|
|
16452
|
+
created_at: { format: "date-time", type: "string" },
|
|
16243
16453
|
message: { type: "string" },
|
|
16244
16454
|
warning_code: {
|
|
16245
16455
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16253,6 +16463,7 @@ var openapi_default = {
|
|
|
16253
16463
|
{
|
|
16254
16464
|
description: "Duplicate access code detected.",
|
|
16255
16465
|
properties: {
|
|
16466
|
+
created_at: { format: "date-time", type: "string" },
|
|
16256
16467
|
message: { type: "string" },
|
|
16257
16468
|
warning_code: {
|
|
16258
16469
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16266,6 +16477,7 @@ var openapi_default = {
|
|
|
16266
16477
|
{
|
|
16267
16478
|
description: "Received an error when attempting to create this code.",
|
|
16268
16479
|
properties: {
|
|
16480
|
+
created_at: { format: "date-time", type: "string" },
|
|
16269
16481
|
message: { type: "string" },
|
|
16270
16482
|
warning_code: {
|
|
16271
16483
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16279,6 +16491,7 @@ var openapi_default = {
|
|
|
16279
16491
|
{
|
|
16280
16492
|
description: "Lock is in Office Mode. Access Codes will not unlock doors.",
|
|
16281
16493
|
properties: {
|
|
16494
|
+
created_at: { format: "date-time", type: "string" },
|
|
16282
16495
|
message: { type: "string" },
|
|
16283
16496
|
warning_code: {
|
|
16284
16497
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16292,6 +16505,7 @@ var openapi_default = {
|
|
|
16292
16505
|
{
|
|
16293
16506
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
16294
16507
|
properties: {
|
|
16508
|
+
created_at: { format: "date-time", type: "string" },
|
|
16295
16509
|
message: { type: "string" },
|
|
16296
16510
|
warning_code: {
|
|
16297
16511
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16305,6 +16519,7 @@ var openapi_default = {
|
|
|
16305
16519
|
{
|
|
16306
16520
|
description: "Delay in setting code on device.",
|
|
16307
16521
|
properties: {
|
|
16522
|
+
created_at: { format: "date-time", type: "string" },
|
|
16308
16523
|
message: { type: "string" },
|
|
16309
16524
|
warning_code: {
|
|
16310
16525
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16318,6 +16533,7 @@ var openapi_default = {
|
|
|
16318
16533
|
{
|
|
16319
16534
|
description: "Delay in removing code from device.",
|
|
16320
16535
|
properties: {
|
|
16536
|
+
created_at: { format: "date-time", type: "string" },
|
|
16321
16537
|
message: { type: "string" },
|
|
16322
16538
|
warning_code: {
|
|
16323
16539
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16331,6 +16547,7 @@ var openapi_default = {
|
|
|
16331
16547
|
{
|
|
16332
16548
|
description: "Third party integration detected that may cause access codes to fail.",
|
|
16333
16549
|
properties: {
|
|
16550
|
+
created_at: { format: "date-time", type: "string" },
|
|
16334
16551
|
message: { type: "string" },
|
|
16335
16552
|
warning_code: {
|
|
16336
16553
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16344,6 +16561,7 @@ var openapi_default = {
|
|
|
16344
16561
|
{
|
|
16345
16562
|
description: "Access code has not yet been fully moved to the device.",
|
|
16346
16563
|
properties: {
|
|
16564
|
+
created_at: { format: "date-time", type: "string" },
|
|
16347
16565
|
message: { type: "string" },
|
|
16348
16566
|
warning_code: {
|
|
16349
16567
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16357,6 +16575,7 @@ var openapi_default = {
|
|
|
16357
16575
|
{
|
|
16358
16576
|
description: "Algopins must be used within 24 hours.",
|
|
16359
16577
|
properties: {
|
|
16578
|
+
created_at: { format: "date-time", type: "string" },
|
|
16360
16579
|
message: { type: "string" },
|
|
16361
16580
|
warning_code: {
|
|
16362
16581
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16370,6 +16589,7 @@ var openapi_default = {
|
|
|
16370
16589
|
{
|
|
16371
16590
|
description: "Management was transferred to another workspace.",
|
|
16372
16591
|
properties: {
|
|
16592
|
+
created_at: { format: "date-time", type: "string" },
|
|
16373
16593
|
message: { type: "string" },
|
|
16374
16594
|
warning_code: {
|
|
16375
16595
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16383,6 +16603,7 @@ var openapi_default = {
|
|
|
16383
16603
|
{
|
|
16384
16604
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
16385
16605
|
properties: {
|
|
16606
|
+
created_at: { format: "date-time", type: "string" },
|
|
16386
16607
|
message: { type: "string" },
|
|
16387
16608
|
warning_code: {
|
|
16388
16609
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -25295,6 +25516,8 @@ var openapi_default = {
|
|
|
25295
25516
|
"acs_encoder.added",
|
|
25296
25517
|
"acs_encoder.removed",
|
|
25297
25518
|
"acs_access_group.deleted",
|
|
25519
|
+
"acs_entrance.added",
|
|
25520
|
+
"acs_entrance.removed",
|
|
25298
25521
|
"client_session.deleted",
|
|
25299
25522
|
"connected_account.connected",
|
|
25300
25523
|
"connected_account.created",
|
|
@@ -25377,6 +25600,8 @@ var openapi_default = {
|
|
|
25377
25600
|
"acs_encoder.added",
|
|
25378
25601
|
"acs_encoder.removed",
|
|
25379
25602
|
"acs_access_group.deleted",
|
|
25603
|
+
"acs_entrance.added",
|
|
25604
|
+
"acs_entrance.removed",
|
|
25380
25605
|
"client_session.deleted",
|
|
25381
25606
|
"connected_account.connected",
|
|
25382
25607
|
"connected_account.created",
|