@seamapi/types 1.867.0 → 1.869.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 +122 -36
- package/dist/connect.cjs.map +1 -1
- package/dist/index.cjs +122 -36
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.js +18 -3
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/devices/device.js +16 -1
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.js +60 -12
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +24 -3
- package/src/lib/seam/connect/models/devices/device.ts +18 -1
- package/src/lib/seam/connect/openapi.ts +64 -12
package/dist/connect.cjs
CHANGED
|
@@ -1313,7 +1313,14 @@ var common_device_error = zod.z.object({
|
|
|
1313
1313
|
var error_code_description2 = "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.";
|
|
1314
1314
|
var device_offline = common_device_error.extend({
|
|
1315
1315
|
error_code: zod.z.literal("device_offline").describe(error_code_description2)
|
|
1316
|
-
}).describe(
|
|
1316
|
+
}).describe(
|
|
1317
|
+
`
|
|
1318
|
+
---
|
|
1319
|
+
deprecated: Use \`device_disconnected\` instead.
|
|
1320
|
+
---
|
|
1321
|
+
Indicates that the device is offline.
|
|
1322
|
+
`
|
|
1323
|
+
);
|
|
1317
1324
|
var device_removed = common_device_error.extend({
|
|
1318
1325
|
error_code: zod.z.literal("device_removed").describe(error_code_description2)
|
|
1319
1326
|
}).describe("Indicates that the device has been removed.");
|
|
@@ -1350,6 +1357,7 @@ var august_lock_missing_bridge = common_device_error.extend({
|
|
|
1350
1357
|
error_code: zod.z.literal("august_lock_missing_bridge").describe(error_code_description2)
|
|
1351
1358
|
}).describe(`
|
|
1352
1359
|
---
|
|
1360
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1353
1361
|
variant_group_key: locks
|
|
1354
1362
|
---
|
|
1355
1363
|
Indicates that the lock is not connected to a bridge.
|
|
@@ -1369,6 +1377,9 @@ var salto_ks_subscription_limit_exceeded2 = common_device_error.extend({
|
|
|
1369
1377
|
var ttlock_lock_not_paired_to_gateway = common_device_error.extend({
|
|
1370
1378
|
error_code: zod.z.literal("ttlock_lock_not_paired_to_gateway").describe(error_code_description2)
|
|
1371
1379
|
}).describe(`
|
|
1380
|
+
---
|
|
1381
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1382
|
+
---
|
|
1372
1383
|
Indicates that the lock is not paired with a gateway.
|
|
1373
1384
|
`);
|
|
1374
1385
|
var missing_device_credentials = common_device_error.extend({
|
|
@@ -1388,6 +1399,9 @@ var subscription_required = common_device_error.extend({
|
|
|
1388
1399
|
var lockly_missing_wifi_bridge = common_device_error.extend({
|
|
1389
1400
|
error_code: zod.z.literal("lockly_missing_wifi_bridge").describe(error_code_description2)
|
|
1390
1401
|
}).describe(`
|
|
1402
|
+
---
|
|
1403
|
+
deprecated: Use \`hub_disconnected\` instead.
|
|
1404
|
+
---
|
|
1391
1405
|
Indicates that the Lockly lock is not connected to a Wi-Fi bridge.
|
|
1392
1406
|
`);
|
|
1393
1407
|
var device_error = zod.z.discriminatedUnion("error_code", [
|
|
@@ -1477,6 +1491,9 @@ var salto_ks_lock_access_code_support_removed = common_device_warning.extend({
|
|
|
1477
1491
|
var wyze_device_missing_gateway = common_device_warning.extend({
|
|
1478
1492
|
warning_code: zod.z.literal("wyze_device_missing_gateway").describe(warning_code_description2)
|
|
1479
1493
|
}).describe(`
|
|
1494
|
+
---
|
|
1495
|
+
deprecated: Use \`hub_disconnected\` device error instead.
|
|
1496
|
+
---
|
|
1480
1497
|
Indicates that the Wyze Lock is not connected to a gateway.
|
|
1481
1498
|
`);
|
|
1482
1499
|
var third_party_integration_detected = common_device_warning.extend({
|
|
@@ -2348,10 +2365,24 @@ var salto_ks_user_not_subscribed = common_access_code_error.extend({
|
|
|
2348
2365
|
}).describe("Salto site user is not subscribed.");
|
|
2349
2366
|
var wyze_duplicate_code_name = common_access_code_error.extend({
|
|
2350
2367
|
error_code: zod.z.literal("wyze_duplicate_code_name").describe(error_code_description3)
|
|
2351
|
-
}).describe(
|
|
2368
|
+
}).describe(
|
|
2369
|
+
`
|
|
2370
|
+
---
|
|
2371
|
+
deprecated: Use \`duplicate_code_on_device\` instead.
|
|
2372
|
+
---
|
|
2373
|
+
Duplicate access code name detected.
|
|
2374
|
+
`
|
|
2375
|
+
);
|
|
2352
2376
|
var wyze_potential_duplicate_code = common_access_code_error.extend({
|
|
2353
2377
|
error_code: zod.z.literal("wyze_potential_duplicate_code").describe(error_code_description3)
|
|
2354
|
-
}).describe(
|
|
2378
|
+
}).describe(
|
|
2379
|
+
`
|
|
2380
|
+
---
|
|
2381
|
+
deprecated: Use \`duplicate_code_on_device\` instead.
|
|
2382
|
+
---
|
|
2383
|
+
Potential duplicate access code detected.
|
|
2384
|
+
`
|
|
2385
|
+
);
|
|
2355
2386
|
var dormakaba_oracode_invalid_time_range = common_access_code_error.extend({
|
|
2356
2387
|
error_code: zod.z.literal("dormakaba_oracode_invalid_time_range").describe(error_code_description3)
|
|
2357
2388
|
}).describe(
|
|
@@ -2431,7 +2462,14 @@ var code_modified_external_to_seam_warning = common_access_code_warning.extend({
|
|
|
2431
2462
|
);
|
|
2432
2463
|
var schlage_detected_duplicate = common_access_code_warning.extend({
|
|
2433
2464
|
warning_code: zod.z.literal("schlage_detected_duplicate").describe(warning_code_description3)
|
|
2434
|
-
}).describe(
|
|
2465
|
+
}).describe(
|
|
2466
|
+
`
|
|
2467
|
+
---
|
|
2468
|
+
deprecated: Use \`duplicate_code_on_device\` error instead.
|
|
2469
|
+
---
|
|
2470
|
+
Duplicate access code detected.
|
|
2471
|
+
`
|
|
2472
|
+
);
|
|
2435
2473
|
var schlage_creation_outage = common_access_code_warning.extend({
|
|
2436
2474
|
warning_code: zod.z.literal("schlage_creation_outage").describe(warning_code_description3)
|
|
2437
2475
|
}).describe("Received an error when attempting to create this code.");
|
|
@@ -7524,6 +7562,7 @@ var openapi = {
|
|
|
7524
7562
|
type: "object"
|
|
7525
7563
|
},
|
|
7526
7564
|
{
|
|
7565
|
+
deprecated: true,
|
|
7527
7566
|
description: "Duplicate access code name detected.",
|
|
7528
7567
|
properties: {
|
|
7529
7568
|
created_at: {
|
|
@@ -7547,9 +7586,11 @@ var openapi = {
|
|
|
7547
7586
|
}
|
|
7548
7587
|
},
|
|
7549
7588
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7550
|
-
type: "object"
|
|
7589
|
+
type: "object",
|
|
7590
|
+
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
7551
7591
|
},
|
|
7552
7592
|
{
|
|
7593
|
+
deprecated: true,
|
|
7553
7594
|
description: "Potential duplicate access code detected.",
|
|
7554
7595
|
properties: {
|
|
7555
7596
|
created_at: {
|
|
@@ -7573,7 +7614,8 @@ var openapi = {
|
|
|
7573
7614
|
}
|
|
7574
7615
|
},
|
|
7575
7616
|
required: ["message", "is_access_code_error", "error_code"],
|
|
7576
|
-
type: "object"
|
|
7617
|
+
type: "object",
|
|
7618
|
+
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
7577
7619
|
},
|
|
7578
7620
|
{
|
|
7579
7621
|
description: "No Dormakaba Oracode user levels configured for the requested time range.",
|
|
@@ -7755,6 +7797,7 @@ var openapi = {
|
|
|
7755
7797
|
"x-variant-group-key": "locks"
|
|
7756
7798
|
},
|
|
7757
7799
|
{
|
|
7800
|
+
deprecated: true,
|
|
7758
7801
|
description: "Indicates that the device is offline.",
|
|
7759
7802
|
properties: {
|
|
7760
7803
|
created_at: {
|
|
@@ -7783,7 +7826,8 @@ var openapi = {
|
|
|
7783
7826
|
"created_at",
|
|
7784
7827
|
"error_code"
|
|
7785
7828
|
],
|
|
7786
|
-
type: "object"
|
|
7829
|
+
type: "object",
|
|
7830
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
7787
7831
|
},
|
|
7788
7832
|
{
|
|
7789
7833
|
description: "Indicates that the device has been removed.",
|
|
@@ -7943,6 +7987,7 @@ var openapi = {
|
|
|
7943
7987
|
"x-variant-group-key": "locks"
|
|
7944
7988
|
},
|
|
7945
7989
|
{
|
|
7990
|
+
deprecated: true,
|
|
7946
7991
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
7947
7992
|
properties: {
|
|
7948
7993
|
created_at: {
|
|
@@ -7972,10 +8017,12 @@ var openapi = {
|
|
|
7972
8017
|
"error_code"
|
|
7973
8018
|
],
|
|
7974
8019
|
type: "object",
|
|
8020
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
7975
8021
|
"x-variant-group-key": "locks"
|
|
7976
8022
|
},
|
|
7977
8023
|
{
|
|
7978
|
-
|
|
8024
|
+
deprecated: true,
|
|
8025
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
7979
8026
|
properties: {
|
|
7980
8027
|
created_at: {
|
|
7981
8028
|
description: "Date and time at which Seam created the error.",
|
|
@@ -8003,7 +8050,8 @@ var openapi = {
|
|
|
8003
8050
|
"created_at",
|
|
8004
8051
|
"error_code"
|
|
8005
8052
|
],
|
|
8006
|
-
type: "object"
|
|
8053
|
+
type: "object",
|
|
8054
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
8007
8055
|
},
|
|
8008
8056
|
{
|
|
8009
8057
|
description: "Indicates that device credentials are missing.",
|
|
@@ -8100,7 +8148,8 @@ var openapi = {
|
|
|
8100
8148
|
type: "object"
|
|
8101
8149
|
},
|
|
8102
8150
|
{
|
|
8103
|
-
|
|
8151
|
+
deprecated: true,
|
|
8152
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
8104
8153
|
properties: {
|
|
8105
8154
|
created_at: {
|
|
8106
8155
|
description: "Date and time at which Seam created the error.",
|
|
@@ -8128,7 +8177,8 @@ var openapi = {
|
|
|
8128
8177
|
"created_at",
|
|
8129
8178
|
"error_code"
|
|
8130
8179
|
],
|
|
8131
|
-
type: "object"
|
|
8180
|
+
type: "object",
|
|
8181
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
8132
8182
|
},
|
|
8133
8183
|
{
|
|
8134
8184
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -8509,6 +8559,7 @@ var openapi = {
|
|
|
8509
8559
|
type: "object"
|
|
8510
8560
|
},
|
|
8511
8561
|
{
|
|
8562
|
+
deprecated: true,
|
|
8512
8563
|
description: "Duplicate access code detected.",
|
|
8513
8564
|
properties: {
|
|
8514
8565
|
created_at: {
|
|
@@ -8527,7 +8578,8 @@ var openapi = {
|
|
|
8527
8578
|
}
|
|
8528
8579
|
},
|
|
8529
8580
|
required: ["message", "warning_code"],
|
|
8530
|
-
type: "object"
|
|
8581
|
+
type: "object",
|
|
8582
|
+
"x-deprecated": "Use `duplicate_code_on_device` error instead."
|
|
8531
8583
|
},
|
|
8532
8584
|
{
|
|
8533
8585
|
description: "Received an error when attempting to create this code.",
|
|
@@ -18157,6 +18209,7 @@ var openapi = {
|
|
|
18157
18209
|
"x-variant-group-key": "locks"
|
|
18158
18210
|
},
|
|
18159
18211
|
{
|
|
18212
|
+
deprecated: true,
|
|
18160
18213
|
description: "Indicates that the device is offline.",
|
|
18161
18214
|
properties: {
|
|
18162
18215
|
created_at: {
|
|
@@ -18185,7 +18238,8 @@ var openapi = {
|
|
|
18185
18238
|
"created_at",
|
|
18186
18239
|
"error_code"
|
|
18187
18240
|
],
|
|
18188
|
-
type: "object"
|
|
18241
|
+
type: "object",
|
|
18242
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
18189
18243
|
},
|
|
18190
18244
|
{
|
|
18191
18245
|
description: "Indicates that the device has been removed.",
|
|
@@ -18345,6 +18399,7 @@ var openapi = {
|
|
|
18345
18399
|
"x-variant-group-key": "locks"
|
|
18346
18400
|
},
|
|
18347
18401
|
{
|
|
18402
|
+
deprecated: true,
|
|
18348
18403
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
18349
18404
|
properties: {
|
|
18350
18405
|
created_at: {
|
|
@@ -18374,10 +18429,12 @@ var openapi = {
|
|
|
18374
18429
|
"error_code"
|
|
18375
18430
|
],
|
|
18376
18431
|
type: "object",
|
|
18432
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
18377
18433
|
"x-variant-group-key": "locks"
|
|
18378
18434
|
},
|
|
18379
18435
|
{
|
|
18380
|
-
|
|
18436
|
+
deprecated: true,
|
|
18437
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
18381
18438
|
properties: {
|
|
18382
18439
|
created_at: {
|
|
18383
18440
|
description: "Date and time at which Seam created the error.",
|
|
@@ -18405,7 +18462,8 @@ var openapi = {
|
|
|
18405
18462
|
"created_at",
|
|
18406
18463
|
"error_code"
|
|
18407
18464
|
],
|
|
18408
|
-
type: "object"
|
|
18465
|
+
type: "object",
|
|
18466
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
18409
18467
|
},
|
|
18410
18468
|
{
|
|
18411
18469
|
description: "Indicates that device credentials are missing.",
|
|
@@ -18502,7 +18560,8 @@ var openapi = {
|
|
|
18502
18560
|
type: "object"
|
|
18503
18561
|
},
|
|
18504
18562
|
{
|
|
18505
|
-
|
|
18563
|
+
deprecated: true,
|
|
18564
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
18506
18565
|
properties: {
|
|
18507
18566
|
created_at: {
|
|
18508
18567
|
description: "Date and time at which Seam created the error.",
|
|
@@ -18530,7 +18589,8 @@ var openapi = {
|
|
|
18530
18589
|
"created_at",
|
|
18531
18590
|
"error_code"
|
|
18532
18591
|
],
|
|
18533
|
-
type: "object"
|
|
18592
|
+
type: "object",
|
|
18593
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
18534
18594
|
},
|
|
18535
18595
|
{
|
|
18536
18596
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -21072,7 +21132,8 @@ var openapi = {
|
|
|
21072
21132
|
"x-variant-group-key": "access_codes"
|
|
21073
21133
|
},
|
|
21074
21134
|
{
|
|
21075
|
-
|
|
21135
|
+
deprecated: true,
|
|
21136
|
+
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
21076
21137
|
properties: {
|
|
21077
21138
|
created_at: {
|
|
21078
21139
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -21090,7 +21151,8 @@ var openapi = {
|
|
|
21090
21151
|
}
|
|
21091
21152
|
},
|
|
21092
21153
|
required: ["message", "created_at", "warning_code"],
|
|
21093
|
-
type: "object"
|
|
21154
|
+
type: "object",
|
|
21155
|
+
"x-deprecated": "Use `hub_disconnected` device error instead."
|
|
21094
21156
|
},
|
|
21095
21157
|
{
|
|
21096
21158
|
description: "Indicates that a third-party integration has been detected.",
|
|
@@ -31949,6 +32011,7 @@ var openapi = {
|
|
|
31949
32011
|
type: "object"
|
|
31950
32012
|
},
|
|
31951
32013
|
{
|
|
32014
|
+
deprecated: true,
|
|
31952
32015
|
description: "Duplicate access code name detected.",
|
|
31953
32016
|
properties: {
|
|
31954
32017
|
created_at: {
|
|
@@ -31972,9 +32035,11 @@ var openapi = {
|
|
|
31972
32035
|
}
|
|
31973
32036
|
},
|
|
31974
32037
|
required: ["message", "is_access_code_error", "error_code"],
|
|
31975
|
-
type: "object"
|
|
32038
|
+
type: "object",
|
|
32039
|
+
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
31976
32040
|
},
|
|
31977
32041
|
{
|
|
32042
|
+
deprecated: true,
|
|
31978
32043
|
description: "Potential duplicate access code detected.",
|
|
31979
32044
|
properties: {
|
|
31980
32045
|
created_at: {
|
|
@@ -31998,7 +32063,8 @@ var openapi = {
|
|
|
31998
32063
|
}
|
|
31999
32064
|
},
|
|
32000
32065
|
required: ["message", "is_access_code_error", "error_code"],
|
|
32001
|
-
type: "object"
|
|
32066
|
+
type: "object",
|
|
32067
|
+
"x-deprecated": "Use `duplicate_code_on_device` instead."
|
|
32002
32068
|
},
|
|
32003
32069
|
{
|
|
32004
32070
|
description: "No Dormakaba Oracode user levels configured for the requested time range.",
|
|
@@ -32180,6 +32246,7 @@ var openapi = {
|
|
|
32180
32246
|
"x-variant-group-key": "locks"
|
|
32181
32247
|
},
|
|
32182
32248
|
{
|
|
32249
|
+
deprecated: true,
|
|
32183
32250
|
description: "Indicates that the device is offline.",
|
|
32184
32251
|
properties: {
|
|
32185
32252
|
created_at: {
|
|
@@ -32208,7 +32275,8 @@ var openapi = {
|
|
|
32208
32275
|
"created_at",
|
|
32209
32276
|
"error_code"
|
|
32210
32277
|
],
|
|
32211
|
-
type: "object"
|
|
32278
|
+
type: "object",
|
|
32279
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
32212
32280
|
},
|
|
32213
32281
|
{
|
|
32214
32282
|
description: "Indicates that the device has been removed.",
|
|
@@ -32368,6 +32436,7 @@ var openapi = {
|
|
|
32368
32436
|
"x-variant-group-key": "locks"
|
|
32369
32437
|
},
|
|
32370
32438
|
{
|
|
32439
|
+
deprecated: true,
|
|
32371
32440
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
32372
32441
|
properties: {
|
|
32373
32442
|
created_at: {
|
|
@@ -32397,10 +32466,12 @@ var openapi = {
|
|
|
32397
32466
|
"error_code"
|
|
32398
32467
|
],
|
|
32399
32468
|
type: "object",
|
|
32469
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
32400
32470
|
"x-variant-group-key": "locks"
|
|
32401
32471
|
},
|
|
32402
32472
|
{
|
|
32403
|
-
|
|
32473
|
+
deprecated: true,
|
|
32474
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
32404
32475
|
properties: {
|
|
32405
32476
|
created_at: {
|
|
32406
32477
|
description: "Date and time at which Seam created the error.",
|
|
@@ -32428,7 +32499,8 @@ var openapi = {
|
|
|
32428
32499
|
"created_at",
|
|
32429
32500
|
"error_code"
|
|
32430
32501
|
],
|
|
32431
|
-
type: "object"
|
|
32502
|
+
type: "object",
|
|
32503
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
32432
32504
|
},
|
|
32433
32505
|
{
|
|
32434
32506
|
description: "Indicates that device credentials are missing.",
|
|
@@ -32525,7 +32597,8 @@ var openapi = {
|
|
|
32525
32597
|
type: "object"
|
|
32526
32598
|
},
|
|
32527
32599
|
{
|
|
32528
|
-
|
|
32600
|
+
deprecated: true,
|
|
32601
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
32529
32602
|
properties: {
|
|
32530
32603
|
created_at: {
|
|
32531
32604
|
description: "Date and time at which Seam created the error.",
|
|
@@ -32553,7 +32626,8 @@ var openapi = {
|
|
|
32553
32626
|
"created_at",
|
|
32554
32627
|
"error_code"
|
|
32555
32628
|
],
|
|
32556
|
-
type: "object"
|
|
32629
|
+
type: "object",
|
|
32630
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
32557
32631
|
},
|
|
32558
32632
|
{
|
|
32559
32633
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -32651,6 +32725,7 @@ var openapi = {
|
|
|
32651
32725
|
type: "object"
|
|
32652
32726
|
},
|
|
32653
32727
|
{
|
|
32728
|
+
deprecated: true,
|
|
32654
32729
|
description: "Duplicate access code detected.",
|
|
32655
32730
|
properties: {
|
|
32656
32731
|
created_at: {
|
|
@@ -32669,7 +32744,8 @@ var openapi = {
|
|
|
32669
32744
|
}
|
|
32670
32745
|
},
|
|
32671
32746
|
required: ["message", "warning_code"],
|
|
32672
|
-
type: "object"
|
|
32747
|
+
type: "object",
|
|
32748
|
+
"x-deprecated": "Use `duplicate_code_on_device` error instead."
|
|
32673
32749
|
},
|
|
32674
32750
|
{
|
|
32675
32751
|
description: "Received an error when attempting to create this code.",
|
|
@@ -34842,6 +34918,7 @@ var openapi = {
|
|
|
34842
34918
|
"x-variant-group-key": "locks"
|
|
34843
34919
|
},
|
|
34844
34920
|
{
|
|
34921
|
+
deprecated: true,
|
|
34845
34922
|
description: "Indicates that the device is offline.",
|
|
34846
34923
|
properties: {
|
|
34847
34924
|
created_at: {
|
|
@@ -34870,7 +34947,8 @@ var openapi = {
|
|
|
34870
34947
|
"created_at",
|
|
34871
34948
|
"error_code"
|
|
34872
34949
|
],
|
|
34873
|
-
type: "object"
|
|
34950
|
+
type: "object",
|
|
34951
|
+
"x-deprecated": "Use `device_disconnected` instead."
|
|
34874
34952
|
},
|
|
34875
34953
|
{
|
|
34876
34954
|
description: "Indicates that the device has been removed.",
|
|
@@ -35030,6 +35108,7 @@ var openapi = {
|
|
|
35030
35108
|
"x-variant-group-key": "locks"
|
|
35031
35109
|
},
|
|
35032
35110
|
{
|
|
35111
|
+
deprecated: true,
|
|
35033
35112
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
35034
35113
|
properties: {
|
|
35035
35114
|
created_at: {
|
|
@@ -35059,10 +35138,12 @@ var openapi = {
|
|
|
35059
35138
|
"error_code"
|
|
35060
35139
|
],
|
|
35061
35140
|
type: "object",
|
|
35141
|
+
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
35062
35142
|
"x-variant-group-key": "locks"
|
|
35063
35143
|
},
|
|
35064
35144
|
{
|
|
35065
|
-
|
|
35145
|
+
deprecated: true,
|
|
35146
|
+
description: "Indicates that the lock is not paired with a gateway.",
|
|
35066
35147
|
properties: {
|
|
35067
35148
|
created_at: {
|
|
35068
35149
|
description: "Date and time at which Seam created the error.",
|
|
@@ -35090,7 +35171,8 @@ var openapi = {
|
|
|
35090
35171
|
"created_at",
|
|
35091
35172
|
"error_code"
|
|
35092
35173
|
],
|
|
35093
|
-
type: "object"
|
|
35174
|
+
type: "object",
|
|
35175
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
35094
35176
|
},
|
|
35095
35177
|
{
|
|
35096
35178
|
description: "Indicates that device credentials are missing.",
|
|
@@ -35187,7 +35269,8 @@ var openapi = {
|
|
|
35187
35269
|
type: "object"
|
|
35188
35270
|
},
|
|
35189
35271
|
{
|
|
35190
|
-
|
|
35272
|
+
deprecated: true,
|
|
35273
|
+
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
35191
35274
|
properties: {
|
|
35192
35275
|
created_at: {
|
|
35193
35276
|
description: "Date and time at which Seam created the error.",
|
|
@@ -35215,7 +35298,8 @@ var openapi = {
|
|
|
35215
35298
|
"created_at",
|
|
35216
35299
|
"error_code"
|
|
35217
35300
|
],
|
|
35218
|
-
type: "object"
|
|
35301
|
+
type: "object",
|
|
35302
|
+
"x-deprecated": "Use `hub_disconnected` instead."
|
|
35219
35303
|
},
|
|
35220
35304
|
{
|
|
35221
35305
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/latest/capability-guides/seam-bridge), for example, if the Seam Bridge executable has stopped or if the computer running the Seam Bridge executable is offline. See also [Troubleshooting Your Access Control System](https://docs.seam.co/latest/capability-guides/access-systems/troubleshooting-your-access-control-system#acs_system.errors.seam_bridge_disconnected).",
|
|
@@ -35478,7 +35562,8 @@ var openapi = {
|
|
|
35478
35562
|
"x-variant-group-key": "access_codes"
|
|
35479
35563
|
},
|
|
35480
35564
|
{
|
|
35481
|
-
|
|
35565
|
+
deprecated: true,
|
|
35566
|
+
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
35482
35567
|
properties: {
|
|
35483
35568
|
created_at: {
|
|
35484
35569
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -35496,7 +35581,8 @@ var openapi = {
|
|
|
35496
35581
|
}
|
|
35497
35582
|
},
|
|
35498
35583
|
required: ["message", "created_at", "warning_code"],
|
|
35499
|
-
type: "object"
|
|
35584
|
+
type: "object",
|
|
35585
|
+
"x-deprecated": "Use `hub_disconnected` device error instead."
|
|
35500
35586
|
},
|
|
35501
35587
|
{
|
|
35502
35588
|
description: "Indicates that a third-party integration has been detected.",
|
|
@@ -59031,7 +59117,7 @@ var openapi = {
|
|
|
59031
59117
|
},
|
|
59032
59118
|
"/devices/simulate/connect_to_hub": {
|
|
59033
59119
|
post: {
|
|
59034
|
-
description: "Simulates bringing the Wi\u2011Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the
|
|
59120
|
+
description: "Simulates bringing the Wi\u2011Fi hub (bridge) back online for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August and TTLock locks.\nThis will clear the `hub_disconnected` error on the device.",
|
|
59035
59121
|
operationId: "devicesSimulateConnectToHubPost",
|
|
59036
59122
|
requestBody: {
|
|
59037
59123
|
content: {
|
|
@@ -59133,7 +59219,7 @@ var openapi = {
|
|
|
59133
59219
|
},
|
|
59134
59220
|
"/devices/simulate/disconnect_from_hub": {
|
|
59135
59221
|
post: {
|
|
59136
|
-
description: "Simulates taking the Wi\u2011Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the
|
|
59222
|
+
description: "Simulates taking the Wi\u2011Fi hub (bridge) offline for a device.\nOnly applicable for sandbox workspaces and currently\nimplemented for August, TTLock, and IglooHome devices.\nThis will set the `hub_disconnected` error on the device, or mark the\nIglooHome bridge offline in sandbox.",
|
|
59137
59223
|
operationId: "devicesSimulateDisconnectFromHubPost",
|
|
59138
59224
|
requestBody: {
|
|
59139
59225
|
content: {
|