@seamapi/types 1.417.0 → 1.418.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 +229 -79
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +398 -4
- package/lib/seam/connect/models/devices/device.js +131 -67
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +398 -4
- package/lib/seam/connect/openapi.js +82 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +202 -150
- package/src/lib/seam/connect/openapi.ts +88 -18
package/dist/connect.cjs
CHANGED
|
@@ -1304,39 +1304,61 @@ var account_disconnected2 = common_device_error.extend({
|
|
|
1304
1304
|
}).describe("Indicates that the account is disconnected.");
|
|
1305
1305
|
var empty_backup_access_code_pool = common_device_error.extend({
|
|
1306
1306
|
error_code: zod.z.literal("empty_backup_access_code_pool").describe(error_code_description2)
|
|
1307
|
-
}).describe(
|
|
1308
|
-
|
|
1309
|
-
|
|
1307
|
+
}).describe(`
|
|
1308
|
+
---
|
|
1309
|
+
variant_group_key: access_codes
|
|
1310
|
+
---
|
|
1311
|
+
Indicates that the [backup access code pool](https://docs.seam.co/latest/capability-guides/smart-locks/access-codes/backup-access-codes) is empty.
|
|
1312
|
+
`);
|
|
1310
1313
|
var august_lock_not_authorized = common_device_error.extend({
|
|
1311
1314
|
error_code: zod.z.literal("august_lock_not_authorized").describe(error_code_description2)
|
|
1312
|
-
}).describe(
|
|
1315
|
+
}).describe(`
|
|
1316
|
+
---
|
|
1317
|
+
variant_group_key: locks
|
|
1318
|
+
---
|
|
1319
|
+
Indicates that the user is not authorized to use the August lock.
|
|
1320
|
+
`);
|
|
1313
1321
|
var august_lock_missing_bridge = common_device_error.extend({
|
|
1314
1322
|
error_code: zod.z.literal("august_lock_missing_bridge").describe(error_code_description2)
|
|
1315
|
-
}).describe(
|
|
1323
|
+
}).describe(`
|
|
1324
|
+
---
|
|
1325
|
+
variant_group_key: locks
|
|
1326
|
+
---
|
|
1327
|
+
Indicates that the lock is not connected to a bridge.
|
|
1328
|
+
`);
|
|
1316
1329
|
var salto_ks_subscription_limit_exceeded2 = common_device_error.extend({
|
|
1317
1330
|
error_code: zod.z.literal("salto_ks_subscription_limit_exceeded").describe(error_code_description2),
|
|
1318
1331
|
is_connected_account_error: zod.z.literal(true).describe(
|
|
1319
1332
|
"Indicates that the error is a [connected account](https://docs.seam.co/latest/api/connected_accounts) error."
|
|
1320
1333
|
),
|
|
1321
1334
|
is_device_error: zod.z.literal(false).describe("Indicates that the error is not a device error.")
|
|
1322
|
-
}).describe(
|
|
1335
|
+
}).describe(`
|
|
1336
|
+
---
|
|
1337
|
+
variant_group_key: locks
|
|
1338
|
+
---
|
|
1339
|
+
Indicates that the Salto site user limit has been reached.
|
|
1340
|
+
`);
|
|
1323
1341
|
var ttlock_lock_not_paired_to_gateway = common_device_error.extend({
|
|
1324
1342
|
error_code: zod.z.literal("ttlock_lock_not_paired_to_gateway").describe(error_code_description2)
|
|
1325
|
-
}).describe(
|
|
1343
|
+
}).describe(`
|
|
1344
|
+
Indicates that the lock is not paired with a gateway.
|
|
1345
|
+
`);
|
|
1326
1346
|
var missing_device_credentials = common_device_error.extend({
|
|
1327
1347
|
error_code: zod.z.literal("missing_device_credentials").describe(error_code_description2)
|
|
1328
1348
|
}).describe("Indicates that device credentials are missing.");
|
|
1329
1349
|
var auxiliary_heat_running = common_device_error.extend({
|
|
1330
1350
|
error_code: zod.z.literal("auxiliary_heat_running").describe(error_code_description2)
|
|
1331
|
-
}).describe(
|
|
1351
|
+
}).describe(`
|
|
1352
|
+
Indicates that the auxiliary heat is running.
|
|
1353
|
+
`);
|
|
1332
1354
|
var subscription_required = common_device_error.extend({
|
|
1333
1355
|
error_code: zod.z.literal("subscription_required").describe(error_code_description2)
|
|
1334
1356
|
}).describe("Indicates that a subscription is required to connect.");
|
|
1335
1357
|
var lockly_missing_wifi_bridge = common_device_error.extend({
|
|
1336
1358
|
error_code: zod.z.literal("lockly_missing_wifi_bridge").describe(error_code_description2)
|
|
1337
|
-
}).describe(
|
|
1338
|
-
|
|
1339
|
-
);
|
|
1359
|
+
}).describe(`
|
|
1360
|
+
Indicates that the Lockly lock is not connected to a Wi-Fi bridge.
|
|
1361
|
+
`);
|
|
1340
1362
|
var device_error = zod.z.discriminatedUnion("error_code", [
|
|
1341
1363
|
account_disconnected2,
|
|
1342
1364
|
salto_ks_subscription_limit_exceeded2,
|
|
@@ -1378,10 +1400,20 @@ var common_device_warning = zod.z.object({
|
|
|
1378
1400
|
});
|
|
1379
1401
|
var partial_backup_access_code_pool = common_device_warning.extend({
|
|
1380
1402
|
warning_code: zod.z.literal("partial_backup_access_code_pool").describe(warning_code_description2)
|
|
1381
|
-
}).describe(
|
|
1403
|
+
}).describe(`
|
|
1404
|
+
---
|
|
1405
|
+
variant_group_key: access_codes
|
|
1406
|
+
---
|
|
1407
|
+
Indicates that the backup access code is unhealthy.
|
|
1408
|
+
`);
|
|
1382
1409
|
var many_active_backup_codes = common_device_warning.extend({
|
|
1383
1410
|
warning_code: zod.z.literal("many_active_backup_codes").describe(warning_code_description2)
|
|
1384
|
-
}).describe(
|
|
1411
|
+
}).describe(`
|
|
1412
|
+
---
|
|
1413
|
+
variant_group_key: access_codes
|
|
1414
|
+
---
|
|
1415
|
+
Indicates that there are too many backup codes.
|
|
1416
|
+
`);
|
|
1385
1417
|
var salto_ks_office_mode = common_device_warning.extend({
|
|
1386
1418
|
warning_code: zod.z.literal("salto_ks_office_mode").describe(warning_code_description2)
|
|
1387
1419
|
}).describe(
|
|
@@ -1399,7 +1431,9 @@ var salto_ks_subscription_limit_almost_reached2 = common_device_warning.extend({
|
|
|
1399
1431
|
);
|
|
1400
1432
|
var wyze_device_missing_gateway = common_device_warning.extend({
|
|
1401
1433
|
warning_code: zod.z.literal("wyze_device_missing_gateway").describe(warning_code_description2)
|
|
1402
|
-
}).describe(
|
|
1434
|
+
}).describe(`
|
|
1435
|
+
Indicates that the Wyze Lock is not connected to a gateway.
|
|
1436
|
+
`);
|
|
1403
1437
|
var functional_offline_device = common_device_warning.extend({
|
|
1404
1438
|
warning_code: zod.z.literal("functional_offline_device").describe(warning_code_description2)
|
|
1405
1439
|
}).describe(
|
|
@@ -1410,18 +1444,33 @@ var third_party_integration_detected = common_device_warning.extend({
|
|
|
1410
1444
|
}).describe("Indicates that a third-party integration has been detected.");
|
|
1411
1445
|
var nest_thermostat_in_manual_eco_mode = common_device_warning.extend({
|
|
1412
1446
|
warning_code: zod.z.literal("nest_thermostat_in_manual_eco_mode").describe(warning_code_description2)
|
|
1413
|
-
}).describe(
|
|
1447
|
+
}).describe(`
|
|
1448
|
+
---
|
|
1449
|
+
variant_group_key: thermostats
|
|
1450
|
+
---
|
|
1451
|
+
Indicates that the Nest thermostat is in manual eco mode.
|
|
1452
|
+
`);
|
|
1414
1453
|
var ttlock_lock_gateway_unlocking_not_enabled = common_device_warning.extend({
|
|
1415
1454
|
warning_code: zod.z.literal("ttlock_lock_gateway_unlocking_not_enabled").describe(warning_code_description2)
|
|
1416
|
-
}).describe(
|
|
1417
|
-
|
|
1418
|
-
|
|
1455
|
+
}).describe(`
|
|
1456
|
+
---
|
|
1457
|
+
variant_group_key: locks
|
|
1458
|
+
---
|
|
1459
|
+
Indicates that the Remote Unlock feature is not enabled in the settings."
|
|
1460
|
+
`);
|
|
1419
1461
|
var ttlock_weak_gateway_signal = common_device_warning.extend({
|
|
1420
1462
|
warning_code: zod.z.literal("ttlock_weak_gateway_signal").describe(warning_code_description2)
|
|
1421
|
-
}).describe(
|
|
1463
|
+
}).describe(`
|
|
1464
|
+
Indicates that the gateway signal is weak.
|
|
1465
|
+
`);
|
|
1422
1466
|
var temperature_threshold_exceeded = common_device_warning.extend({
|
|
1423
1467
|
warning_code: zod.z.literal("temperature_threshold_exceeded").describe(warning_code_description2)
|
|
1424
|
-
}).describe(
|
|
1468
|
+
}).describe(`
|
|
1469
|
+
---
|
|
1470
|
+
variant_group_key: thermostats
|
|
1471
|
+
---
|
|
1472
|
+
Indicates that the temperature threshold has been exceeded.
|
|
1473
|
+
`);
|
|
1425
1474
|
var device_communication_degraded = common_device_warning.extend({
|
|
1426
1475
|
warning_code: zod.z.literal("device_communication_degraded").describe(warning_code_description2)
|
|
1427
1476
|
}).describe("Indicates that the device appears to be unresponsive.");
|
|
@@ -1438,9 +1487,12 @@ var lockly_time_zone_not_configured = common_device_warning.extend({
|
|
|
1438
1487
|
);
|
|
1439
1488
|
var unknown_issue_with_phone = common_device_warning.extend({
|
|
1440
1489
|
warning_code: zod.z.literal("unknown_issue_with_phone").describe(warning_code_description2)
|
|
1441
|
-
}).describe(
|
|
1442
|
-
|
|
1443
|
-
|
|
1490
|
+
}).describe(`
|
|
1491
|
+
---
|
|
1492
|
+
variant_group_key: phones
|
|
1493
|
+
---
|
|
1494
|
+
Indicates that an unknown issue occurred while syncing the state of the phone with the provider. This issue may affect the proper functioning of the phone.
|
|
1495
|
+
`);
|
|
1444
1496
|
var device_warning = zod.z.discriminatedUnion("warning_code", [
|
|
1445
1497
|
partial_backup_access_code_pool,
|
|
1446
1498
|
many_active_backup_codes,
|
|
@@ -1705,12 +1757,46 @@ var device = zod.z.object({
|
|
|
1705
1757
|
)
|
|
1706
1758
|
)
|
|
1707
1759
|
])
|
|
1708
|
-
).describe(
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1760
|
+
).describe(`
|
|
1761
|
+
---
|
|
1762
|
+
variant_groups:
|
|
1763
|
+
locks:
|
|
1764
|
+
name: Locks
|
|
1765
|
+
access_codes:
|
|
1766
|
+
name: Access Codes
|
|
1767
|
+
thermostats:
|
|
1768
|
+
name: Thermostats
|
|
1769
|
+
hardware:
|
|
1770
|
+
name: Hardware
|
|
1771
|
+
noise_sensors:
|
|
1772
|
+
name: Noise Sensors
|
|
1773
|
+
phones:
|
|
1774
|
+
name: Phones
|
|
1775
|
+
provider_metadata:
|
|
1776
|
+
name: Provider Metadata
|
|
1777
|
+
---
|
|
1778
|
+
Array of errors associated with the device. Each error object within the array contains two fields: \`error_code\` and \`message\`. \`error_code\` is a string that uniquely identifies the type of error, enabling quick recognition and categorization of the issue. \`message\` provides a more detailed description of the error, offering insights into the issue and potentially how to rectify it.
|
|
1779
|
+
`),
|
|
1780
|
+
warnings: zod.z.array(device_warning).describe(`
|
|
1781
|
+
---
|
|
1782
|
+
variant_groups:
|
|
1783
|
+
locks:
|
|
1784
|
+
name: Locks
|
|
1785
|
+
access_codes:
|
|
1786
|
+
name: Access Codes
|
|
1787
|
+
thermostats:
|
|
1788
|
+
name: Thermostats
|
|
1789
|
+
hardware:
|
|
1790
|
+
name: Hardware
|
|
1791
|
+
noise_sensors:
|
|
1792
|
+
name: Noise Sensors
|
|
1793
|
+
phones:
|
|
1794
|
+
name: Phones
|
|
1795
|
+
provider_metadata:
|
|
1796
|
+
name: Provider Metadata
|
|
1797
|
+
---
|
|
1798
|
+
Array of warnings associated with the device. Each warning object within the array contains two fields: \`warning_code\` and \`message\`. \`warning_code\` is a string that uniquely identifies the type of warning, enabling quick recognition and categorization of the issue. \`message\` provides a more detailed description of the warning, offering insights into the issue and potentially how to rectify it.
|
|
1799
|
+
`),
|
|
1714
1800
|
created_at: zod.z.string().datetime().describe("Date and time at which the device object was created."),
|
|
1715
1801
|
is_managed: zod.z.literal(true).describe(
|
|
1716
1802
|
"Indicates whether Seam manages the device. See also [Managed and Unmanaged Devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices)."
|
|
@@ -6072,7 +6158,8 @@ var openapi_default = {
|
|
|
6072
6158
|
"error_code",
|
|
6073
6159
|
"is_connected_account_error"
|
|
6074
6160
|
],
|
|
6075
|
-
type: "object"
|
|
6161
|
+
type: "object",
|
|
6162
|
+
"x-variant-group-key": "locks"
|
|
6076
6163
|
},
|
|
6077
6164
|
{
|
|
6078
6165
|
description: "Indicates that the device is offline.",
|
|
@@ -6227,7 +6314,8 @@ var openapi_default = {
|
|
|
6227
6314
|
"created_at",
|
|
6228
6315
|
"error_code"
|
|
6229
6316
|
],
|
|
6230
|
-
type: "object"
|
|
6317
|
+
type: "object",
|
|
6318
|
+
"x-variant-group-key": "access_codes"
|
|
6231
6319
|
},
|
|
6232
6320
|
{
|
|
6233
6321
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -6258,7 +6346,8 @@ var openapi_default = {
|
|
|
6258
6346
|
"created_at",
|
|
6259
6347
|
"error_code"
|
|
6260
6348
|
],
|
|
6261
|
-
type: "object"
|
|
6349
|
+
type: "object",
|
|
6350
|
+
"x-variant-group-key": "locks"
|
|
6262
6351
|
},
|
|
6263
6352
|
{
|
|
6264
6353
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -6289,10 +6378,11 @@ var openapi_default = {
|
|
|
6289
6378
|
"created_at",
|
|
6290
6379
|
"error_code"
|
|
6291
6380
|
],
|
|
6292
|
-
type: "object"
|
|
6381
|
+
type: "object",
|
|
6382
|
+
"x-variant-group-key": "locks"
|
|
6293
6383
|
},
|
|
6294
6384
|
{
|
|
6295
|
-
description: "Indicates that the lock is not paired with a gateway
|
|
6385
|
+
description: "\n Indicates that the lock is not paired with a gateway.\n ",
|
|
6296
6386
|
properties: {
|
|
6297
6387
|
created_at: {
|
|
6298
6388
|
description: "Date and time at which Seam created the error.",
|
|
@@ -6354,7 +6444,7 @@ var openapi_default = {
|
|
|
6354
6444
|
type: "object"
|
|
6355
6445
|
},
|
|
6356
6446
|
{
|
|
6357
|
-
description: "Indicates that the auxiliary heat is running
|
|
6447
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
6358
6448
|
properties: {
|
|
6359
6449
|
created_at: {
|
|
6360
6450
|
description: "Date and time at which Seam created the error.",
|
|
@@ -6416,7 +6506,7 @@ var openapi_default = {
|
|
|
6416
6506
|
type: "object"
|
|
6417
6507
|
},
|
|
6418
6508
|
{
|
|
6419
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
6509
|
+
description: "\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ",
|
|
6420
6510
|
properties: {
|
|
6421
6511
|
created_at: {
|
|
6422
6512
|
description: "Date and time at which Seam created the error.",
|
|
@@ -13666,7 +13756,8 @@ var openapi_default = {
|
|
|
13666
13756
|
"error_code",
|
|
13667
13757
|
"is_connected_account_error"
|
|
13668
13758
|
],
|
|
13669
|
-
type: "object"
|
|
13759
|
+
type: "object",
|
|
13760
|
+
"x-variant-group-key": "locks"
|
|
13670
13761
|
},
|
|
13671
13762
|
{
|
|
13672
13763
|
description: "Indicates that the device is offline.",
|
|
@@ -13821,7 +13912,8 @@ var openapi_default = {
|
|
|
13821
13912
|
"created_at",
|
|
13822
13913
|
"error_code"
|
|
13823
13914
|
],
|
|
13824
|
-
type: "object"
|
|
13915
|
+
type: "object",
|
|
13916
|
+
"x-variant-group-key": "access_codes"
|
|
13825
13917
|
},
|
|
13826
13918
|
{
|
|
13827
13919
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -13852,7 +13944,8 @@ var openapi_default = {
|
|
|
13852
13944
|
"created_at",
|
|
13853
13945
|
"error_code"
|
|
13854
13946
|
],
|
|
13855
|
-
type: "object"
|
|
13947
|
+
type: "object",
|
|
13948
|
+
"x-variant-group-key": "locks"
|
|
13856
13949
|
},
|
|
13857
13950
|
{
|
|
13858
13951
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -13883,10 +13976,11 @@ var openapi_default = {
|
|
|
13883
13976
|
"created_at",
|
|
13884
13977
|
"error_code"
|
|
13885
13978
|
],
|
|
13886
|
-
type: "object"
|
|
13979
|
+
type: "object",
|
|
13980
|
+
"x-variant-group-key": "locks"
|
|
13887
13981
|
},
|
|
13888
13982
|
{
|
|
13889
|
-
description: "Indicates that the lock is not paired with a gateway
|
|
13983
|
+
description: "\n Indicates that the lock is not paired with a gateway.\n ",
|
|
13890
13984
|
properties: {
|
|
13891
13985
|
created_at: {
|
|
13892
13986
|
description: "Date and time at which Seam created the error.",
|
|
@@ -13948,7 +14042,7 @@ var openapi_default = {
|
|
|
13948
14042
|
type: "object"
|
|
13949
14043
|
},
|
|
13950
14044
|
{
|
|
13951
|
-
description: "Indicates that the auxiliary heat is running
|
|
14045
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
13952
14046
|
properties: {
|
|
13953
14047
|
created_at: {
|
|
13954
14048
|
description: "Date and time at which Seam created the error.",
|
|
@@ -14010,7 +14104,7 @@ var openapi_default = {
|
|
|
14010
14104
|
type: "object"
|
|
14011
14105
|
},
|
|
14012
14106
|
{
|
|
14013
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
14107
|
+
description: "\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ",
|
|
14014
14108
|
properties: {
|
|
14015
14109
|
created_at: {
|
|
14016
14110
|
description: "Date and time at which Seam created the error.",
|
|
@@ -14100,7 +14194,16 @@ var openapi_default = {
|
|
|
14100
14194
|
}
|
|
14101
14195
|
]
|
|
14102
14196
|
},
|
|
14103
|
-
type: "array"
|
|
14197
|
+
type: "array",
|
|
14198
|
+
"x-variant-groups": {
|
|
14199
|
+
access_codes: { name: "Access Codes" },
|
|
14200
|
+
hardware: { name: "Hardware" },
|
|
14201
|
+
locks: { name: "Locks" },
|
|
14202
|
+
noise_sensors: { name: "Noise Sensors" },
|
|
14203
|
+
phones: { name: "Phones" },
|
|
14204
|
+
provider_metadata: { name: "Provider Metadata" },
|
|
14205
|
+
thermostats: { name: "Thermostats" }
|
|
14206
|
+
}
|
|
14104
14207
|
},
|
|
14105
14208
|
is_managed: {
|
|
14106
14209
|
description: "Indicates whether Seam manages the device. See also [Managed and Unmanaged Devices](https://docs.seam.co/latest/core-concepts/devices/managed-and-unmanaged-devices).",
|
|
@@ -16160,7 +16263,8 @@ var openapi_default = {
|
|
|
16160
16263
|
}
|
|
16161
16264
|
},
|
|
16162
16265
|
required: ["message", "created_at", "warning_code"],
|
|
16163
|
-
type: "object"
|
|
16266
|
+
type: "object",
|
|
16267
|
+
"x-variant-group-key": "access_codes"
|
|
16164
16268
|
},
|
|
16165
16269
|
{
|
|
16166
16270
|
description: "Indicates that there are too many backup codes.",
|
|
@@ -16181,10 +16285,11 @@ var openapi_default = {
|
|
|
16181
16285
|
}
|
|
16182
16286
|
},
|
|
16183
16287
|
required: ["message", "created_at", "warning_code"],
|
|
16184
|
-
type: "object"
|
|
16288
|
+
type: "object",
|
|
16289
|
+
"x-variant-group-key": "access_codes"
|
|
16185
16290
|
},
|
|
16186
16291
|
{
|
|
16187
|
-
description: "Indicates that the Wyze Lock is not connected to a gateway
|
|
16292
|
+
description: "\n Indicates that the Wyze Lock is not connected to a gateway.\n ",
|
|
16188
16293
|
properties: {
|
|
16189
16294
|
created_at: {
|
|
16190
16295
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16265,10 +16370,11 @@ var openapi_default = {
|
|
|
16265
16370
|
}
|
|
16266
16371
|
},
|
|
16267
16372
|
required: ["message", "created_at", "warning_code"],
|
|
16268
|
-
type: "object"
|
|
16373
|
+
type: "object",
|
|
16374
|
+
"x-variant-group-key": "thermostats"
|
|
16269
16375
|
},
|
|
16270
16376
|
{
|
|
16271
|
-
description:
|
|
16377
|
+
description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
16272
16378
|
properties: {
|
|
16273
16379
|
created_at: {
|
|
16274
16380
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16286,10 +16392,11 @@ var openapi_default = {
|
|
|
16286
16392
|
}
|
|
16287
16393
|
},
|
|
16288
16394
|
required: ["message", "created_at", "warning_code"],
|
|
16289
|
-
type: "object"
|
|
16395
|
+
type: "object",
|
|
16396
|
+
"x-variant-group-key": "locks"
|
|
16290
16397
|
},
|
|
16291
16398
|
{
|
|
16292
|
-
description: "Indicates that the gateway signal is weak
|
|
16399
|
+
description: "\n Indicates that the gateway signal is weak.\n ",
|
|
16293
16400
|
properties: {
|
|
16294
16401
|
created_at: {
|
|
16295
16402
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16328,7 +16435,8 @@ var openapi_default = {
|
|
|
16328
16435
|
}
|
|
16329
16436
|
},
|
|
16330
16437
|
required: ["message", "created_at", "warning_code"],
|
|
16331
|
-
type: "object"
|
|
16438
|
+
type: "object",
|
|
16439
|
+
"x-variant-group-key": "thermostats"
|
|
16332
16440
|
},
|
|
16333
16441
|
{
|
|
16334
16442
|
description: "Indicates that the device appears to be unresponsive.",
|
|
@@ -16475,7 +16583,8 @@ var openapi_default = {
|
|
|
16475
16583
|
}
|
|
16476
16584
|
},
|
|
16477
16585
|
required: ["message", "created_at", "warning_code"],
|
|
16478
|
-
type: "object"
|
|
16586
|
+
type: "object",
|
|
16587
|
+
"x-variant-group-key": "phones"
|
|
16479
16588
|
},
|
|
16480
16589
|
{
|
|
16481
16590
|
description: "Indicates that Seam detected that the Lockly device does not have a time zone configured. Time-bound codes may not work as expected.",
|
|
@@ -16500,7 +16609,16 @@ var openapi_default = {
|
|
|
16500
16609
|
}
|
|
16501
16610
|
]
|
|
16502
16611
|
},
|
|
16503
|
-
type: "array"
|
|
16612
|
+
type: "array",
|
|
16613
|
+
"x-variant-groups": {
|
|
16614
|
+
access_codes: { name: "Access Codes" },
|
|
16615
|
+
hardware: { name: "Hardware" },
|
|
16616
|
+
locks: { name: "Locks" },
|
|
16617
|
+
noise_sensors: { name: "Noise Sensors" },
|
|
16618
|
+
phones: { name: "Phones" },
|
|
16619
|
+
provider_metadata: { name: "Provider Metadata" },
|
|
16620
|
+
thermostats: { name: "Thermostats" }
|
|
16621
|
+
}
|
|
16504
16622
|
},
|
|
16505
16623
|
workspace_id: {
|
|
16506
16624
|
description: "Unique identifier for the Seam workspace associated with the device.",
|
|
@@ -23411,7 +23529,8 @@ var openapi_default = {
|
|
|
23411
23529
|
"error_code",
|
|
23412
23530
|
"is_connected_account_error"
|
|
23413
23531
|
],
|
|
23414
|
-
type: "object"
|
|
23532
|
+
type: "object",
|
|
23533
|
+
"x-variant-group-key": "locks"
|
|
23415
23534
|
},
|
|
23416
23535
|
{
|
|
23417
23536
|
description: "Indicates that the device is offline.",
|
|
@@ -23566,7 +23685,8 @@ var openapi_default = {
|
|
|
23566
23685
|
"created_at",
|
|
23567
23686
|
"error_code"
|
|
23568
23687
|
],
|
|
23569
|
-
type: "object"
|
|
23688
|
+
type: "object",
|
|
23689
|
+
"x-variant-group-key": "access_codes"
|
|
23570
23690
|
},
|
|
23571
23691
|
{
|
|
23572
23692
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -23597,7 +23717,8 @@ var openapi_default = {
|
|
|
23597
23717
|
"created_at",
|
|
23598
23718
|
"error_code"
|
|
23599
23719
|
],
|
|
23600
|
-
type: "object"
|
|
23720
|
+
type: "object",
|
|
23721
|
+
"x-variant-group-key": "locks"
|
|
23601
23722
|
},
|
|
23602
23723
|
{
|
|
23603
23724
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -23628,10 +23749,11 @@ var openapi_default = {
|
|
|
23628
23749
|
"created_at",
|
|
23629
23750
|
"error_code"
|
|
23630
23751
|
],
|
|
23631
|
-
type: "object"
|
|
23752
|
+
type: "object",
|
|
23753
|
+
"x-variant-group-key": "locks"
|
|
23632
23754
|
},
|
|
23633
23755
|
{
|
|
23634
|
-
description: "Indicates that the lock is not paired with a gateway
|
|
23756
|
+
description: "\n Indicates that the lock is not paired with a gateway.\n ",
|
|
23635
23757
|
properties: {
|
|
23636
23758
|
created_at: {
|
|
23637
23759
|
description: "Date and time at which Seam created the error.",
|
|
@@ -23693,7 +23815,7 @@ var openapi_default = {
|
|
|
23693
23815
|
type: "object"
|
|
23694
23816
|
},
|
|
23695
23817
|
{
|
|
23696
|
-
description: "Indicates that the auxiliary heat is running
|
|
23818
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
23697
23819
|
properties: {
|
|
23698
23820
|
created_at: {
|
|
23699
23821
|
description: "Date and time at which Seam created the error.",
|
|
@@ -23755,7 +23877,7 @@ var openapi_default = {
|
|
|
23755
23877
|
type: "object"
|
|
23756
23878
|
},
|
|
23757
23879
|
{
|
|
23758
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
23880
|
+
description: "\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ",
|
|
23759
23881
|
properties: {
|
|
23760
23882
|
created_at: {
|
|
23761
23883
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25422,7 +25544,8 @@ var openapi_default = {
|
|
|
25422
25544
|
"error_code",
|
|
25423
25545
|
"is_connected_account_error"
|
|
25424
25546
|
],
|
|
25425
|
-
type: "object"
|
|
25547
|
+
type: "object",
|
|
25548
|
+
"x-variant-group-key": "locks"
|
|
25426
25549
|
},
|
|
25427
25550
|
{
|
|
25428
25551
|
description: "Indicates that the device is offline.",
|
|
@@ -25577,7 +25700,8 @@ var openapi_default = {
|
|
|
25577
25700
|
"created_at",
|
|
25578
25701
|
"error_code"
|
|
25579
25702
|
],
|
|
25580
|
-
type: "object"
|
|
25703
|
+
type: "object",
|
|
25704
|
+
"x-variant-group-key": "access_codes"
|
|
25581
25705
|
},
|
|
25582
25706
|
{
|
|
25583
25707
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -25608,7 +25732,8 @@ var openapi_default = {
|
|
|
25608
25732
|
"created_at",
|
|
25609
25733
|
"error_code"
|
|
25610
25734
|
],
|
|
25611
|
-
type: "object"
|
|
25735
|
+
type: "object",
|
|
25736
|
+
"x-variant-group-key": "locks"
|
|
25612
25737
|
},
|
|
25613
25738
|
{
|
|
25614
25739
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -25639,10 +25764,11 @@ var openapi_default = {
|
|
|
25639
25764
|
"created_at",
|
|
25640
25765
|
"error_code"
|
|
25641
25766
|
],
|
|
25642
|
-
type: "object"
|
|
25767
|
+
type: "object",
|
|
25768
|
+
"x-variant-group-key": "locks"
|
|
25643
25769
|
},
|
|
25644
25770
|
{
|
|
25645
|
-
description: "Indicates that the lock is not paired with a gateway
|
|
25771
|
+
description: "\n Indicates that the lock is not paired with a gateway.\n ",
|
|
25646
25772
|
properties: {
|
|
25647
25773
|
created_at: {
|
|
25648
25774
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25704,7 +25830,7 @@ var openapi_default = {
|
|
|
25704
25830
|
type: "object"
|
|
25705
25831
|
},
|
|
25706
25832
|
{
|
|
25707
|
-
description: "Indicates that the auxiliary heat is running
|
|
25833
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
25708
25834
|
properties: {
|
|
25709
25835
|
created_at: {
|
|
25710
25836
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25766,7 +25892,7 @@ var openapi_default = {
|
|
|
25766
25892
|
type: "object"
|
|
25767
25893
|
},
|
|
25768
25894
|
{
|
|
25769
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge
|
|
25895
|
+
description: "\n Indicates that the Lockly lock is not connected to a Wi-Fi bridge.\n ",
|
|
25770
25896
|
properties: {
|
|
25771
25897
|
created_at: {
|
|
25772
25898
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25856,7 +25982,16 @@ var openapi_default = {
|
|
|
25856
25982
|
}
|
|
25857
25983
|
]
|
|
25858
25984
|
},
|
|
25859
|
-
type: "array"
|
|
25985
|
+
type: "array",
|
|
25986
|
+
"x-variant-groups": {
|
|
25987
|
+
access_codes: { name: "Access Codes" },
|
|
25988
|
+
hardware: { name: "Hardware" },
|
|
25989
|
+
locks: { name: "Locks" },
|
|
25990
|
+
noise_sensors: { name: "Noise Sensors" },
|
|
25991
|
+
phones: { name: "Phones" },
|
|
25992
|
+
provider_metadata: { name: "Provider Metadata" },
|
|
25993
|
+
thermostats: { name: "Thermostats" }
|
|
25994
|
+
}
|
|
25860
25995
|
},
|
|
25861
25996
|
is_managed: { enum: [false], type: "boolean" },
|
|
25862
25997
|
location: {
|
|
@@ -26042,7 +26177,8 @@ var openapi_default = {
|
|
|
26042
26177
|
}
|
|
26043
26178
|
},
|
|
26044
26179
|
required: ["message", "created_at", "warning_code"],
|
|
26045
|
-
type: "object"
|
|
26180
|
+
type: "object",
|
|
26181
|
+
"x-variant-group-key": "access_codes"
|
|
26046
26182
|
},
|
|
26047
26183
|
{
|
|
26048
26184
|
description: "Indicates that there are too many backup codes.",
|
|
@@ -26063,10 +26199,11 @@ var openapi_default = {
|
|
|
26063
26199
|
}
|
|
26064
26200
|
},
|
|
26065
26201
|
required: ["message", "created_at", "warning_code"],
|
|
26066
|
-
type: "object"
|
|
26202
|
+
type: "object",
|
|
26203
|
+
"x-variant-group-key": "access_codes"
|
|
26067
26204
|
},
|
|
26068
26205
|
{
|
|
26069
|
-
description: "Indicates that the Wyze Lock is not connected to a gateway
|
|
26206
|
+
description: "\n Indicates that the Wyze Lock is not connected to a gateway.\n ",
|
|
26070
26207
|
properties: {
|
|
26071
26208
|
created_at: {
|
|
26072
26209
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26147,10 +26284,11 @@ var openapi_default = {
|
|
|
26147
26284
|
}
|
|
26148
26285
|
},
|
|
26149
26286
|
required: ["message", "created_at", "warning_code"],
|
|
26150
|
-
type: "object"
|
|
26287
|
+
type: "object",
|
|
26288
|
+
"x-variant-group-key": "thermostats"
|
|
26151
26289
|
},
|
|
26152
26290
|
{
|
|
26153
|
-
description:
|
|
26291
|
+
description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
26154
26292
|
properties: {
|
|
26155
26293
|
created_at: {
|
|
26156
26294
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26168,10 +26306,11 @@ var openapi_default = {
|
|
|
26168
26306
|
}
|
|
26169
26307
|
},
|
|
26170
26308
|
required: ["message", "created_at", "warning_code"],
|
|
26171
|
-
type: "object"
|
|
26309
|
+
type: "object",
|
|
26310
|
+
"x-variant-group-key": "locks"
|
|
26172
26311
|
},
|
|
26173
26312
|
{
|
|
26174
|
-
description: "Indicates that the gateway signal is weak
|
|
26313
|
+
description: "\n Indicates that the gateway signal is weak.\n ",
|
|
26175
26314
|
properties: {
|
|
26176
26315
|
created_at: {
|
|
26177
26316
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26210,7 +26349,8 @@ var openapi_default = {
|
|
|
26210
26349
|
}
|
|
26211
26350
|
},
|
|
26212
26351
|
required: ["message", "created_at", "warning_code"],
|
|
26213
|
-
type: "object"
|
|
26352
|
+
type: "object",
|
|
26353
|
+
"x-variant-group-key": "thermostats"
|
|
26214
26354
|
},
|
|
26215
26355
|
{
|
|
26216
26356
|
description: "Indicates that the device appears to be unresponsive.",
|
|
@@ -26357,7 +26497,8 @@ var openapi_default = {
|
|
|
26357
26497
|
}
|
|
26358
26498
|
},
|
|
26359
26499
|
required: ["message", "created_at", "warning_code"],
|
|
26360
|
-
type: "object"
|
|
26500
|
+
type: "object",
|
|
26501
|
+
"x-variant-group-key": "phones"
|
|
26361
26502
|
},
|
|
26362
26503
|
{
|
|
26363
26504
|
description: "Indicates that Seam detected that the Lockly device does not have a time zone configured. Time-bound codes may not work as expected.",
|
|
@@ -26382,7 +26523,16 @@ var openapi_default = {
|
|
|
26382
26523
|
}
|
|
26383
26524
|
]
|
|
26384
26525
|
},
|
|
26385
|
-
type: "array"
|
|
26526
|
+
type: "array",
|
|
26527
|
+
"x-variant-groups": {
|
|
26528
|
+
access_codes: { name: "Access Codes" },
|
|
26529
|
+
hardware: { name: "Hardware" },
|
|
26530
|
+
locks: { name: "Locks" },
|
|
26531
|
+
noise_sensors: { name: "Noise Sensors" },
|
|
26532
|
+
phones: { name: "Phones" },
|
|
26533
|
+
provider_metadata: { name: "Provider Metadata" },
|
|
26534
|
+
thermostats: { name: "Thermostats" }
|
|
26535
|
+
}
|
|
26386
26536
|
},
|
|
26387
26537
|
workspace_id: {
|
|
26388
26538
|
description: "Unique identifier for the Seam workspace associated with the device.",
|