@seamapi/types 1.363.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 +101 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +700 -2
- 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/openapi.d.ts +18 -2
- package/lib/seam/connect/openapi.js +62 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +279 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +79 -0
- package/src/lib/seam/connect/openapi.ts +62 -0
- package/src/lib/seam/connect/route-types.ts +279 -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."
|
|
@@ -3991,6 +4028,7 @@ var openapi_default = {
|
|
|
3991
4028
|
{
|
|
3992
4029
|
description: "Failed to set code on Smart Things device.",
|
|
3993
4030
|
properties: {
|
|
4031
|
+
created_at: { format: "date-time", type: "string" },
|
|
3994
4032
|
error_code: {
|
|
3995
4033
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
3996
4034
|
enum: ["smartthings_failed_to_set_access_code"],
|
|
@@ -4005,6 +4043,7 @@ var openapi_default = {
|
|
|
4005
4043
|
{
|
|
4006
4044
|
description: "Failed to set code after multiple retries.",
|
|
4007
4045
|
properties: {
|
|
4046
|
+
created_at: { format: "date-time", type: "string" },
|
|
4008
4047
|
error_code: {
|
|
4009
4048
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4010
4049
|
enum: [
|
|
@@ -4021,6 +4060,7 @@ var openapi_default = {
|
|
|
4021
4060
|
{
|
|
4022
4061
|
description: "Failed to set code on device.",
|
|
4023
4062
|
properties: {
|
|
4063
|
+
created_at: { format: "date-time", type: "string" },
|
|
4024
4064
|
error_code: {
|
|
4025
4065
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4026
4066
|
enum: ["failed_to_set_on_device"],
|
|
@@ -4035,6 +4075,7 @@ var openapi_default = {
|
|
|
4035
4075
|
{
|
|
4036
4076
|
description: "Failed to remove code from device.",
|
|
4037
4077
|
properties: {
|
|
4078
|
+
created_at: { format: "date-time", type: "string" },
|
|
4038
4079
|
error_code: {
|
|
4039
4080
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4040
4081
|
enum: ["failed_to_remove_from_device"],
|
|
@@ -4049,6 +4090,7 @@ var openapi_default = {
|
|
|
4049
4090
|
{
|
|
4050
4091
|
description: "Duplicate access code detected on device.",
|
|
4051
4092
|
properties: {
|
|
4093
|
+
created_at: { format: "date-time", type: "string" },
|
|
4052
4094
|
error_code: {
|
|
4053
4095
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4054
4096
|
enum: ["duplicate_code_on_device"],
|
|
@@ -4063,6 +4105,7 @@ var openapi_default = {
|
|
|
4063
4105
|
{
|
|
4064
4106
|
description: "An attempt to modify this access code was prevented.",
|
|
4065
4107
|
properties: {
|
|
4108
|
+
created_at: { format: "date-time", type: "string" },
|
|
4066
4109
|
error_code: {
|
|
4067
4110
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4068
4111
|
enum: ["duplicate_code_attempt_prevented"],
|
|
@@ -4077,6 +4120,7 @@ var openapi_default = {
|
|
|
4077
4120
|
{
|
|
4078
4121
|
description: "Igloohome bridge has too many pending jobs in the queue.",
|
|
4079
4122
|
properties: {
|
|
4123
|
+
created_at: { format: "date-time", type: "string" },
|
|
4080
4124
|
error_code: {
|
|
4081
4125
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4082
4126
|
enum: ["igloohome_bridge_too_many_pending_jobs"],
|
|
@@ -4091,6 +4135,7 @@ var openapi_default = {
|
|
|
4091
4135
|
{
|
|
4092
4136
|
description: "Igloohome bridge is offline.",
|
|
4093
4137
|
properties: {
|
|
4138
|
+
created_at: { format: "date-time", type: "string" },
|
|
4094
4139
|
error_code: {
|
|
4095
4140
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4096
4141
|
enum: ["igloohome_bridge_offline"],
|
|
@@ -4105,6 +4150,7 @@ var openapi_default = {
|
|
|
4105
4150
|
{
|
|
4106
4151
|
description: "Lock as reached max amount of codes.",
|
|
4107
4152
|
properties: {
|
|
4153
|
+
created_at: { format: "date-time", type: "string" },
|
|
4108
4154
|
error_code: {
|
|
4109
4155
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4110
4156
|
enum: [
|
|
@@ -4121,6 +4167,7 @@ var openapi_default = {
|
|
|
4121
4167
|
{
|
|
4122
4168
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
4123
4169
|
properties: {
|
|
4170
|
+
created_at: { format: "date-time", type: "string" },
|
|
4124
4171
|
error_code: {
|
|
4125
4172
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4126
4173
|
enum: ["kwikset_unable_to_confirm_code"],
|
|
@@ -4135,6 +4182,7 @@ var openapi_default = {
|
|
|
4135
4182
|
{
|
|
4136
4183
|
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
4137
4184
|
properties: {
|
|
4185
|
+
created_at: { format: "date-time", type: "string" },
|
|
4138
4186
|
error_code: {
|
|
4139
4187
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4140
4188
|
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
@@ -4149,6 +4197,7 @@ var openapi_default = {
|
|
|
4149
4197
|
{
|
|
4150
4198
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
4151
4199
|
properties: {
|
|
4200
|
+
created_at: { format: "date-time", type: "string" },
|
|
4152
4201
|
error_code: {
|
|
4153
4202
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4154
4203
|
enum: ["code_modified_external_to_seam"],
|
|
@@ -4163,6 +4212,7 @@ var openapi_default = {
|
|
|
4163
4212
|
{
|
|
4164
4213
|
description: "Invalid code length for August lock.",
|
|
4165
4214
|
properties: {
|
|
4215
|
+
created_at: { format: "date-time", type: "string" },
|
|
4166
4216
|
error_code: {
|
|
4167
4217
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4168
4218
|
enum: ["august_lock_invalid_code_length"],
|
|
@@ -4177,6 +4227,7 @@ var openapi_default = {
|
|
|
4177
4227
|
{
|
|
4178
4228
|
description: "Access code has not yet been fully moved to the device.",
|
|
4179
4229
|
properties: {
|
|
4230
|
+
created_at: { format: "date-time", type: "string" },
|
|
4180
4231
|
error_code: {
|
|
4181
4232
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4182
4233
|
enum: ["august_device_programming_delay"],
|
|
@@ -4191,6 +4242,7 @@ var openapi_default = {
|
|
|
4191
4242
|
{
|
|
4192
4243
|
description: "All access code slots on the device are full.",
|
|
4193
4244
|
properties: {
|
|
4245
|
+
created_at: { format: "date-time", type: "string" },
|
|
4194
4246
|
error_code: {
|
|
4195
4247
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4196
4248
|
enum: ["august_device_slots_full"],
|
|
@@ -4205,6 +4257,7 @@ var openapi_default = {
|
|
|
4205
4257
|
{
|
|
4206
4258
|
description: "August lock is missing a keypad.",
|
|
4207
4259
|
properties: {
|
|
4260
|
+
created_at: { format: "date-time", type: "string" },
|
|
4208
4261
|
error_code: {
|
|
4209
4262
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4210
4263
|
enum: ["august_lock_missing_keypad"],
|
|
@@ -4219,6 +4272,7 @@ var openapi_default = {
|
|
|
4219
4272
|
{
|
|
4220
4273
|
description: "Salto site user is not subscribed.",
|
|
4221
4274
|
properties: {
|
|
4275
|
+
created_at: { format: "date-time", type: "string" },
|
|
4222
4276
|
error_code: {
|
|
4223
4277
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4224
4278
|
enum: ["salto_site_user_not_subscribed"],
|
|
@@ -4233,6 +4287,7 @@ var openapi_default = {
|
|
|
4233
4287
|
{
|
|
4234
4288
|
description: "Access code has not yet been fully moved to the device.",
|
|
4235
4289
|
properties: {
|
|
4290
|
+
created_at: { format: "date-time", type: "string" },
|
|
4236
4291
|
error_code: {
|
|
4237
4292
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4238
4293
|
enum: ["hubitat_device_programming_delay"],
|
|
@@ -4247,6 +4302,7 @@ var openapi_default = {
|
|
|
4247
4302
|
{
|
|
4248
4303
|
description: "No free positions available on the device.",
|
|
4249
4304
|
properties: {
|
|
4305
|
+
created_at: { format: "date-time", type: "string" },
|
|
4250
4306
|
error_code: {
|
|
4251
4307
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4252
4308
|
enum: ["hubitat_no_free_positions_available"],
|
|
@@ -4627,6 +4683,7 @@ var openapi_default = {
|
|
|
4627
4683
|
{
|
|
4628
4684
|
description: "Failed to set code on Smart Things device.",
|
|
4629
4685
|
properties: {
|
|
4686
|
+
created_at: { format: "date-time", type: "string" },
|
|
4630
4687
|
message: { type: "string" },
|
|
4631
4688
|
warning_code: {
|
|
4632
4689
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4640,6 +4697,7 @@ var openapi_default = {
|
|
|
4640
4697
|
{
|
|
4641
4698
|
description: "Duplicate access code detected.",
|
|
4642
4699
|
properties: {
|
|
4700
|
+
created_at: { format: "date-time", type: "string" },
|
|
4643
4701
|
message: { type: "string" },
|
|
4644
4702
|
warning_code: {
|
|
4645
4703
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4653,6 +4711,7 @@ var openapi_default = {
|
|
|
4653
4711
|
{
|
|
4654
4712
|
description: "Received an error when attempting to create this code.",
|
|
4655
4713
|
properties: {
|
|
4714
|
+
created_at: { format: "date-time", type: "string" },
|
|
4656
4715
|
message: { type: "string" },
|
|
4657
4716
|
warning_code: {
|
|
4658
4717
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4666,6 +4725,7 @@ var openapi_default = {
|
|
|
4666
4725
|
{
|
|
4667
4726
|
description: "Lock is in Office Mode. Access Codes will not unlock doors.",
|
|
4668
4727
|
properties: {
|
|
4728
|
+
created_at: { format: "date-time", type: "string" },
|
|
4669
4729
|
message: { type: "string" },
|
|
4670
4730
|
warning_code: {
|
|
4671
4731
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4679,6 +4739,7 @@ var openapi_default = {
|
|
|
4679
4739
|
{
|
|
4680
4740
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
4681
4741
|
properties: {
|
|
4742
|
+
created_at: { format: "date-time", type: "string" },
|
|
4682
4743
|
message: { type: "string" },
|
|
4683
4744
|
warning_code: {
|
|
4684
4745
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4692,6 +4753,7 @@ var openapi_default = {
|
|
|
4692
4753
|
{
|
|
4693
4754
|
description: "Delay in setting code on device.",
|
|
4694
4755
|
properties: {
|
|
4756
|
+
created_at: { format: "date-time", type: "string" },
|
|
4695
4757
|
message: { type: "string" },
|
|
4696
4758
|
warning_code: {
|
|
4697
4759
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4705,6 +4767,7 @@ var openapi_default = {
|
|
|
4705
4767
|
{
|
|
4706
4768
|
description: "Delay in removing code from device.",
|
|
4707
4769
|
properties: {
|
|
4770
|
+
created_at: { format: "date-time", type: "string" },
|
|
4708
4771
|
message: { type: "string" },
|
|
4709
4772
|
warning_code: {
|
|
4710
4773
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4718,6 +4781,7 @@ var openapi_default = {
|
|
|
4718
4781
|
{
|
|
4719
4782
|
description: "Third party integration detected that may cause access codes to fail.",
|
|
4720
4783
|
properties: {
|
|
4784
|
+
created_at: { format: "date-time", type: "string" },
|
|
4721
4785
|
message: { type: "string" },
|
|
4722
4786
|
warning_code: {
|
|
4723
4787
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4731,6 +4795,7 @@ var openapi_default = {
|
|
|
4731
4795
|
{
|
|
4732
4796
|
description: "Access code has not yet been fully moved to the device.",
|
|
4733
4797
|
properties: {
|
|
4798
|
+
created_at: { format: "date-time", type: "string" },
|
|
4734
4799
|
message: { type: "string" },
|
|
4735
4800
|
warning_code: {
|
|
4736
4801
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4744,6 +4809,7 @@ var openapi_default = {
|
|
|
4744
4809
|
{
|
|
4745
4810
|
description: "Algopins must be used within 24 hours.",
|
|
4746
4811
|
properties: {
|
|
4812
|
+
created_at: { format: "date-time", type: "string" },
|
|
4747
4813
|
message: { type: "string" },
|
|
4748
4814
|
warning_code: {
|
|
4749
4815
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4757,6 +4823,7 @@ var openapi_default = {
|
|
|
4757
4823
|
{
|
|
4758
4824
|
description: "Management was transferred to another workspace.",
|
|
4759
4825
|
properties: {
|
|
4826
|
+
created_at: { format: "date-time", type: "string" },
|
|
4760
4827
|
message: { type: "string" },
|
|
4761
4828
|
warning_code: {
|
|
4762
4829
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -4770,6 +4837,7 @@ var openapi_default = {
|
|
|
4770
4837
|
{
|
|
4771
4838
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
4772
4839
|
properties: {
|
|
4840
|
+
created_at: { format: "date-time", type: "string" },
|
|
4773
4841
|
message: { type: "string" },
|
|
4774
4842
|
warning_code: {
|
|
4775
4843
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -15768,6 +15836,7 @@ var openapi_default = {
|
|
|
15768
15836
|
{
|
|
15769
15837
|
description: "Failed to set code on Smart Things device.",
|
|
15770
15838
|
properties: {
|
|
15839
|
+
created_at: { format: "date-time", type: "string" },
|
|
15771
15840
|
error_code: {
|
|
15772
15841
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15773
15842
|
enum: ["smartthings_failed_to_set_access_code"],
|
|
@@ -15782,6 +15851,7 @@ var openapi_default = {
|
|
|
15782
15851
|
{
|
|
15783
15852
|
description: "Failed to set code after multiple retries.",
|
|
15784
15853
|
properties: {
|
|
15854
|
+
created_at: { format: "date-time", type: "string" },
|
|
15785
15855
|
error_code: {
|
|
15786
15856
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15787
15857
|
enum: [
|
|
@@ -15798,6 +15868,7 @@ var openapi_default = {
|
|
|
15798
15868
|
{
|
|
15799
15869
|
description: "Failed to set code on device.",
|
|
15800
15870
|
properties: {
|
|
15871
|
+
created_at: { format: "date-time", type: "string" },
|
|
15801
15872
|
error_code: {
|
|
15802
15873
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15803
15874
|
enum: ["failed_to_set_on_device"],
|
|
@@ -15812,6 +15883,7 @@ var openapi_default = {
|
|
|
15812
15883
|
{
|
|
15813
15884
|
description: "Failed to remove code from device.",
|
|
15814
15885
|
properties: {
|
|
15886
|
+
created_at: { format: "date-time", type: "string" },
|
|
15815
15887
|
error_code: {
|
|
15816
15888
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15817
15889
|
enum: ["failed_to_remove_from_device"],
|
|
@@ -15826,6 +15898,7 @@ var openapi_default = {
|
|
|
15826
15898
|
{
|
|
15827
15899
|
description: "Duplicate access code detected on device.",
|
|
15828
15900
|
properties: {
|
|
15901
|
+
created_at: { format: "date-time", type: "string" },
|
|
15829
15902
|
error_code: {
|
|
15830
15903
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15831
15904
|
enum: ["duplicate_code_on_device"],
|
|
@@ -15840,6 +15913,7 @@ var openapi_default = {
|
|
|
15840
15913
|
{
|
|
15841
15914
|
description: "An attempt to modify this access code was prevented.",
|
|
15842
15915
|
properties: {
|
|
15916
|
+
created_at: { format: "date-time", type: "string" },
|
|
15843
15917
|
error_code: {
|
|
15844
15918
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15845
15919
|
enum: ["duplicate_code_attempt_prevented"],
|
|
@@ -15854,6 +15928,7 @@ var openapi_default = {
|
|
|
15854
15928
|
{
|
|
15855
15929
|
description: "Igloohome bridge has too many pending jobs in the queue.",
|
|
15856
15930
|
properties: {
|
|
15931
|
+
created_at: { format: "date-time", type: "string" },
|
|
15857
15932
|
error_code: {
|
|
15858
15933
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15859
15934
|
enum: ["igloohome_bridge_too_many_pending_jobs"],
|
|
@@ -15868,6 +15943,7 @@ var openapi_default = {
|
|
|
15868
15943
|
{
|
|
15869
15944
|
description: "Igloohome bridge is offline.",
|
|
15870
15945
|
properties: {
|
|
15946
|
+
created_at: { format: "date-time", type: "string" },
|
|
15871
15947
|
error_code: {
|
|
15872
15948
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15873
15949
|
enum: ["igloohome_bridge_offline"],
|
|
@@ -15882,6 +15958,7 @@ var openapi_default = {
|
|
|
15882
15958
|
{
|
|
15883
15959
|
description: "Lock as reached max amount of codes.",
|
|
15884
15960
|
properties: {
|
|
15961
|
+
created_at: { format: "date-time", type: "string" },
|
|
15885
15962
|
error_code: {
|
|
15886
15963
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15887
15964
|
enum: [
|
|
@@ -15898,6 +15975,7 @@ var openapi_default = {
|
|
|
15898
15975
|
{
|
|
15899
15976
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
15900
15977
|
properties: {
|
|
15978
|
+
created_at: { format: "date-time", type: "string" },
|
|
15901
15979
|
error_code: {
|
|
15902
15980
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15903
15981
|
enum: ["kwikset_unable_to_confirm_code"],
|
|
@@ -15912,6 +15990,7 @@ var openapi_default = {
|
|
|
15912
15990
|
{
|
|
15913
15991
|
description: "Unable to confirm the deletion of the access code on Kwikset device.",
|
|
15914
15992
|
properties: {
|
|
15993
|
+
created_at: { format: "date-time", type: "string" },
|
|
15915
15994
|
error_code: {
|
|
15916
15995
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15917
15996
|
enum: ["kwikset_unable_to_confirm_deletion"],
|
|
@@ -15926,6 +16005,7 @@ var openapi_default = {
|
|
|
15926
16005
|
{
|
|
15927
16006
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
15928
16007
|
properties: {
|
|
16008
|
+
created_at: { format: "date-time", type: "string" },
|
|
15929
16009
|
error_code: {
|
|
15930
16010
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15931
16011
|
enum: ["code_modified_external_to_seam"],
|
|
@@ -15940,6 +16020,7 @@ var openapi_default = {
|
|
|
15940
16020
|
{
|
|
15941
16021
|
description: "Invalid code length for August lock.",
|
|
15942
16022
|
properties: {
|
|
16023
|
+
created_at: { format: "date-time", type: "string" },
|
|
15943
16024
|
error_code: {
|
|
15944
16025
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15945
16026
|
enum: ["august_lock_invalid_code_length"],
|
|
@@ -15954,6 +16035,7 @@ var openapi_default = {
|
|
|
15954
16035
|
{
|
|
15955
16036
|
description: "Access code has not yet been fully moved to the device.",
|
|
15956
16037
|
properties: {
|
|
16038
|
+
created_at: { format: "date-time", type: "string" },
|
|
15957
16039
|
error_code: {
|
|
15958
16040
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15959
16041
|
enum: ["august_device_programming_delay"],
|
|
@@ -15968,6 +16050,7 @@ var openapi_default = {
|
|
|
15968
16050
|
{
|
|
15969
16051
|
description: "All access code slots on the device are full.",
|
|
15970
16052
|
properties: {
|
|
16053
|
+
created_at: { format: "date-time", type: "string" },
|
|
15971
16054
|
error_code: {
|
|
15972
16055
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15973
16056
|
enum: ["august_device_slots_full"],
|
|
@@ -15982,6 +16065,7 @@ var openapi_default = {
|
|
|
15982
16065
|
{
|
|
15983
16066
|
description: "August lock is missing a keypad.",
|
|
15984
16067
|
properties: {
|
|
16068
|
+
created_at: { format: "date-time", type: "string" },
|
|
15985
16069
|
error_code: {
|
|
15986
16070
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15987
16071
|
enum: ["august_lock_missing_keypad"],
|
|
@@ -15996,6 +16080,7 @@ var openapi_default = {
|
|
|
15996
16080
|
{
|
|
15997
16081
|
description: "Salto site user is not subscribed.",
|
|
15998
16082
|
properties: {
|
|
16083
|
+
created_at: { format: "date-time", type: "string" },
|
|
15999
16084
|
error_code: {
|
|
16000
16085
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16001
16086
|
enum: ["salto_site_user_not_subscribed"],
|
|
@@ -16010,6 +16095,7 @@ var openapi_default = {
|
|
|
16010
16095
|
{
|
|
16011
16096
|
description: "Access code has not yet been fully moved to the device.",
|
|
16012
16097
|
properties: {
|
|
16098
|
+
created_at: { format: "date-time", type: "string" },
|
|
16013
16099
|
error_code: {
|
|
16014
16100
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16015
16101
|
enum: ["hubitat_device_programming_delay"],
|
|
@@ -16024,6 +16110,7 @@ var openapi_default = {
|
|
|
16024
16110
|
{
|
|
16025
16111
|
description: "No free positions available on the device.",
|
|
16026
16112
|
properties: {
|
|
16113
|
+
created_at: { format: "date-time", type: "string" },
|
|
16027
16114
|
error_code: {
|
|
16028
16115
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16029
16116
|
enum: ["hubitat_no_free_positions_available"],
|
|
@@ -16362,6 +16449,7 @@ var openapi_default = {
|
|
|
16362
16449
|
{
|
|
16363
16450
|
description: "Failed to set code on Smart Things device.",
|
|
16364
16451
|
properties: {
|
|
16452
|
+
created_at: { format: "date-time", type: "string" },
|
|
16365
16453
|
message: { type: "string" },
|
|
16366
16454
|
warning_code: {
|
|
16367
16455
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16375,6 +16463,7 @@ var openapi_default = {
|
|
|
16375
16463
|
{
|
|
16376
16464
|
description: "Duplicate access code detected.",
|
|
16377
16465
|
properties: {
|
|
16466
|
+
created_at: { format: "date-time", type: "string" },
|
|
16378
16467
|
message: { type: "string" },
|
|
16379
16468
|
warning_code: {
|
|
16380
16469
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16388,6 +16477,7 @@ var openapi_default = {
|
|
|
16388
16477
|
{
|
|
16389
16478
|
description: "Received an error when attempting to create this code.",
|
|
16390
16479
|
properties: {
|
|
16480
|
+
created_at: { format: "date-time", type: "string" },
|
|
16391
16481
|
message: { type: "string" },
|
|
16392
16482
|
warning_code: {
|
|
16393
16483
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16401,6 +16491,7 @@ var openapi_default = {
|
|
|
16401
16491
|
{
|
|
16402
16492
|
description: "Lock is in Office Mode. Access Codes will not unlock doors.",
|
|
16403
16493
|
properties: {
|
|
16494
|
+
created_at: { format: "date-time", type: "string" },
|
|
16404
16495
|
message: { type: "string" },
|
|
16405
16496
|
warning_code: {
|
|
16406
16497
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16414,6 +16505,7 @@ var openapi_default = {
|
|
|
16414
16505
|
{
|
|
16415
16506
|
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
16416
16507
|
properties: {
|
|
16508
|
+
created_at: { format: "date-time", type: "string" },
|
|
16417
16509
|
message: { type: "string" },
|
|
16418
16510
|
warning_code: {
|
|
16419
16511
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16427,6 +16519,7 @@ var openapi_default = {
|
|
|
16427
16519
|
{
|
|
16428
16520
|
description: "Delay in setting code on device.",
|
|
16429
16521
|
properties: {
|
|
16522
|
+
created_at: { format: "date-time", type: "string" },
|
|
16430
16523
|
message: { type: "string" },
|
|
16431
16524
|
warning_code: {
|
|
16432
16525
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16440,6 +16533,7 @@ var openapi_default = {
|
|
|
16440
16533
|
{
|
|
16441
16534
|
description: "Delay in removing code from device.",
|
|
16442
16535
|
properties: {
|
|
16536
|
+
created_at: { format: "date-time", type: "string" },
|
|
16443
16537
|
message: { type: "string" },
|
|
16444
16538
|
warning_code: {
|
|
16445
16539
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16453,6 +16547,7 @@ var openapi_default = {
|
|
|
16453
16547
|
{
|
|
16454
16548
|
description: "Third party integration detected that may cause access codes to fail.",
|
|
16455
16549
|
properties: {
|
|
16550
|
+
created_at: { format: "date-time", type: "string" },
|
|
16456
16551
|
message: { type: "string" },
|
|
16457
16552
|
warning_code: {
|
|
16458
16553
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16466,6 +16561,7 @@ var openapi_default = {
|
|
|
16466
16561
|
{
|
|
16467
16562
|
description: "Access code has not yet been fully moved to the device.",
|
|
16468
16563
|
properties: {
|
|
16564
|
+
created_at: { format: "date-time", type: "string" },
|
|
16469
16565
|
message: { type: "string" },
|
|
16470
16566
|
warning_code: {
|
|
16471
16567
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16479,6 +16575,7 @@ var openapi_default = {
|
|
|
16479
16575
|
{
|
|
16480
16576
|
description: "Algopins must be used within 24 hours.",
|
|
16481
16577
|
properties: {
|
|
16578
|
+
created_at: { format: "date-time", type: "string" },
|
|
16482
16579
|
message: { type: "string" },
|
|
16483
16580
|
warning_code: {
|
|
16484
16581
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16492,6 +16589,7 @@ var openapi_default = {
|
|
|
16492
16589
|
{
|
|
16493
16590
|
description: "Management was transferred to another workspace.",
|
|
16494
16591
|
properties: {
|
|
16592
|
+
created_at: { format: "date-time", type: "string" },
|
|
16495
16593
|
message: { type: "string" },
|
|
16496
16594
|
warning_code: {
|
|
16497
16595
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
@@ -16505,6 +16603,7 @@ var openapi_default = {
|
|
|
16505
16603
|
{
|
|
16506
16604
|
description: "Unable to confirm the access code is set on Kwikset device.",
|
|
16507
16605
|
properties: {
|
|
16606
|
+
created_at: { format: "date-time", type: "string" },
|
|
16508
16607
|
message: { type: "string" },
|
|
16509
16608
|
warning_code: {
|
|
16510
16609
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|