@seamapi/types 1.363.1 → 1.364.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +218 -43
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +732 -122
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +464 -109
- package/lib/seam/connect/models/access-codes/managed-access-code.js +74 -17
- 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 +156 -26
- package/lib/seam/connect/models/acs/acs-user.d.ts +8 -8
- package/lib/seam/connect/openapi.js +178 -28
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +324 -54
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +80 -19
- package/src/lib/seam/connect/openapi.ts +190 -32
- package/src/lib/seam/connect/route-types.ts +378 -63
package/dist/connect.cjs
CHANGED
|
@@ -1419,11 +1419,14 @@ var august_device_programming_delay_error = common_access_code_error.extend({
|
|
|
1419
1419
|
var august_device_slots_full = common_access_code_error.extend({
|
|
1420
1420
|
error_code: zod.z.literal("august_device_slots_full").describe(error_code_description3)
|
|
1421
1421
|
}).describe("All access code slots on the device are full.");
|
|
1422
|
+
var august_lock_temporarily_offline_error = common_access_code_error.extend({
|
|
1423
|
+
error_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
1424
|
+
}).describe("August lock is temporarily offline.");
|
|
1422
1425
|
var august_lock_missing_keypad = common_access_code_error.extend({
|
|
1423
1426
|
error_code: zod.z.literal("august_lock_missing_keypad").describe(error_code_description3)
|
|
1424
1427
|
}).describe("August lock is missing a keypad.");
|
|
1425
|
-
var
|
|
1426
|
-
error_code: zod.z.literal("
|
|
1428
|
+
var salto_ks_user_not_subscribed = common_access_code_error.extend({
|
|
1429
|
+
error_code: zod.z.literal("salto_ks_user_not_subscribed").describe(error_code_description3)
|
|
1427
1430
|
}).describe("Salto site user is not subscribed.");
|
|
1428
1431
|
var hubitat_device_programming_delay = common_access_code_error.extend({
|
|
1429
1432
|
error_code: zod.z.literal("hubitat_device_programming_delay").describe(error_code_description3)
|
|
@@ -1431,9 +1434,22 @@ var hubitat_device_programming_delay = common_access_code_error.extend({
|
|
|
1431
1434
|
var hubitat_no_free_positions_available = common_access_code_error.extend({
|
|
1432
1435
|
error_code: zod.z.literal("hubitat_no_free_positions_available").describe(error_code_description3)
|
|
1433
1436
|
}).describe("No free positions available on the device.");
|
|
1437
|
+
var smartthings_no_free_slots_available = common_access_code_error.extend({
|
|
1438
|
+
error_code: zod.z.literal("smartthings_no_free_slots_available").describe(error_code_description3)
|
|
1439
|
+
}).describe("No free slots available on the device.");
|
|
1440
|
+
var wyze_duplicate_code_name = common_access_code_error.extend({
|
|
1441
|
+
error_code: zod.z.literal("wyze_duplicate_code_name").describe(error_code_description3)
|
|
1442
|
+
}).describe("Duplicate access code name detected.");
|
|
1443
|
+
var wyze_potential_duplicate_code = common_access_code_error.extend({
|
|
1444
|
+
error_code: zod.z.literal("wyze_potential_duplicate_code").describe(error_code_description3)
|
|
1445
|
+
}).describe("Potential duplicate access code detected.");
|
|
1446
|
+
var dormakaba_oracode_no_valid_user_level = common_access_code_error.extend({
|
|
1447
|
+
error_code: zod.z.literal("dormakaba_oracode_no_valid_user_level").describe(error_code_description3)
|
|
1448
|
+
}).describe("No valid user level for Oracode.");
|
|
1434
1449
|
var access_code_error = zod.z.discriminatedUnion("error_code", [
|
|
1435
1450
|
smartthings_failed_to_set_access_code_error,
|
|
1436
1451
|
smartthings_failed_to_set_after_multiple_retries,
|
|
1452
|
+
smartthings_no_free_slots_available,
|
|
1437
1453
|
failed_to_set_on_device,
|
|
1438
1454
|
failed_to_remove_from_device,
|
|
1439
1455
|
duplicate_code_on_device,
|
|
@@ -1448,13 +1464,18 @@ var access_code_error = zod.z.discriminatedUnion("error_code", [
|
|
|
1448
1464
|
august_device_programming_delay_error,
|
|
1449
1465
|
august_device_slots_full,
|
|
1450
1466
|
august_lock_missing_keypad,
|
|
1451
|
-
|
|
1467
|
+
august_lock_temporarily_offline_error,
|
|
1468
|
+
salto_ks_user_not_subscribed,
|
|
1452
1469
|
hubitat_device_programming_delay,
|
|
1453
|
-
hubitat_no_free_positions_available
|
|
1470
|
+
hubitat_no_free_positions_available,
|
|
1471
|
+
wyze_duplicate_code_name,
|
|
1472
|
+
wyze_potential_duplicate_code,
|
|
1473
|
+
dormakaba_oracode_no_valid_user_level
|
|
1454
1474
|
]);
|
|
1455
1475
|
zod.z.object({
|
|
1456
|
-
|
|
1476
|
+
smartthings_failed_to_set_access_code: smartthings_failed_to_set_access_code_error.optional().nullable(),
|
|
1457
1477
|
smartthings_failed_to_set_after_multiple_retries: smartthings_failed_to_set_after_multiple_retries.optional().nullable(),
|
|
1478
|
+
smartthings_no_free_slots_available: smartthings_no_free_slots_available.optional().nullable(),
|
|
1458
1479
|
failed_to_set_on_device: failed_to_set_on_device.optional().nullable(),
|
|
1459
1480
|
failed_to_remove_from_device: failed_to_remove_from_device.optional().nullable(),
|
|
1460
1481
|
duplicate_code_on_device: duplicate_code_on_device.optional().nullable(),
|
|
@@ -1466,12 +1487,16 @@ zod.z.object({
|
|
|
1466
1487
|
kwikset_unable_to_confirm_deletion: kwikset_unable_to_confirm_deletion.optional().nullable(),
|
|
1467
1488
|
code_modified_external_to_seam_error: code_modified_external_to_seam_error.optional().nullable(),
|
|
1468
1489
|
august_lock_invalid_code_length: august_lock_invalid_code_length.optional().nullable(),
|
|
1469
|
-
|
|
1490
|
+
august_device_programming_delay: august_device_programming_delay_error.optional().nullable(),
|
|
1491
|
+
august_lock_temporarily_offline: august_lock_temporarily_offline_error.optional().nullable(),
|
|
1470
1492
|
august_device_slots_full: august_device_slots_full.optional().nullable(),
|
|
1471
1493
|
august_lock_missing_keypad: august_lock_missing_keypad.optional().nullable(),
|
|
1472
|
-
|
|
1494
|
+
salto_ks_user_not_subscribed: salto_ks_user_not_subscribed.optional().nullable(),
|
|
1473
1495
|
hubitat_device_programming_delay: hubitat_device_programming_delay.optional().nullable(),
|
|
1474
|
-
hubitat_no_free_positions_available: hubitat_no_free_positions_available.optional().nullable()
|
|
1496
|
+
hubitat_no_free_positions_available: hubitat_no_free_positions_available.optional().nullable(),
|
|
1497
|
+
wyze_duplicate_code_name: wyze_duplicate_code_name.optional().nullable(),
|
|
1498
|
+
wyze_potential_duplicate_code: wyze_potential_duplicate_code.optional().nullable(),
|
|
1499
|
+
dormakaba_oracode_no_valid_user_level: dormakaba_oracode_no_valid_user_level.optional().nullable()
|
|
1475
1500
|
});
|
|
1476
1501
|
var common_access_code_warning = zod.z.object({
|
|
1477
1502
|
message: zod.z.string(),
|
|
@@ -1484,6 +1509,9 @@ var smartthings_failed_to_set_access_code_warning = common_access_code_warning.e
|
|
|
1484
1509
|
var august_device_programming_delay_warning = common_access_code_warning.extend({
|
|
1485
1510
|
warning_code: zod.z.literal("august_device_programming_delay").describe(warning_code_description3)
|
|
1486
1511
|
}).describe("Access code has not yet been fully moved to the device.");
|
|
1512
|
+
var august_lock_temporarily_offline_warning = common_access_code_warning.extend({
|
|
1513
|
+
warning_code: zod.z.literal("august_lock_temporarily_offline").describe(error_code_description3)
|
|
1514
|
+
}).describe("August lock is temporarily offline.");
|
|
1487
1515
|
var code_modified_external_to_seam_warning = common_access_code_warning.extend({
|
|
1488
1516
|
warning_code: zod.z.literal("code_modified_external_to_seam").describe(warning_code_description3)
|
|
1489
1517
|
}).describe(
|
|
@@ -1495,9 +1523,6 @@ var schlage_detected_duplicate = common_access_code_warning.extend({
|
|
|
1495
1523
|
var schlage_creation_outage = common_access_code_warning.extend({
|
|
1496
1524
|
warning_code: zod.z.literal("schlage_creation_outage").describe(warning_code_description3)
|
|
1497
1525
|
}).describe("Received an error when attempting to create this code.");
|
|
1498
|
-
var salto_office_mode = common_access_code_warning.extend({
|
|
1499
|
-
warning_code: zod.z.literal("salto_office_mode").describe(warning_code_description3)
|
|
1500
|
-
}).describe("Lock is in Office Mode. Access Codes will not unlock doors.");
|
|
1501
1526
|
var delay_in_setting_on_device = common_access_code_warning.extend({
|
|
1502
1527
|
warning_code: zod.z.literal("delay_in_setting_on_device").describe(warning_code_description3)
|
|
1503
1528
|
}).describe("Delay in setting code on device.");
|
|
@@ -1522,26 +1547,26 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
1522
1547
|
smartthings_failed_to_set_access_code_warning,
|
|
1523
1548
|
schlage_detected_duplicate,
|
|
1524
1549
|
schlage_creation_outage,
|
|
1525
|
-
salto_office_mode,
|
|
1526
1550
|
code_modified_external_to_seam_warning,
|
|
1527
1551
|
delay_in_setting_on_device,
|
|
1528
1552
|
delay_in_removing_from_device,
|
|
1529
1553
|
third_party_integration_detected2,
|
|
1530
1554
|
august_device_programming_delay_warning,
|
|
1555
|
+
august_lock_temporarily_offline_warning,
|
|
1531
1556
|
igloo_algopin_must_be_used_within_24_hours,
|
|
1532
1557
|
management_transferred,
|
|
1533
1558
|
kwikset_unable_to_confirm_code_warning
|
|
1534
1559
|
]);
|
|
1535
1560
|
zod.z.object({
|
|
1536
|
-
|
|
1561
|
+
smartthings_failed_to_set_access_code: smartthings_failed_to_set_access_code_warning.optional().nullable(),
|
|
1537
1562
|
schlage_detected_duplicate: schlage_detected_duplicate.optional().nullable(),
|
|
1538
1563
|
schlage_creation_outage: schlage_creation_outage.optional().nullable(),
|
|
1539
|
-
salto_office_mode: salto_office_mode.optional().nullable(),
|
|
1540
1564
|
code_modified_external_to_seam_warning: code_modified_external_to_seam_warning.optional().nullable(),
|
|
1541
1565
|
delay_in_setting_on_device: delay_in_setting_on_device.optional().nullable(),
|
|
1542
1566
|
delay_in_removing_from_device: delay_in_removing_from_device.optional().nullable(),
|
|
1543
1567
|
third_party_integration_detected: third_party_integration_detected2.optional().nullable(),
|
|
1544
|
-
|
|
1568
|
+
august_device_programming_delay: august_device_programming_delay_warning.optional().nullable(),
|
|
1569
|
+
august_lock_temporarily_offline: august_lock_temporarily_offline_warning.optional().nullable(),
|
|
1545
1570
|
igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
1546
1571
|
management_transferred: management_transferred.optional().nullable(),
|
|
1547
1572
|
kwikset_unable_to_confirm_code_warning: kwikset_unable_to_confirm_code_warning.optional().nullable()
|
|
@@ -4057,6 +4082,21 @@ var openapi_default = {
|
|
|
4057
4082
|
required: ["message", "is_access_code_error", "error_code"],
|
|
4058
4083
|
type: "object"
|
|
4059
4084
|
},
|
|
4085
|
+
{
|
|
4086
|
+
description: "No free slots available on the device.",
|
|
4087
|
+
properties: {
|
|
4088
|
+
created_at: { format: "date-time", type: "string" },
|
|
4089
|
+
error_code: {
|
|
4090
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4091
|
+
enum: ["smartthings_no_free_slots_available"],
|
|
4092
|
+
type: "string"
|
|
4093
|
+
},
|
|
4094
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
4095
|
+
message: { type: "string" }
|
|
4096
|
+
},
|
|
4097
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
4098
|
+
type: "object"
|
|
4099
|
+
},
|
|
4060
4100
|
{
|
|
4061
4101
|
description: "Failed to set code on device.",
|
|
4062
4102
|
properties: {
|
|
@@ -4269,13 +4309,28 @@ var openapi_default = {
|
|
|
4269
4309
|
required: ["message", "is_access_code_error", "error_code"],
|
|
4270
4310
|
type: "object"
|
|
4271
4311
|
},
|
|
4312
|
+
{
|
|
4313
|
+
description: "August lock is temporarily offline.",
|
|
4314
|
+
properties: {
|
|
4315
|
+
created_at: { format: "date-time", type: "string" },
|
|
4316
|
+
error_code: {
|
|
4317
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4318
|
+
enum: ["august_lock_temporarily_offline"],
|
|
4319
|
+
type: "string"
|
|
4320
|
+
},
|
|
4321
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
4322
|
+
message: { type: "string" }
|
|
4323
|
+
},
|
|
4324
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
4325
|
+
type: "object"
|
|
4326
|
+
},
|
|
4272
4327
|
{
|
|
4273
4328
|
description: "Salto site user is not subscribed.",
|
|
4274
4329
|
properties: {
|
|
4275
4330
|
created_at: { format: "date-time", type: "string" },
|
|
4276
4331
|
error_code: {
|
|
4277
4332
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4278
|
-
enum: ["
|
|
4333
|
+
enum: ["salto_ks_user_not_subscribed"],
|
|
4279
4334
|
type: "string"
|
|
4280
4335
|
},
|
|
4281
4336
|
is_access_code_error: { enum: [true], type: "boolean" },
|
|
@@ -4314,6 +4369,51 @@ var openapi_default = {
|
|
|
4314
4369
|
required: ["message", "is_access_code_error", "error_code"],
|
|
4315
4370
|
type: "object"
|
|
4316
4371
|
},
|
|
4372
|
+
{
|
|
4373
|
+
description: "Duplicate access code name detected.",
|
|
4374
|
+
properties: {
|
|
4375
|
+
created_at: { format: "date-time", type: "string" },
|
|
4376
|
+
error_code: {
|
|
4377
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4378
|
+
enum: ["wyze_duplicate_code_name"],
|
|
4379
|
+
type: "string"
|
|
4380
|
+
},
|
|
4381
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
4382
|
+
message: { type: "string" }
|
|
4383
|
+
},
|
|
4384
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
4385
|
+
type: "object"
|
|
4386
|
+
},
|
|
4387
|
+
{
|
|
4388
|
+
description: "Potential duplicate access code detected.",
|
|
4389
|
+
properties: {
|
|
4390
|
+
created_at: { format: "date-time", type: "string" },
|
|
4391
|
+
error_code: {
|
|
4392
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4393
|
+
enum: ["wyze_potential_duplicate_code"],
|
|
4394
|
+
type: "string"
|
|
4395
|
+
},
|
|
4396
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
4397
|
+
message: { type: "string" }
|
|
4398
|
+
},
|
|
4399
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
4400
|
+
type: "object"
|
|
4401
|
+
},
|
|
4402
|
+
{
|
|
4403
|
+
description: "No valid user level for Oracode.",
|
|
4404
|
+
properties: {
|
|
4405
|
+
created_at: { format: "date-time", type: "string" },
|
|
4406
|
+
error_code: {
|
|
4407
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4408
|
+
enum: ["dormakaba_oracode_no_valid_user_level"],
|
|
4409
|
+
type: "string"
|
|
4410
|
+
},
|
|
4411
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
4412
|
+
message: { type: "string" }
|
|
4413
|
+
},
|
|
4414
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
4415
|
+
type: "object"
|
|
4416
|
+
},
|
|
4317
4417
|
{
|
|
4318
4418
|
description: "Account is disconnected",
|
|
4319
4419
|
properties: {
|
|
@@ -4723,13 +4823,13 @@ var openapi_default = {
|
|
|
4723
4823
|
type: "object"
|
|
4724
4824
|
},
|
|
4725
4825
|
{
|
|
4726
|
-
description: "
|
|
4826
|
+
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
4727
4827
|
properties: {
|
|
4728
4828
|
created_at: { format: "date-time", type: "string" },
|
|
4729
4829
|
message: { type: "string" },
|
|
4730
4830
|
warning_code: {
|
|
4731
4831
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4732
|
-
enum: ["
|
|
4832
|
+
enum: ["code_modified_external_to_seam"],
|
|
4733
4833
|
type: "string"
|
|
4734
4834
|
}
|
|
4735
4835
|
},
|
|
@@ -4737,13 +4837,13 @@ var openapi_default = {
|
|
|
4737
4837
|
type: "object"
|
|
4738
4838
|
},
|
|
4739
4839
|
{
|
|
4740
|
-
description: "
|
|
4840
|
+
description: "Delay in setting code on device.",
|
|
4741
4841
|
properties: {
|
|
4742
4842
|
created_at: { format: "date-time", type: "string" },
|
|
4743
4843
|
message: { type: "string" },
|
|
4744
4844
|
warning_code: {
|
|
4745
4845
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4746
|
-
enum: ["
|
|
4846
|
+
enum: ["delay_in_setting_on_device"],
|
|
4747
4847
|
type: "string"
|
|
4748
4848
|
}
|
|
4749
4849
|
},
|
|
@@ -4751,13 +4851,13 @@ var openapi_default = {
|
|
|
4751
4851
|
type: "object"
|
|
4752
4852
|
},
|
|
4753
4853
|
{
|
|
4754
|
-
description: "Delay in
|
|
4854
|
+
description: "Delay in removing code from device.",
|
|
4755
4855
|
properties: {
|
|
4756
4856
|
created_at: { format: "date-time", type: "string" },
|
|
4757
4857
|
message: { type: "string" },
|
|
4758
4858
|
warning_code: {
|
|
4759
4859
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4760
|
-
enum: ["
|
|
4860
|
+
enum: ["delay_in_removing_from_device"],
|
|
4761
4861
|
type: "string"
|
|
4762
4862
|
}
|
|
4763
4863
|
},
|
|
@@ -4765,13 +4865,13 @@ var openapi_default = {
|
|
|
4765
4865
|
type: "object"
|
|
4766
4866
|
},
|
|
4767
4867
|
{
|
|
4768
|
-
description: "
|
|
4868
|
+
description: "Third party integration detected that may cause access codes to fail.",
|
|
4769
4869
|
properties: {
|
|
4770
4870
|
created_at: { format: "date-time", type: "string" },
|
|
4771
4871
|
message: { type: "string" },
|
|
4772
4872
|
warning_code: {
|
|
4773
4873
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4774
|
-
enum: ["
|
|
4874
|
+
enum: ["third_party_integration_detected"],
|
|
4775
4875
|
type: "string"
|
|
4776
4876
|
}
|
|
4777
4877
|
},
|
|
@@ -4779,13 +4879,13 @@ var openapi_default = {
|
|
|
4779
4879
|
type: "object"
|
|
4780
4880
|
},
|
|
4781
4881
|
{
|
|
4782
|
-
description: "
|
|
4882
|
+
description: "Access code has not yet been fully moved to the device.",
|
|
4783
4883
|
properties: {
|
|
4784
4884
|
created_at: { format: "date-time", type: "string" },
|
|
4785
4885
|
message: { type: "string" },
|
|
4786
4886
|
warning_code: {
|
|
4787
4887
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
4788
|
-
enum: ["
|
|
4888
|
+
enum: ["august_device_programming_delay"],
|
|
4789
4889
|
type: "string"
|
|
4790
4890
|
}
|
|
4791
4891
|
},
|
|
@@ -4793,13 +4893,13 @@ var openapi_default = {
|
|
|
4793
4893
|
type: "object"
|
|
4794
4894
|
},
|
|
4795
4895
|
{
|
|
4796
|
-
description: "
|
|
4896
|
+
description: "August lock is temporarily offline.",
|
|
4797
4897
|
properties: {
|
|
4798
4898
|
created_at: { format: "date-time", type: "string" },
|
|
4799
4899
|
message: { type: "string" },
|
|
4800
4900
|
warning_code: {
|
|
4801
|
-
description: "Unique identifier of the type of
|
|
4802
|
-
enum: ["
|
|
4901
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
4902
|
+
enum: ["august_lock_temporarily_offline"],
|
|
4803
4903
|
type: "string"
|
|
4804
4904
|
}
|
|
4805
4905
|
},
|
|
@@ -15865,6 +15965,21 @@ var openapi_default = {
|
|
|
15865
15965
|
required: ["message", "is_access_code_error", "error_code"],
|
|
15866
15966
|
type: "object"
|
|
15867
15967
|
},
|
|
15968
|
+
{
|
|
15969
|
+
description: "No free slots available on the device.",
|
|
15970
|
+
properties: {
|
|
15971
|
+
created_at: { format: "date-time", type: "string" },
|
|
15972
|
+
error_code: {
|
|
15973
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
15974
|
+
enum: ["smartthings_no_free_slots_available"],
|
|
15975
|
+
type: "string"
|
|
15976
|
+
},
|
|
15977
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
15978
|
+
message: { type: "string" }
|
|
15979
|
+
},
|
|
15980
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
15981
|
+
type: "object"
|
|
15982
|
+
},
|
|
15868
15983
|
{
|
|
15869
15984
|
description: "Failed to set code on device.",
|
|
15870
15985
|
properties: {
|
|
@@ -16077,13 +16192,28 @@ var openapi_default = {
|
|
|
16077
16192
|
required: ["message", "is_access_code_error", "error_code"],
|
|
16078
16193
|
type: "object"
|
|
16079
16194
|
},
|
|
16195
|
+
{
|
|
16196
|
+
description: "August lock is temporarily offline.",
|
|
16197
|
+
properties: {
|
|
16198
|
+
created_at: { format: "date-time", type: "string" },
|
|
16199
|
+
error_code: {
|
|
16200
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16201
|
+
enum: ["august_lock_temporarily_offline"],
|
|
16202
|
+
type: "string"
|
|
16203
|
+
},
|
|
16204
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
16205
|
+
message: { type: "string" }
|
|
16206
|
+
},
|
|
16207
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
16208
|
+
type: "object"
|
|
16209
|
+
},
|
|
16080
16210
|
{
|
|
16081
16211
|
description: "Salto site user is not subscribed.",
|
|
16082
16212
|
properties: {
|
|
16083
16213
|
created_at: { format: "date-time", type: "string" },
|
|
16084
16214
|
error_code: {
|
|
16085
16215
|
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16086
|
-
enum: ["
|
|
16216
|
+
enum: ["salto_ks_user_not_subscribed"],
|
|
16087
16217
|
type: "string"
|
|
16088
16218
|
},
|
|
16089
16219
|
is_access_code_error: { enum: [true], type: "boolean" },
|
|
@@ -16122,6 +16252,51 @@ var openapi_default = {
|
|
|
16122
16252
|
required: ["message", "is_access_code_error", "error_code"],
|
|
16123
16253
|
type: "object"
|
|
16124
16254
|
},
|
|
16255
|
+
{
|
|
16256
|
+
description: "Duplicate access code name detected.",
|
|
16257
|
+
properties: {
|
|
16258
|
+
created_at: { format: "date-time", type: "string" },
|
|
16259
|
+
error_code: {
|
|
16260
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16261
|
+
enum: ["wyze_duplicate_code_name"],
|
|
16262
|
+
type: "string"
|
|
16263
|
+
},
|
|
16264
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
16265
|
+
message: { type: "string" }
|
|
16266
|
+
},
|
|
16267
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
16268
|
+
type: "object"
|
|
16269
|
+
},
|
|
16270
|
+
{
|
|
16271
|
+
description: "Potential duplicate access code detected.",
|
|
16272
|
+
properties: {
|
|
16273
|
+
created_at: { format: "date-time", type: "string" },
|
|
16274
|
+
error_code: {
|
|
16275
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16276
|
+
enum: ["wyze_potential_duplicate_code"],
|
|
16277
|
+
type: "string"
|
|
16278
|
+
},
|
|
16279
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
16280
|
+
message: { type: "string" }
|
|
16281
|
+
},
|
|
16282
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
16283
|
+
type: "object"
|
|
16284
|
+
},
|
|
16285
|
+
{
|
|
16286
|
+
description: "No valid user level for Oracode.",
|
|
16287
|
+
properties: {
|
|
16288
|
+
created_at: { format: "date-time", type: "string" },
|
|
16289
|
+
error_code: {
|
|
16290
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16291
|
+
enum: ["dormakaba_oracode_no_valid_user_level"],
|
|
16292
|
+
type: "string"
|
|
16293
|
+
},
|
|
16294
|
+
is_access_code_error: { enum: [true], type: "boolean" },
|
|
16295
|
+
message: { type: "string" }
|
|
16296
|
+
},
|
|
16297
|
+
required: ["message", "is_access_code_error", "error_code"],
|
|
16298
|
+
type: "object"
|
|
16299
|
+
},
|
|
16125
16300
|
{
|
|
16126
16301
|
description: "Account is disconnected",
|
|
16127
16302
|
properties: {
|
|
@@ -16489,13 +16664,13 @@ var openapi_default = {
|
|
|
16489
16664
|
type: "object"
|
|
16490
16665
|
},
|
|
16491
16666
|
{
|
|
16492
|
-
description: "
|
|
16667
|
+
description: "Code was modified or removed externally after Seam successfully set it on the device.",
|
|
16493
16668
|
properties: {
|
|
16494
16669
|
created_at: { format: "date-time", type: "string" },
|
|
16495
16670
|
message: { type: "string" },
|
|
16496
16671
|
warning_code: {
|
|
16497
16672
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
16498
|
-
enum: ["
|
|
16673
|
+
enum: ["code_modified_external_to_seam"],
|
|
16499
16674
|
type: "string"
|
|
16500
16675
|
}
|
|
16501
16676
|
},
|
|
@@ -16503,13 +16678,13 @@ var openapi_default = {
|
|
|
16503
16678
|
type: "object"
|
|
16504
16679
|
},
|
|
16505
16680
|
{
|
|
16506
|
-
description: "
|
|
16681
|
+
description: "Delay in setting code on device.",
|
|
16507
16682
|
properties: {
|
|
16508
16683
|
created_at: { format: "date-time", type: "string" },
|
|
16509
16684
|
message: { type: "string" },
|
|
16510
16685
|
warning_code: {
|
|
16511
16686
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
16512
|
-
enum: ["
|
|
16687
|
+
enum: ["delay_in_setting_on_device"],
|
|
16513
16688
|
type: "string"
|
|
16514
16689
|
}
|
|
16515
16690
|
},
|
|
@@ -16517,13 +16692,13 @@ var openapi_default = {
|
|
|
16517
16692
|
type: "object"
|
|
16518
16693
|
},
|
|
16519
16694
|
{
|
|
16520
|
-
description: "Delay in
|
|
16695
|
+
description: "Delay in removing code from device.",
|
|
16521
16696
|
properties: {
|
|
16522
16697
|
created_at: { format: "date-time", type: "string" },
|
|
16523
16698
|
message: { type: "string" },
|
|
16524
16699
|
warning_code: {
|
|
16525
16700
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
16526
|
-
enum: ["
|
|
16701
|
+
enum: ["delay_in_removing_from_device"],
|
|
16527
16702
|
type: "string"
|
|
16528
16703
|
}
|
|
16529
16704
|
},
|
|
@@ -16531,13 +16706,13 @@ var openapi_default = {
|
|
|
16531
16706
|
type: "object"
|
|
16532
16707
|
},
|
|
16533
16708
|
{
|
|
16534
|
-
description: "
|
|
16709
|
+
description: "Third party integration detected that may cause access codes to fail.",
|
|
16535
16710
|
properties: {
|
|
16536
16711
|
created_at: { format: "date-time", type: "string" },
|
|
16537
16712
|
message: { type: "string" },
|
|
16538
16713
|
warning_code: {
|
|
16539
16714
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
16540
|
-
enum: ["
|
|
16715
|
+
enum: ["third_party_integration_detected"],
|
|
16541
16716
|
type: "string"
|
|
16542
16717
|
}
|
|
16543
16718
|
},
|
|
@@ -16545,13 +16720,13 @@ var openapi_default = {
|
|
|
16545
16720
|
type: "object"
|
|
16546
16721
|
},
|
|
16547
16722
|
{
|
|
16548
|
-
description: "
|
|
16723
|
+
description: "Access code has not yet been fully moved to the device.",
|
|
16549
16724
|
properties: {
|
|
16550
16725
|
created_at: { format: "date-time", type: "string" },
|
|
16551
16726
|
message: { type: "string" },
|
|
16552
16727
|
warning_code: {
|
|
16553
16728
|
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
16554
|
-
enum: ["
|
|
16729
|
+
enum: ["august_device_programming_delay"],
|
|
16555
16730
|
type: "string"
|
|
16556
16731
|
}
|
|
16557
16732
|
},
|
|
@@ -16559,13 +16734,13 @@ var openapi_default = {
|
|
|
16559
16734
|
type: "object"
|
|
16560
16735
|
},
|
|
16561
16736
|
{
|
|
16562
|
-
description: "
|
|
16737
|
+
description: "August lock is temporarily offline.",
|
|
16563
16738
|
properties: {
|
|
16564
16739
|
created_at: { format: "date-time", type: "string" },
|
|
16565
16740
|
message: { type: "string" },
|
|
16566
16741
|
warning_code: {
|
|
16567
|
-
description: "Unique identifier of the type of
|
|
16568
|
-
enum: ["
|
|
16742
|
+
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
16743
|
+
enum: ["august_lock_temporarily_offline"],
|
|
16569
16744
|
type: "string"
|
|
16570
16745
|
}
|
|
16571
16746
|
},
|