@seamapi/types 1.959.0 → 1.961.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 +51 -519
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +132 -1392
- package/dist/index.cjs +51 -519
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/access-codes/managed-access-code.d.ts +58 -78
- package/lib/seam/connect/models/access-codes/managed-access-code.js +11 -0
- package/lib/seam/connect/models/access-codes/managed-access-code.js.map +1 -1
- package/lib/seam/connect/models/access-codes/unmanaged-access-code.d.ts +21 -78
- package/lib/seam/connect/models/devices/device.d.ts +0 -319
- package/lib/seam/connect/models/devices/device.js +0 -59
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -99
- package/lib/seam/connect/openapi.js +42 -468
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +77 -977
- package/package.json +1 -1
- package/src/lib/seam/connect/models/access-codes/managed-access-code.ts +12 -0
- package/src/lib/seam/connect/models/devices/device.ts +0 -63
- package/src/lib/seam/connect/openapi.ts +55 -543
- package/src/lib/seam/connect/route-types.ts +88 -1090
package/dist/index.cjs
CHANGED
|
@@ -1499,16 +1499,6 @@ var august_lock_not_authorized = common_device_error.extend({
|
|
|
1499
1499
|
---
|
|
1500
1500
|
Indicates that the user is not authorized to use the August lock.
|
|
1501
1501
|
`);
|
|
1502
|
-
var august_lock_missing_bridge = common_device_error.extend({
|
|
1503
|
-
error_code: zod.z.literal("august_lock_missing_bridge").describe(error_code_description2)
|
|
1504
|
-
}).describe(`
|
|
1505
|
-
---
|
|
1506
|
-
resource_type: device
|
|
1507
|
-
deprecated: Use \`hub_disconnected\` instead.
|
|
1508
|
-
variant_group_key: locks
|
|
1509
|
-
---
|
|
1510
|
-
Indicates that the lock is not connected to a bridge.
|
|
1511
|
-
`);
|
|
1512
1502
|
var salto_ks_subscription_limit_exceeded2 = common_device_error.extend({
|
|
1513
1503
|
error_code: zod.z.literal("salto_ks_subscription_limit_exceeded").describe(error_code_description2),
|
|
1514
1504
|
is_connected_account_error: zod.z.literal(true).describe(
|
|
@@ -1535,16 +1525,6 @@ var dormakaba_sites_disconnected2 = common_device_error.extend({
|
|
|
1535
1525
|
---
|
|
1536
1526
|
Indicates that one or more dormakaba sites associated with the connected account could not be connected. Contact dormakaba support.
|
|
1537
1527
|
`);
|
|
1538
|
-
var ttlock_lock_not_paired_to_gateway = common_device_error.extend({
|
|
1539
|
-
error_code: zod.z.literal("ttlock_lock_not_paired_to_gateway").describe(error_code_description2)
|
|
1540
|
-
}).describe(`
|
|
1541
|
-
---
|
|
1542
|
-
resource_type: device
|
|
1543
|
-
deprecated: Use \`hub_disconnected\` instead.
|
|
1544
|
-
variant_group_key: locks
|
|
1545
|
-
---
|
|
1546
|
-
Indicates that the lock is not paired with a gateway.
|
|
1547
|
-
`);
|
|
1548
1528
|
var missing_device_credentials = common_device_error.extend({
|
|
1549
1529
|
error_code: zod.z.literal("missing_device_credentials").describe(error_code_description2)
|
|
1550
1530
|
}).describe(`
|
|
@@ -1570,16 +1550,6 @@ var subscription_required = common_device_error.extend({
|
|
|
1570
1550
|
---
|
|
1571
1551
|
Indicates that a subscription is required to connect.
|
|
1572
1552
|
`);
|
|
1573
|
-
var lockly_missing_wifi_bridge = common_device_error.extend({
|
|
1574
|
-
error_code: zod.z.literal("lockly_missing_wifi_bridge").describe(error_code_description2)
|
|
1575
|
-
}).describe(`
|
|
1576
|
-
---
|
|
1577
|
-
resource_type: device
|
|
1578
|
-
deprecated: Use \`hub_disconnected\` instead.
|
|
1579
|
-
variant_group_key: locks
|
|
1580
|
-
---
|
|
1581
|
-
Indicates that the Lockly lock is not connected to a Wi-Fi bridge.
|
|
1582
|
-
`);
|
|
1583
1553
|
var device_error = zod.z.discriminatedUnion("error_code", [
|
|
1584
1554
|
account_disconnected2,
|
|
1585
1555
|
salto_ks_subscription_limit_exceeded2,
|
|
@@ -1590,12 +1560,9 @@ var device_error = zod.z.discriminatedUnion("error_code", [
|
|
|
1590
1560
|
device_disconnected,
|
|
1591
1561
|
empty_backup_access_code_pool,
|
|
1592
1562
|
august_lock_not_authorized,
|
|
1593
|
-
august_lock_missing_bridge,
|
|
1594
|
-
ttlock_lock_not_paired_to_gateway,
|
|
1595
1563
|
missing_device_credentials,
|
|
1596
1564
|
auxiliary_heat_running,
|
|
1597
|
-
subscription_required
|
|
1598
|
-
lockly_missing_wifi_bridge
|
|
1565
|
+
subscription_required
|
|
1599
1566
|
]).describe("Error associated with the device.");
|
|
1600
1567
|
zod.z.object({
|
|
1601
1568
|
device_offline: device_offline.optional().nullable(),
|
|
@@ -1605,14 +1572,11 @@ zod.z.object({
|
|
|
1605
1572
|
account_disconnected: account_disconnected2.optional().nullable(),
|
|
1606
1573
|
empty_backup_access_code_pool: empty_backup_access_code_pool.optional().nullable(),
|
|
1607
1574
|
august_lock_not_authorized: august_lock_not_authorized.optional().nullable(),
|
|
1608
|
-
august_lock_missing_bridge: august_lock_missing_bridge.optional().nullable(),
|
|
1609
1575
|
salto_ks_subscription_limit_exceeded: salto_ks_subscription_limit_exceeded2.optional().nullable(),
|
|
1610
1576
|
dormakaba_sites_disconnected: dormakaba_sites_disconnected2.optional().nullable(),
|
|
1611
|
-
ttlock_lock_not_paired_to_gateway: ttlock_lock_not_paired_to_gateway.optional().nullable(),
|
|
1612
1577
|
missing_device_credentials: missing_device_credentials.optional().nullable(),
|
|
1613
1578
|
auxiliary_heat_running: auxiliary_heat_running.optional().nullable(),
|
|
1614
|
-
subscription_required: subscription_required.optional().nullable()
|
|
1615
|
-
lockly_missing_wifi_bridge: lockly_missing_wifi_bridge.optional().nullable()
|
|
1579
|
+
subscription_required: subscription_required.optional().nullable()
|
|
1616
1580
|
});
|
|
1617
1581
|
var warning_code_description2 = "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.";
|
|
1618
1582
|
var common_device_warning = zod.z.object({
|
|
@@ -1680,15 +1644,6 @@ var salto_ks_lock_access_code_support_removed = common_device_warning.extend({
|
|
|
1680
1644
|
---
|
|
1681
1645
|
Indicates that a change in the reported device model has been detected for this Salto KS lock, which may occur after an IQ hub reset. Access code support may be affected. See https://help.getseam.com/articles/5098842588-salto-ks-lock-loses-access-code-support for troubleshooting steps.
|
|
1682
1646
|
`);
|
|
1683
|
-
var wyze_device_missing_gateway = common_device_warning.extend({
|
|
1684
|
-
warning_code: zod.z.literal("wyze_device_missing_gateway").describe(warning_code_description2)
|
|
1685
|
-
}).describe(`
|
|
1686
|
-
---
|
|
1687
|
-
deprecated: Use \`hub_disconnected\` device error instead.
|
|
1688
|
-
variant_group_key: locks
|
|
1689
|
-
---
|
|
1690
|
-
Indicates that the Wyze Lock is not connected to a gateway.
|
|
1691
|
-
`);
|
|
1692
1647
|
var third_party_integration_detected = common_device_warning.extend({
|
|
1693
1648
|
warning_code: zod.z.literal("third_party_integration_detected").describe(warning_code_description2)
|
|
1694
1649
|
}).describe("Indicates that a third-party integration has been detected.");
|
|
@@ -1844,7 +1799,6 @@ var insufficient_permissions = common_device_warning.extend({
|
|
|
1844
1799
|
var device_warning = zod.z.discriminatedUnion("warning_code", [
|
|
1845
1800
|
partial_backup_access_code_pool,
|
|
1846
1801
|
many_active_backup_codes,
|
|
1847
|
-
wyze_device_missing_gateway,
|
|
1848
1802
|
third_party_integration_detected,
|
|
1849
1803
|
ttlock_lock_gateway_unlocking_not_enabled,
|
|
1850
1804
|
ttlock_weak_gateway_signal,
|
|
@@ -1879,7 +1833,6 @@ zod.z.object({
|
|
|
1879
1833
|
_event_id: zod.z.string().uuid().optional(),
|
|
1880
1834
|
_reason: zod.z.string().optional()
|
|
1881
1835
|
}).optional().nullable(),
|
|
1882
|
-
wyze_device_missing_gateway: wyze_device_missing_gateway.optional().nullable(),
|
|
1883
1836
|
third_party_integration_detected: third_party_integration_detected.optional().nullable(),
|
|
1884
1837
|
ttlock_lock_gateway_unlocking_not_enabled: ttlock_lock_gateway_unlocking_not_enabled.optional().nullable(),
|
|
1885
1838
|
ttlock_weak_gateway_signal: ttlock_weak_gateway_signal.optional().nullable(),
|
|
@@ -2728,6 +2681,9 @@ var using_backup_access_code = common_access_code_warning.extend({
|
|
|
2728
2681
|
var being_deleted2 = common_access_code_warning.extend({
|
|
2729
2682
|
warning_code: zod.z.literal("being_deleted").describe(warning_code_description3)
|
|
2730
2683
|
}).describe("Access code is being deleted.");
|
|
2684
|
+
var unknown_issue_with_access_code = common_access_code_warning.extend({
|
|
2685
|
+
warning_code: zod.z.literal("unknown_issue_with_access_code").describe(warning_code_description3)
|
|
2686
|
+
}).describe("An unknown issue occurred with the access code.");
|
|
2731
2687
|
var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
2732
2688
|
code_rotates_periodically,
|
|
2733
2689
|
time_frame_adjusted_for_unknown_time_zone,
|
|
@@ -2738,7 +2694,8 @@ var access_code_warning = zod.z.discriminatedUnion("warning_code", [
|
|
|
2738
2694
|
igloo_algopin_must_be_used_within_24_hours,
|
|
2739
2695
|
management_transferred,
|
|
2740
2696
|
using_backup_access_code,
|
|
2741
|
-
being_deleted2
|
|
2697
|
+
being_deleted2,
|
|
2698
|
+
unknown_issue_with_access_code
|
|
2742
2699
|
]).describe(
|
|
2743
2700
|
"Warnings associated with the [access code](https://docs.seam.co/low-level-apis/smart-locks/access-codes)."
|
|
2744
2701
|
);
|
|
@@ -2752,7 +2709,8 @@ zod.z.object({
|
|
|
2752
2709
|
igloo_algopin_must_be_used_within_24_hours: igloo_algopin_must_be_used_within_24_hours.optional().nullable(),
|
|
2753
2710
|
management_transferred: management_transferred.optional().nullable(),
|
|
2754
2711
|
using_backup_access_code: using_backup_access_code.optional().nullable(),
|
|
2755
|
-
being_deleted: being_deleted2.optional().nullable()
|
|
2712
|
+
being_deleted: being_deleted2.optional().nullable(),
|
|
2713
|
+
unknown_issue_with_access_code: unknown_issue_with_access_code.optional().nullable()
|
|
2756
2714
|
});
|
|
2757
2715
|
var dormakaba_oracode_access_code_metadata = zod.z.object({
|
|
2758
2716
|
stay_id: zod.z.number().optional().describe("Dormakaba Oracode stay ID associated with this access code."),
|
|
@@ -8238,76 +8196,6 @@ var openapi = {
|
|
|
8238
8196
|
"x-resource-type": "device",
|
|
8239
8197
|
"x-variant-group-key": "locks"
|
|
8240
8198
|
},
|
|
8241
|
-
{
|
|
8242
|
-
deprecated: true,
|
|
8243
|
-
description: "Indicates that the lock is not connected to a bridge.",
|
|
8244
|
-
properties: {
|
|
8245
|
-
created_at: {
|
|
8246
|
-
description: "Date and time at which Seam created the error.",
|
|
8247
|
-
format: "date-time",
|
|
8248
|
-
type: "string"
|
|
8249
|
-
},
|
|
8250
|
-
error_code: {
|
|
8251
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
8252
|
-
enum: ["august_lock_missing_bridge"],
|
|
8253
|
-
type: "string"
|
|
8254
|
-
},
|
|
8255
|
-
is_device_error: {
|
|
8256
|
-
description: "Indicates that the error is a device error.",
|
|
8257
|
-
enum: [true],
|
|
8258
|
-
type: "boolean"
|
|
8259
|
-
},
|
|
8260
|
-
message: {
|
|
8261
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
8262
|
-
type: "string"
|
|
8263
|
-
}
|
|
8264
|
-
},
|
|
8265
|
-
required: [
|
|
8266
|
-
"message",
|
|
8267
|
-
"is_device_error",
|
|
8268
|
-
"created_at",
|
|
8269
|
-
"error_code"
|
|
8270
|
-
],
|
|
8271
|
-
type: "object",
|
|
8272
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
8273
|
-
"x-resource-type": "device",
|
|
8274
|
-
"x-variant-group-key": "locks"
|
|
8275
|
-
},
|
|
8276
|
-
{
|
|
8277
|
-
deprecated: true,
|
|
8278
|
-
description: "Indicates that the lock is not paired with a gateway.",
|
|
8279
|
-
properties: {
|
|
8280
|
-
created_at: {
|
|
8281
|
-
description: "Date and time at which Seam created the error.",
|
|
8282
|
-
format: "date-time",
|
|
8283
|
-
type: "string"
|
|
8284
|
-
},
|
|
8285
|
-
error_code: {
|
|
8286
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
8287
|
-
enum: ["ttlock_lock_not_paired_to_gateway"],
|
|
8288
|
-
type: "string"
|
|
8289
|
-
},
|
|
8290
|
-
is_device_error: {
|
|
8291
|
-
description: "Indicates that the error is a device error.",
|
|
8292
|
-
enum: [true],
|
|
8293
|
-
type: "boolean"
|
|
8294
|
-
},
|
|
8295
|
-
message: {
|
|
8296
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
8297
|
-
type: "string"
|
|
8298
|
-
}
|
|
8299
|
-
},
|
|
8300
|
-
required: [
|
|
8301
|
-
"message",
|
|
8302
|
-
"is_device_error",
|
|
8303
|
-
"created_at",
|
|
8304
|
-
"error_code"
|
|
8305
|
-
],
|
|
8306
|
-
type: "object",
|
|
8307
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
8308
|
-
"x-resource-type": "device",
|
|
8309
|
-
"x-variant-group-key": "locks"
|
|
8310
|
-
},
|
|
8311
8199
|
{
|
|
8312
8200
|
description: "Indicates that device credentials are missing.",
|
|
8313
8201
|
properties: {
|
|
@@ -8405,41 +8293,6 @@ var openapi = {
|
|
|
8405
8293
|
type: "object",
|
|
8406
8294
|
"x-resource-type": "device"
|
|
8407
8295
|
},
|
|
8408
|
-
{
|
|
8409
|
-
deprecated: true,
|
|
8410
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
8411
|
-
properties: {
|
|
8412
|
-
created_at: {
|
|
8413
|
-
description: "Date and time at which Seam created the error.",
|
|
8414
|
-
format: "date-time",
|
|
8415
|
-
type: "string"
|
|
8416
|
-
},
|
|
8417
|
-
error_code: {
|
|
8418
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
8419
|
-
enum: ["lockly_missing_wifi_bridge"],
|
|
8420
|
-
type: "string"
|
|
8421
|
-
},
|
|
8422
|
-
is_device_error: {
|
|
8423
|
-
description: "Indicates that the error is a device error.",
|
|
8424
|
-
enum: [true],
|
|
8425
|
-
type: "boolean"
|
|
8426
|
-
},
|
|
8427
|
-
message: {
|
|
8428
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
8429
|
-
type: "string"
|
|
8430
|
-
}
|
|
8431
|
-
},
|
|
8432
|
-
required: [
|
|
8433
|
-
"message",
|
|
8434
|
-
"is_device_error",
|
|
8435
|
-
"created_at",
|
|
8436
|
-
"error_code"
|
|
8437
|
-
],
|
|
8438
|
-
type: "object",
|
|
8439
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
8440
|
-
"x-resource-type": "device",
|
|
8441
|
-
"x-variant-group-key": "locks"
|
|
8442
|
-
},
|
|
8443
8296
|
{
|
|
8444
8297
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/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/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
8445
8298
|
properties: {
|
|
@@ -9036,6 +8889,27 @@ var openapi = {
|
|
|
9036
8889
|
},
|
|
9037
8890
|
required: ["message", "warning_code"],
|
|
9038
8891
|
type: "object"
|
|
8892
|
+
},
|
|
8893
|
+
{
|
|
8894
|
+
description: "An unknown issue occurred with the access code.",
|
|
8895
|
+
properties: {
|
|
8896
|
+
created_at: {
|
|
8897
|
+
description: "Date and time at which Seam created the warning.",
|
|
8898
|
+
format: "date-time",
|
|
8899
|
+
type: "string"
|
|
8900
|
+
},
|
|
8901
|
+
message: {
|
|
8902
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
8903
|
+
type: "string"
|
|
8904
|
+
},
|
|
8905
|
+
warning_code: {
|
|
8906
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
8907
|
+
enum: ["unknown_issue_with_access_code"],
|
|
8908
|
+
type: "string"
|
|
8909
|
+
}
|
|
8910
|
+
},
|
|
8911
|
+
required: ["message", "warning_code"],
|
|
8912
|
+
type: "object"
|
|
9039
8913
|
}
|
|
9040
8914
|
]
|
|
9041
8915
|
},
|
|
@@ -19355,76 +19229,6 @@ var openapi = {
|
|
|
19355
19229
|
"x-resource-type": "device",
|
|
19356
19230
|
"x-variant-group-key": "locks"
|
|
19357
19231
|
},
|
|
19358
|
-
{
|
|
19359
|
-
deprecated: true,
|
|
19360
|
-
description: "Indicates that the lock is not connected to a bridge.",
|
|
19361
|
-
properties: {
|
|
19362
|
-
created_at: {
|
|
19363
|
-
description: "Date and time at which Seam created the error.",
|
|
19364
|
-
format: "date-time",
|
|
19365
|
-
type: "string"
|
|
19366
|
-
},
|
|
19367
|
-
error_code: {
|
|
19368
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
19369
|
-
enum: ["august_lock_missing_bridge"],
|
|
19370
|
-
type: "string"
|
|
19371
|
-
},
|
|
19372
|
-
is_device_error: {
|
|
19373
|
-
description: "Indicates that the error is a device error.",
|
|
19374
|
-
enum: [true],
|
|
19375
|
-
type: "boolean"
|
|
19376
|
-
},
|
|
19377
|
-
message: {
|
|
19378
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
19379
|
-
type: "string"
|
|
19380
|
-
}
|
|
19381
|
-
},
|
|
19382
|
-
required: [
|
|
19383
|
-
"message",
|
|
19384
|
-
"is_device_error",
|
|
19385
|
-
"created_at",
|
|
19386
|
-
"error_code"
|
|
19387
|
-
],
|
|
19388
|
-
type: "object",
|
|
19389
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
19390
|
-
"x-resource-type": "device",
|
|
19391
|
-
"x-variant-group-key": "locks"
|
|
19392
|
-
},
|
|
19393
|
-
{
|
|
19394
|
-
deprecated: true,
|
|
19395
|
-
description: "Indicates that the lock is not paired with a gateway.",
|
|
19396
|
-
properties: {
|
|
19397
|
-
created_at: {
|
|
19398
|
-
description: "Date and time at which Seam created the error.",
|
|
19399
|
-
format: "date-time",
|
|
19400
|
-
type: "string"
|
|
19401
|
-
},
|
|
19402
|
-
error_code: {
|
|
19403
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
19404
|
-
enum: ["ttlock_lock_not_paired_to_gateway"],
|
|
19405
|
-
type: "string"
|
|
19406
|
-
},
|
|
19407
|
-
is_device_error: {
|
|
19408
|
-
description: "Indicates that the error is a device error.",
|
|
19409
|
-
enum: [true],
|
|
19410
|
-
type: "boolean"
|
|
19411
|
-
},
|
|
19412
|
-
message: {
|
|
19413
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
19414
|
-
type: "string"
|
|
19415
|
-
}
|
|
19416
|
-
},
|
|
19417
|
-
required: [
|
|
19418
|
-
"message",
|
|
19419
|
-
"is_device_error",
|
|
19420
|
-
"created_at",
|
|
19421
|
-
"error_code"
|
|
19422
|
-
],
|
|
19423
|
-
type: "object",
|
|
19424
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
19425
|
-
"x-resource-type": "device",
|
|
19426
|
-
"x-variant-group-key": "locks"
|
|
19427
|
-
},
|
|
19428
19232
|
{
|
|
19429
19233
|
description: "Indicates that device credentials are missing.",
|
|
19430
19234
|
properties: {
|
|
@@ -19522,41 +19326,6 @@ var openapi = {
|
|
|
19522
19326
|
type: "object",
|
|
19523
19327
|
"x-resource-type": "device"
|
|
19524
19328
|
},
|
|
19525
|
-
{
|
|
19526
|
-
deprecated: true,
|
|
19527
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
19528
|
-
properties: {
|
|
19529
|
-
created_at: {
|
|
19530
|
-
description: "Date and time at which Seam created the error.",
|
|
19531
|
-
format: "date-time",
|
|
19532
|
-
type: "string"
|
|
19533
|
-
},
|
|
19534
|
-
error_code: {
|
|
19535
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
19536
|
-
enum: ["lockly_missing_wifi_bridge"],
|
|
19537
|
-
type: "string"
|
|
19538
|
-
},
|
|
19539
|
-
is_device_error: {
|
|
19540
|
-
description: "Indicates that the error is a device error.",
|
|
19541
|
-
enum: [true],
|
|
19542
|
-
type: "boolean"
|
|
19543
|
-
},
|
|
19544
|
-
message: {
|
|
19545
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
19546
|
-
type: "string"
|
|
19547
|
-
}
|
|
19548
|
-
},
|
|
19549
|
-
required: [
|
|
19550
|
-
"message",
|
|
19551
|
-
"is_device_error",
|
|
19552
|
-
"created_at",
|
|
19553
|
-
"error_code"
|
|
19554
|
-
],
|
|
19555
|
-
type: "object",
|
|
19556
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
19557
|
-
"x-resource-type": "device",
|
|
19558
|
-
"x-variant-group-key": "locks"
|
|
19559
|
-
},
|
|
19560
19329
|
{
|
|
19561
19330
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/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/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
19562
19331
|
properties: {
|
|
@@ -22114,30 +21883,6 @@ var openapi = {
|
|
|
22114
21883
|
type: "object",
|
|
22115
21884
|
"x-variant-group-key": "access_codes"
|
|
22116
21885
|
},
|
|
22117
|
-
{
|
|
22118
|
-
deprecated: true,
|
|
22119
|
-
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
22120
|
-
properties: {
|
|
22121
|
-
created_at: {
|
|
22122
|
-
description: "Date and time at which Seam created the warning.",
|
|
22123
|
-
format: "date-time",
|
|
22124
|
-
type: "string"
|
|
22125
|
-
},
|
|
22126
|
-
message: {
|
|
22127
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
22128
|
-
type: "string"
|
|
22129
|
-
},
|
|
22130
|
-
warning_code: {
|
|
22131
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
22132
|
-
enum: ["wyze_device_missing_gateway"],
|
|
22133
|
-
type: "string"
|
|
22134
|
-
}
|
|
22135
|
-
},
|
|
22136
|
-
required: ["message", "created_at", "warning_code"],
|
|
22137
|
-
type: "object",
|
|
22138
|
-
"x-deprecated": "Use `hub_disconnected` device error instead.",
|
|
22139
|
-
"x-variant-group-key": "locks"
|
|
22140
|
-
},
|
|
22141
21886
|
{
|
|
22142
21887
|
description: "Indicates that a third-party integration has been detected.",
|
|
22143
21888
|
properties: {
|
|
@@ -34444,76 +34189,6 @@ var openapi = {
|
|
|
34444
34189
|
"x-resource-type": "device",
|
|
34445
34190
|
"x-variant-group-key": "locks"
|
|
34446
34191
|
},
|
|
34447
|
-
{
|
|
34448
|
-
deprecated: true,
|
|
34449
|
-
description: "Indicates that the lock is not connected to a bridge.",
|
|
34450
|
-
properties: {
|
|
34451
|
-
created_at: {
|
|
34452
|
-
description: "Date and time at which Seam created the error.",
|
|
34453
|
-
format: "date-time",
|
|
34454
|
-
type: "string"
|
|
34455
|
-
},
|
|
34456
|
-
error_code: {
|
|
34457
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
34458
|
-
enum: ["august_lock_missing_bridge"],
|
|
34459
|
-
type: "string"
|
|
34460
|
-
},
|
|
34461
|
-
is_device_error: {
|
|
34462
|
-
description: "Indicates that the error is a device error.",
|
|
34463
|
-
enum: [true],
|
|
34464
|
-
type: "boolean"
|
|
34465
|
-
},
|
|
34466
|
-
message: {
|
|
34467
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
34468
|
-
type: "string"
|
|
34469
|
-
}
|
|
34470
|
-
},
|
|
34471
|
-
required: [
|
|
34472
|
-
"message",
|
|
34473
|
-
"is_device_error",
|
|
34474
|
-
"created_at",
|
|
34475
|
-
"error_code"
|
|
34476
|
-
],
|
|
34477
|
-
type: "object",
|
|
34478
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
34479
|
-
"x-resource-type": "device",
|
|
34480
|
-
"x-variant-group-key": "locks"
|
|
34481
|
-
},
|
|
34482
|
-
{
|
|
34483
|
-
deprecated: true,
|
|
34484
|
-
description: "Indicates that the lock is not paired with a gateway.",
|
|
34485
|
-
properties: {
|
|
34486
|
-
created_at: {
|
|
34487
|
-
description: "Date and time at which Seam created the error.",
|
|
34488
|
-
format: "date-time",
|
|
34489
|
-
type: "string"
|
|
34490
|
-
},
|
|
34491
|
-
error_code: {
|
|
34492
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
34493
|
-
enum: ["ttlock_lock_not_paired_to_gateway"],
|
|
34494
|
-
type: "string"
|
|
34495
|
-
},
|
|
34496
|
-
is_device_error: {
|
|
34497
|
-
description: "Indicates that the error is a device error.",
|
|
34498
|
-
enum: [true],
|
|
34499
|
-
type: "boolean"
|
|
34500
|
-
},
|
|
34501
|
-
message: {
|
|
34502
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
34503
|
-
type: "string"
|
|
34504
|
-
}
|
|
34505
|
-
},
|
|
34506
|
-
required: [
|
|
34507
|
-
"message",
|
|
34508
|
-
"is_device_error",
|
|
34509
|
-
"created_at",
|
|
34510
|
-
"error_code"
|
|
34511
|
-
],
|
|
34512
|
-
type: "object",
|
|
34513
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
34514
|
-
"x-resource-type": "device",
|
|
34515
|
-
"x-variant-group-key": "locks"
|
|
34516
|
-
},
|
|
34517
34192
|
{
|
|
34518
34193
|
description: "Indicates that device credentials are missing.",
|
|
34519
34194
|
properties: {
|
|
@@ -34611,41 +34286,6 @@ var openapi = {
|
|
|
34611
34286
|
type: "object",
|
|
34612
34287
|
"x-resource-type": "device"
|
|
34613
34288
|
},
|
|
34614
|
-
{
|
|
34615
|
-
deprecated: true,
|
|
34616
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
34617
|
-
properties: {
|
|
34618
|
-
created_at: {
|
|
34619
|
-
description: "Date and time at which Seam created the error.",
|
|
34620
|
-
format: "date-time",
|
|
34621
|
-
type: "string"
|
|
34622
|
-
},
|
|
34623
|
-
error_code: {
|
|
34624
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
34625
|
-
enum: ["lockly_missing_wifi_bridge"],
|
|
34626
|
-
type: "string"
|
|
34627
|
-
},
|
|
34628
|
-
is_device_error: {
|
|
34629
|
-
description: "Indicates that the error is a device error.",
|
|
34630
|
-
enum: [true],
|
|
34631
|
-
type: "boolean"
|
|
34632
|
-
},
|
|
34633
|
-
message: {
|
|
34634
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
34635
|
-
type: "string"
|
|
34636
|
-
}
|
|
34637
|
-
},
|
|
34638
|
-
required: [
|
|
34639
|
-
"message",
|
|
34640
|
-
"is_device_error",
|
|
34641
|
-
"created_at",
|
|
34642
|
-
"error_code"
|
|
34643
|
-
],
|
|
34644
|
-
type: "object",
|
|
34645
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
34646
|
-
"x-resource-type": "device",
|
|
34647
|
-
"x-variant-group-key": "locks"
|
|
34648
|
-
},
|
|
34649
34289
|
{
|
|
34650
34290
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/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/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
34651
34291
|
properties: {
|
|
@@ -34959,6 +34599,27 @@ var openapi = {
|
|
|
34959
34599
|
},
|
|
34960
34600
|
required: ["message", "warning_code"],
|
|
34961
34601
|
type: "object"
|
|
34602
|
+
},
|
|
34603
|
+
{
|
|
34604
|
+
description: "An unknown issue occurred with the access code.",
|
|
34605
|
+
properties: {
|
|
34606
|
+
created_at: {
|
|
34607
|
+
description: "Date and time at which Seam created the warning.",
|
|
34608
|
+
format: "date-time",
|
|
34609
|
+
type: "string"
|
|
34610
|
+
},
|
|
34611
|
+
message: {
|
|
34612
|
+
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
34613
|
+
type: "string"
|
|
34614
|
+
},
|
|
34615
|
+
warning_code: {
|
|
34616
|
+
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
34617
|
+
enum: ["unknown_issue_with_access_code"],
|
|
34618
|
+
type: "string"
|
|
34619
|
+
}
|
|
34620
|
+
},
|
|
34621
|
+
required: ["message", "warning_code"],
|
|
34622
|
+
type: "object"
|
|
34962
34623
|
}
|
|
34963
34624
|
]
|
|
34964
34625
|
},
|
|
@@ -37172,76 +36833,6 @@ var openapi = {
|
|
|
37172
36833
|
"x-resource-type": "device",
|
|
37173
36834
|
"x-variant-group-key": "locks"
|
|
37174
36835
|
},
|
|
37175
|
-
{
|
|
37176
|
-
deprecated: true,
|
|
37177
|
-
description: "Indicates that the lock is not connected to a bridge.",
|
|
37178
|
-
properties: {
|
|
37179
|
-
created_at: {
|
|
37180
|
-
description: "Date and time at which Seam created the error.",
|
|
37181
|
-
format: "date-time",
|
|
37182
|
-
type: "string"
|
|
37183
|
-
},
|
|
37184
|
-
error_code: {
|
|
37185
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
37186
|
-
enum: ["august_lock_missing_bridge"],
|
|
37187
|
-
type: "string"
|
|
37188
|
-
},
|
|
37189
|
-
is_device_error: {
|
|
37190
|
-
description: "Indicates that the error is a device error.",
|
|
37191
|
-
enum: [true],
|
|
37192
|
-
type: "boolean"
|
|
37193
|
-
},
|
|
37194
|
-
message: {
|
|
37195
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
37196
|
-
type: "string"
|
|
37197
|
-
}
|
|
37198
|
-
},
|
|
37199
|
-
required: [
|
|
37200
|
-
"message",
|
|
37201
|
-
"is_device_error",
|
|
37202
|
-
"created_at",
|
|
37203
|
-
"error_code"
|
|
37204
|
-
],
|
|
37205
|
-
type: "object",
|
|
37206
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
37207
|
-
"x-resource-type": "device",
|
|
37208
|
-
"x-variant-group-key": "locks"
|
|
37209
|
-
},
|
|
37210
|
-
{
|
|
37211
|
-
deprecated: true,
|
|
37212
|
-
description: "Indicates that the lock is not paired with a gateway.",
|
|
37213
|
-
properties: {
|
|
37214
|
-
created_at: {
|
|
37215
|
-
description: "Date and time at which Seam created the error.",
|
|
37216
|
-
format: "date-time",
|
|
37217
|
-
type: "string"
|
|
37218
|
-
},
|
|
37219
|
-
error_code: {
|
|
37220
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
37221
|
-
enum: ["ttlock_lock_not_paired_to_gateway"],
|
|
37222
|
-
type: "string"
|
|
37223
|
-
},
|
|
37224
|
-
is_device_error: {
|
|
37225
|
-
description: "Indicates that the error is a device error.",
|
|
37226
|
-
enum: [true],
|
|
37227
|
-
type: "boolean"
|
|
37228
|
-
},
|
|
37229
|
-
message: {
|
|
37230
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
37231
|
-
type: "string"
|
|
37232
|
-
}
|
|
37233
|
-
},
|
|
37234
|
-
required: [
|
|
37235
|
-
"message",
|
|
37236
|
-
"is_device_error",
|
|
37237
|
-
"created_at",
|
|
37238
|
-
"error_code"
|
|
37239
|
-
],
|
|
37240
|
-
type: "object",
|
|
37241
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
37242
|
-
"x-resource-type": "device",
|
|
37243
|
-
"x-variant-group-key": "locks"
|
|
37244
|
-
},
|
|
37245
36836
|
{
|
|
37246
36837
|
description: "Indicates that device credentials are missing.",
|
|
37247
36838
|
properties: {
|
|
@@ -37339,41 +36930,6 @@ var openapi = {
|
|
|
37339
36930
|
type: "object",
|
|
37340
36931
|
"x-resource-type": "device"
|
|
37341
36932
|
},
|
|
37342
|
-
{
|
|
37343
|
-
deprecated: true,
|
|
37344
|
-
description: "Indicates that the Lockly lock is not connected to a Wi-Fi bridge.",
|
|
37345
|
-
properties: {
|
|
37346
|
-
created_at: {
|
|
37347
|
-
description: "Date and time at which Seam created the error.",
|
|
37348
|
-
format: "date-time",
|
|
37349
|
-
type: "string"
|
|
37350
|
-
},
|
|
37351
|
-
error_code: {
|
|
37352
|
-
description: "Unique identifier of the type of error. Enables quick recognition and categorization of the issue.",
|
|
37353
|
-
enum: ["lockly_missing_wifi_bridge"],
|
|
37354
|
-
type: "string"
|
|
37355
|
-
},
|
|
37356
|
-
is_device_error: {
|
|
37357
|
-
description: "Indicates that the error is a device error.",
|
|
37358
|
-
enum: [true],
|
|
37359
|
-
type: "boolean"
|
|
37360
|
-
},
|
|
37361
|
-
message: {
|
|
37362
|
-
description: "Detailed description of the error. Provides insights into the issue and potentially how to rectify it.",
|
|
37363
|
-
type: "string"
|
|
37364
|
-
}
|
|
37365
|
-
},
|
|
37366
|
-
required: [
|
|
37367
|
-
"message",
|
|
37368
|
-
"is_device_error",
|
|
37369
|
-
"created_at",
|
|
37370
|
-
"error_code"
|
|
37371
|
-
],
|
|
37372
|
-
type: "object",
|
|
37373
|
-
"x-deprecated": "Use `hub_disconnected` instead.",
|
|
37374
|
-
"x-resource-type": "device",
|
|
37375
|
-
"x-variant-group-key": "locks"
|
|
37376
|
-
},
|
|
37377
36933
|
{
|
|
37378
36934
|
description: "Indicates that the Seam API cannot communicate with [Seam Bridge](https://docs.seam.co/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/low-level-apis/access-systems/troubleshooting-your-access-control-system#acs_system-errors-seam_bridge_disconnected).",
|
|
37379
36935
|
properties: {
|
|
@@ -37639,30 +37195,6 @@ var openapi = {
|
|
|
37639
37195
|
type: "object",
|
|
37640
37196
|
"x-variant-group-key": "access_codes"
|
|
37641
37197
|
},
|
|
37642
|
-
{
|
|
37643
|
-
deprecated: true,
|
|
37644
|
-
description: "Indicates that the Wyze Lock is not connected to a gateway.",
|
|
37645
|
-
properties: {
|
|
37646
|
-
created_at: {
|
|
37647
|
-
description: "Date and time at which Seam created the warning.",
|
|
37648
|
-
format: "date-time",
|
|
37649
|
-
type: "string"
|
|
37650
|
-
},
|
|
37651
|
-
message: {
|
|
37652
|
-
description: "Detailed description of the warning. Provides insights into the issue and potentially how to rectify it.",
|
|
37653
|
-
type: "string"
|
|
37654
|
-
},
|
|
37655
|
-
warning_code: {
|
|
37656
|
-
description: "Unique identifier of the type of warning. Enables quick recognition and categorization of the issue.",
|
|
37657
|
-
enum: ["wyze_device_missing_gateway"],
|
|
37658
|
-
type: "string"
|
|
37659
|
-
}
|
|
37660
|
-
},
|
|
37661
|
-
required: ["message", "created_at", "warning_code"],
|
|
37662
|
-
type: "object",
|
|
37663
|
-
"x-deprecated": "Use `hub_disconnected` device error instead.",
|
|
37664
|
-
"x-variant-group-key": "locks"
|
|
37665
|
-
},
|
|
37666
37198
|
{
|
|
37667
37199
|
description: "Indicates that a third-party integration has been detected.",
|
|
37668
37200
|
properties: {
|