@seamapi/types 1.416.2 → 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 +244 -79
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +423 -4
- package/lib/seam/connect/models/acs/acs-entrance.d.ts +3 -0
- package/lib/seam/connect/models/acs/acs-entrance.js +4 -0
- package/lib/seam/connect/models/acs/acs-entrance.js.map +1 -1
- 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/models/phones/phone-session.d.ts +16 -0
- package/lib/seam/connect/openapi.d.ts +408 -4
- package/lib/seam/connect/openapi.js +94 -18
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +12 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/acs/acs-entrance.ts +6 -0
- package/src/lib/seam/connect/models/devices/device.ts +202 -150
- package/src/lib/seam/connect/openapi.ts +102 -18
- package/src/lib/seam/connect/route-types.ts +12 -0
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)."
|
|
@@ -2733,6 +2819,9 @@ var acs_entrance = zod.z.object({
|
|
|
2733
2819
|
display_name: zod.z.string().describe(
|
|
2734
2820
|
"Display name for the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2735
2821
|
),
|
|
2822
|
+
connected_account_id: zod.z.string().uuid().describe(
|
|
2823
|
+
"ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details)."
|
|
2824
|
+
),
|
|
2736
2825
|
errors: zod.z.array(
|
|
2737
2826
|
zod.z.object({
|
|
2738
2827
|
error_code: zod.z.string().describe(
|
|
@@ -6069,7 +6158,8 @@ var openapi_default = {
|
|
|
6069
6158
|
"error_code",
|
|
6070
6159
|
"is_connected_account_error"
|
|
6071
6160
|
],
|
|
6072
|
-
type: "object"
|
|
6161
|
+
type: "object",
|
|
6162
|
+
"x-variant-group-key": "locks"
|
|
6073
6163
|
},
|
|
6074
6164
|
{
|
|
6075
6165
|
description: "Indicates that the device is offline.",
|
|
@@ -6224,7 +6314,8 @@ var openapi_default = {
|
|
|
6224
6314
|
"created_at",
|
|
6225
6315
|
"error_code"
|
|
6226
6316
|
],
|
|
6227
|
-
type: "object"
|
|
6317
|
+
type: "object",
|
|
6318
|
+
"x-variant-group-key": "access_codes"
|
|
6228
6319
|
},
|
|
6229
6320
|
{
|
|
6230
6321
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -6255,7 +6346,8 @@ var openapi_default = {
|
|
|
6255
6346
|
"created_at",
|
|
6256
6347
|
"error_code"
|
|
6257
6348
|
],
|
|
6258
|
-
type: "object"
|
|
6349
|
+
type: "object",
|
|
6350
|
+
"x-variant-group-key": "locks"
|
|
6259
6351
|
},
|
|
6260
6352
|
{
|
|
6261
6353
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -6286,10 +6378,11 @@ var openapi_default = {
|
|
|
6286
6378
|
"created_at",
|
|
6287
6379
|
"error_code"
|
|
6288
6380
|
],
|
|
6289
|
-
type: "object"
|
|
6381
|
+
type: "object",
|
|
6382
|
+
"x-variant-group-key": "locks"
|
|
6290
6383
|
},
|
|
6291
6384
|
{
|
|
6292
|
-
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 ",
|
|
6293
6386
|
properties: {
|
|
6294
6387
|
created_at: {
|
|
6295
6388
|
description: "Date and time at which Seam created the error.",
|
|
@@ -6351,7 +6444,7 @@ var openapi_default = {
|
|
|
6351
6444
|
type: "object"
|
|
6352
6445
|
},
|
|
6353
6446
|
{
|
|
6354
|
-
description: "Indicates that the auxiliary heat is running
|
|
6447
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
6355
6448
|
properties: {
|
|
6356
6449
|
created_at: {
|
|
6357
6450
|
description: "Date and time at which Seam created the error.",
|
|
@@ -6413,7 +6506,7 @@ var openapi_default = {
|
|
|
6413
6506
|
type: "object"
|
|
6414
6507
|
},
|
|
6415
6508
|
{
|
|
6416
|
-
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 ",
|
|
6417
6510
|
properties: {
|
|
6418
6511
|
created_at: {
|
|
6419
6512
|
description: "Date and time at which Seam created the error.",
|
|
@@ -7611,6 +7704,11 @@ var openapi_default = {
|
|
|
7611
7704
|
required: ["door_type", "door_name"],
|
|
7612
7705
|
type: "object"
|
|
7613
7706
|
},
|
|
7707
|
+
connected_account_id: {
|
|
7708
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
7709
|
+
format: "uuid",
|
|
7710
|
+
type: "string"
|
|
7711
|
+
},
|
|
7614
7712
|
created_at: {
|
|
7615
7713
|
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
7616
7714
|
format: "date-time",
|
|
@@ -7790,6 +7888,7 @@ var openapi_default = {
|
|
|
7790
7888
|
"acs_entrance_id",
|
|
7791
7889
|
"created_at",
|
|
7792
7890
|
"display_name",
|
|
7891
|
+
"connected_account_id",
|
|
7793
7892
|
"errors"
|
|
7794
7893
|
],
|
|
7795
7894
|
type: "object",
|
|
@@ -13657,7 +13756,8 @@ var openapi_default = {
|
|
|
13657
13756
|
"error_code",
|
|
13658
13757
|
"is_connected_account_error"
|
|
13659
13758
|
],
|
|
13660
|
-
type: "object"
|
|
13759
|
+
type: "object",
|
|
13760
|
+
"x-variant-group-key": "locks"
|
|
13661
13761
|
},
|
|
13662
13762
|
{
|
|
13663
13763
|
description: "Indicates that the device is offline.",
|
|
@@ -13812,7 +13912,8 @@ var openapi_default = {
|
|
|
13812
13912
|
"created_at",
|
|
13813
13913
|
"error_code"
|
|
13814
13914
|
],
|
|
13815
|
-
type: "object"
|
|
13915
|
+
type: "object",
|
|
13916
|
+
"x-variant-group-key": "access_codes"
|
|
13816
13917
|
},
|
|
13817
13918
|
{
|
|
13818
13919
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -13843,7 +13944,8 @@ var openapi_default = {
|
|
|
13843
13944
|
"created_at",
|
|
13844
13945
|
"error_code"
|
|
13845
13946
|
],
|
|
13846
|
-
type: "object"
|
|
13947
|
+
type: "object",
|
|
13948
|
+
"x-variant-group-key": "locks"
|
|
13847
13949
|
},
|
|
13848
13950
|
{
|
|
13849
13951
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -13874,10 +13976,11 @@ var openapi_default = {
|
|
|
13874
13976
|
"created_at",
|
|
13875
13977
|
"error_code"
|
|
13876
13978
|
],
|
|
13877
|
-
type: "object"
|
|
13979
|
+
type: "object",
|
|
13980
|
+
"x-variant-group-key": "locks"
|
|
13878
13981
|
},
|
|
13879
13982
|
{
|
|
13880
|
-
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 ",
|
|
13881
13984
|
properties: {
|
|
13882
13985
|
created_at: {
|
|
13883
13986
|
description: "Date and time at which Seam created the error.",
|
|
@@ -13939,7 +14042,7 @@ var openapi_default = {
|
|
|
13939
14042
|
type: "object"
|
|
13940
14043
|
},
|
|
13941
14044
|
{
|
|
13942
|
-
description: "Indicates that the auxiliary heat is running
|
|
14045
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
13943
14046
|
properties: {
|
|
13944
14047
|
created_at: {
|
|
13945
14048
|
description: "Date and time at which Seam created the error.",
|
|
@@ -14001,7 +14104,7 @@ var openapi_default = {
|
|
|
14001
14104
|
type: "object"
|
|
14002
14105
|
},
|
|
14003
14106
|
{
|
|
14004
|
-
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 ",
|
|
14005
14108
|
properties: {
|
|
14006
14109
|
created_at: {
|
|
14007
14110
|
description: "Date and time at which Seam created the error.",
|
|
@@ -14091,7 +14194,16 @@ var openapi_default = {
|
|
|
14091
14194
|
}
|
|
14092
14195
|
]
|
|
14093
14196
|
},
|
|
14094
|
-
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
|
+
}
|
|
14095
14207
|
},
|
|
14096
14208
|
is_managed: {
|
|
14097
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).",
|
|
@@ -16151,7 +16263,8 @@ var openapi_default = {
|
|
|
16151
16263
|
}
|
|
16152
16264
|
},
|
|
16153
16265
|
required: ["message", "created_at", "warning_code"],
|
|
16154
|
-
type: "object"
|
|
16266
|
+
type: "object",
|
|
16267
|
+
"x-variant-group-key": "access_codes"
|
|
16155
16268
|
},
|
|
16156
16269
|
{
|
|
16157
16270
|
description: "Indicates that there are too many backup codes.",
|
|
@@ -16172,10 +16285,11 @@ var openapi_default = {
|
|
|
16172
16285
|
}
|
|
16173
16286
|
},
|
|
16174
16287
|
required: ["message", "created_at", "warning_code"],
|
|
16175
|
-
type: "object"
|
|
16288
|
+
type: "object",
|
|
16289
|
+
"x-variant-group-key": "access_codes"
|
|
16176
16290
|
},
|
|
16177
16291
|
{
|
|
16178
|
-
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 ",
|
|
16179
16293
|
properties: {
|
|
16180
16294
|
created_at: {
|
|
16181
16295
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16256,10 +16370,11 @@ var openapi_default = {
|
|
|
16256
16370
|
}
|
|
16257
16371
|
},
|
|
16258
16372
|
required: ["message", "created_at", "warning_code"],
|
|
16259
|
-
type: "object"
|
|
16373
|
+
type: "object",
|
|
16374
|
+
"x-variant-group-key": "thermostats"
|
|
16260
16375
|
},
|
|
16261
16376
|
{
|
|
16262
|
-
description:
|
|
16377
|
+
description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
16263
16378
|
properties: {
|
|
16264
16379
|
created_at: {
|
|
16265
16380
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16277,10 +16392,11 @@ var openapi_default = {
|
|
|
16277
16392
|
}
|
|
16278
16393
|
},
|
|
16279
16394
|
required: ["message", "created_at", "warning_code"],
|
|
16280
|
-
type: "object"
|
|
16395
|
+
type: "object",
|
|
16396
|
+
"x-variant-group-key": "locks"
|
|
16281
16397
|
},
|
|
16282
16398
|
{
|
|
16283
|
-
description: "Indicates that the gateway signal is weak
|
|
16399
|
+
description: "\n Indicates that the gateway signal is weak.\n ",
|
|
16284
16400
|
properties: {
|
|
16285
16401
|
created_at: {
|
|
16286
16402
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -16319,7 +16435,8 @@ var openapi_default = {
|
|
|
16319
16435
|
}
|
|
16320
16436
|
},
|
|
16321
16437
|
required: ["message", "created_at", "warning_code"],
|
|
16322
|
-
type: "object"
|
|
16438
|
+
type: "object",
|
|
16439
|
+
"x-variant-group-key": "thermostats"
|
|
16323
16440
|
},
|
|
16324
16441
|
{
|
|
16325
16442
|
description: "Indicates that the device appears to be unresponsive.",
|
|
@@ -16466,7 +16583,8 @@ var openapi_default = {
|
|
|
16466
16583
|
}
|
|
16467
16584
|
},
|
|
16468
16585
|
required: ["message", "created_at", "warning_code"],
|
|
16469
|
-
type: "object"
|
|
16586
|
+
type: "object",
|
|
16587
|
+
"x-variant-group-key": "phones"
|
|
16470
16588
|
},
|
|
16471
16589
|
{
|
|
16472
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.",
|
|
@@ -16491,7 +16609,16 @@ var openapi_default = {
|
|
|
16491
16609
|
}
|
|
16492
16610
|
]
|
|
16493
16611
|
},
|
|
16494
|
-
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
|
+
}
|
|
16495
16622
|
},
|
|
16496
16623
|
workspace_id: {
|
|
16497
16624
|
description: "Unique identifier for the Seam workspace associated with the device.",
|
|
@@ -21867,6 +21994,11 @@ var openapi_default = {
|
|
|
21867
21994
|
required: ["door_type", "door_name"],
|
|
21868
21995
|
type: "object"
|
|
21869
21996
|
},
|
|
21997
|
+
connected_account_id: {
|
|
21998
|
+
description: "ID of the [connected account](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) associated with the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details).",
|
|
21999
|
+
format: "uuid",
|
|
22000
|
+
type: "string"
|
|
22001
|
+
},
|
|
21870
22002
|
created_at: {
|
|
21871
22003
|
description: "Date and time at which the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details) was created.",
|
|
21872
22004
|
format: "date-time",
|
|
@@ -22046,6 +22178,7 @@ var openapi_default = {
|
|
|
22046
22178
|
"acs_entrance_id",
|
|
22047
22179
|
"created_at",
|
|
22048
22180
|
"display_name",
|
|
22181
|
+
"connected_account_id",
|
|
22049
22182
|
"errors"
|
|
22050
22183
|
],
|
|
22051
22184
|
type: "object",
|
|
@@ -23396,7 +23529,8 @@ var openapi_default = {
|
|
|
23396
23529
|
"error_code",
|
|
23397
23530
|
"is_connected_account_error"
|
|
23398
23531
|
],
|
|
23399
|
-
type: "object"
|
|
23532
|
+
type: "object",
|
|
23533
|
+
"x-variant-group-key": "locks"
|
|
23400
23534
|
},
|
|
23401
23535
|
{
|
|
23402
23536
|
description: "Indicates that the device is offline.",
|
|
@@ -23551,7 +23685,8 @@ var openapi_default = {
|
|
|
23551
23685
|
"created_at",
|
|
23552
23686
|
"error_code"
|
|
23553
23687
|
],
|
|
23554
|
-
type: "object"
|
|
23688
|
+
type: "object",
|
|
23689
|
+
"x-variant-group-key": "access_codes"
|
|
23555
23690
|
},
|
|
23556
23691
|
{
|
|
23557
23692
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -23582,7 +23717,8 @@ var openapi_default = {
|
|
|
23582
23717
|
"created_at",
|
|
23583
23718
|
"error_code"
|
|
23584
23719
|
],
|
|
23585
|
-
type: "object"
|
|
23720
|
+
type: "object",
|
|
23721
|
+
"x-variant-group-key": "locks"
|
|
23586
23722
|
},
|
|
23587
23723
|
{
|
|
23588
23724
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -23613,10 +23749,11 @@ var openapi_default = {
|
|
|
23613
23749
|
"created_at",
|
|
23614
23750
|
"error_code"
|
|
23615
23751
|
],
|
|
23616
|
-
type: "object"
|
|
23752
|
+
type: "object",
|
|
23753
|
+
"x-variant-group-key": "locks"
|
|
23617
23754
|
},
|
|
23618
23755
|
{
|
|
23619
|
-
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 ",
|
|
23620
23757
|
properties: {
|
|
23621
23758
|
created_at: {
|
|
23622
23759
|
description: "Date and time at which Seam created the error.",
|
|
@@ -23678,7 +23815,7 @@ var openapi_default = {
|
|
|
23678
23815
|
type: "object"
|
|
23679
23816
|
},
|
|
23680
23817
|
{
|
|
23681
|
-
description: "Indicates that the auxiliary heat is running
|
|
23818
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
23682
23819
|
properties: {
|
|
23683
23820
|
created_at: {
|
|
23684
23821
|
description: "Date and time at which Seam created the error.",
|
|
@@ -23740,7 +23877,7 @@ var openapi_default = {
|
|
|
23740
23877
|
type: "object"
|
|
23741
23878
|
},
|
|
23742
23879
|
{
|
|
23743
|
-
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 ",
|
|
23744
23881
|
properties: {
|
|
23745
23882
|
created_at: {
|
|
23746
23883
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25407,7 +25544,8 @@ var openapi_default = {
|
|
|
25407
25544
|
"error_code",
|
|
25408
25545
|
"is_connected_account_error"
|
|
25409
25546
|
],
|
|
25410
|
-
type: "object"
|
|
25547
|
+
type: "object",
|
|
25548
|
+
"x-variant-group-key": "locks"
|
|
25411
25549
|
},
|
|
25412
25550
|
{
|
|
25413
25551
|
description: "Indicates that the device is offline.",
|
|
@@ -25562,7 +25700,8 @@ var openapi_default = {
|
|
|
25562
25700
|
"created_at",
|
|
25563
25701
|
"error_code"
|
|
25564
25702
|
],
|
|
25565
|
-
type: "object"
|
|
25703
|
+
type: "object",
|
|
25704
|
+
"x-variant-group-key": "access_codes"
|
|
25566
25705
|
},
|
|
25567
25706
|
{
|
|
25568
25707
|
description: "Indicates that the user is not authorized to use the August lock.",
|
|
@@ -25593,7 +25732,8 @@ var openapi_default = {
|
|
|
25593
25732
|
"created_at",
|
|
25594
25733
|
"error_code"
|
|
25595
25734
|
],
|
|
25596
|
-
type: "object"
|
|
25735
|
+
type: "object",
|
|
25736
|
+
"x-variant-group-key": "locks"
|
|
25597
25737
|
},
|
|
25598
25738
|
{
|
|
25599
25739
|
description: "Indicates that the lock is not connected to a bridge.",
|
|
@@ -25624,10 +25764,11 @@ var openapi_default = {
|
|
|
25624
25764
|
"created_at",
|
|
25625
25765
|
"error_code"
|
|
25626
25766
|
],
|
|
25627
|
-
type: "object"
|
|
25767
|
+
type: "object",
|
|
25768
|
+
"x-variant-group-key": "locks"
|
|
25628
25769
|
},
|
|
25629
25770
|
{
|
|
25630
|
-
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 ",
|
|
25631
25772
|
properties: {
|
|
25632
25773
|
created_at: {
|
|
25633
25774
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25689,7 +25830,7 @@ var openapi_default = {
|
|
|
25689
25830
|
type: "object"
|
|
25690
25831
|
},
|
|
25691
25832
|
{
|
|
25692
|
-
description: "Indicates that the auxiliary heat is running
|
|
25833
|
+
description: "\n Indicates that the auxiliary heat is running.\n ",
|
|
25693
25834
|
properties: {
|
|
25694
25835
|
created_at: {
|
|
25695
25836
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25751,7 +25892,7 @@ var openapi_default = {
|
|
|
25751
25892
|
type: "object"
|
|
25752
25893
|
},
|
|
25753
25894
|
{
|
|
25754
|
-
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 ",
|
|
25755
25896
|
properties: {
|
|
25756
25897
|
created_at: {
|
|
25757
25898
|
description: "Date and time at which Seam created the error.",
|
|
@@ -25841,7 +25982,16 @@ var openapi_default = {
|
|
|
25841
25982
|
}
|
|
25842
25983
|
]
|
|
25843
25984
|
},
|
|
25844
|
-
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
|
+
}
|
|
25845
25995
|
},
|
|
25846
25996
|
is_managed: { enum: [false], type: "boolean" },
|
|
25847
25997
|
location: {
|
|
@@ -26027,7 +26177,8 @@ var openapi_default = {
|
|
|
26027
26177
|
}
|
|
26028
26178
|
},
|
|
26029
26179
|
required: ["message", "created_at", "warning_code"],
|
|
26030
|
-
type: "object"
|
|
26180
|
+
type: "object",
|
|
26181
|
+
"x-variant-group-key": "access_codes"
|
|
26031
26182
|
},
|
|
26032
26183
|
{
|
|
26033
26184
|
description: "Indicates that there are too many backup codes.",
|
|
@@ -26048,10 +26199,11 @@ var openapi_default = {
|
|
|
26048
26199
|
}
|
|
26049
26200
|
},
|
|
26050
26201
|
required: ["message", "created_at", "warning_code"],
|
|
26051
|
-
type: "object"
|
|
26202
|
+
type: "object",
|
|
26203
|
+
"x-variant-group-key": "access_codes"
|
|
26052
26204
|
},
|
|
26053
26205
|
{
|
|
26054
|
-
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 ",
|
|
26055
26207
|
properties: {
|
|
26056
26208
|
created_at: {
|
|
26057
26209
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26132,10 +26284,11 @@ var openapi_default = {
|
|
|
26132
26284
|
}
|
|
26133
26285
|
},
|
|
26134
26286
|
required: ["message", "created_at", "warning_code"],
|
|
26135
|
-
type: "object"
|
|
26287
|
+
type: "object",
|
|
26288
|
+
"x-variant-group-key": "thermostats"
|
|
26136
26289
|
},
|
|
26137
26290
|
{
|
|
26138
|
-
description:
|
|
26291
|
+
description: 'Indicates that the Remote Unlock feature is not enabled in the settings."',
|
|
26139
26292
|
properties: {
|
|
26140
26293
|
created_at: {
|
|
26141
26294
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26153,10 +26306,11 @@ var openapi_default = {
|
|
|
26153
26306
|
}
|
|
26154
26307
|
},
|
|
26155
26308
|
required: ["message", "created_at", "warning_code"],
|
|
26156
|
-
type: "object"
|
|
26309
|
+
type: "object",
|
|
26310
|
+
"x-variant-group-key": "locks"
|
|
26157
26311
|
},
|
|
26158
26312
|
{
|
|
26159
|
-
description: "Indicates that the gateway signal is weak
|
|
26313
|
+
description: "\n Indicates that the gateway signal is weak.\n ",
|
|
26160
26314
|
properties: {
|
|
26161
26315
|
created_at: {
|
|
26162
26316
|
description: "Date and time at which Seam created the warning.",
|
|
@@ -26195,7 +26349,8 @@ var openapi_default = {
|
|
|
26195
26349
|
}
|
|
26196
26350
|
},
|
|
26197
26351
|
required: ["message", "created_at", "warning_code"],
|
|
26198
|
-
type: "object"
|
|
26352
|
+
type: "object",
|
|
26353
|
+
"x-variant-group-key": "thermostats"
|
|
26199
26354
|
},
|
|
26200
26355
|
{
|
|
26201
26356
|
description: "Indicates that the device appears to be unresponsive.",
|
|
@@ -26342,7 +26497,8 @@ var openapi_default = {
|
|
|
26342
26497
|
}
|
|
26343
26498
|
},
|
|
26344
26499
|
required: ["message", "created_at", "warning_code"],
|
|
26345
|
-
type: "object"
|
|
26500
|
+
type: "object",
|
|
26501
|
+
"x-variant-group-key": "phones"
|
|
26346
26502
|
},
|
|
26347
26503
|
{
|
|
26348
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.",
|
|
@@ -26367,7 +26523,16 @@ var openapi_default = {
|
|
|
26367
26523
|
}
|
|
26368
26524
|
]
|
|
26369
26525
|
},
|
|
26370
|
-
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
|
+
}
|
|
26371
26536
|
},
|
|
26372
26537
|
workspace_id: {
|
|
26373
26538
|
description: "Unique identifier for the Seam workspace associated with the device.",
|