@seamapi/types 1.56.0 → 1.57.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 +50 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +80 -16
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +50 -5
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +56 -16
- package/lib/seam/connect/unstable/models/acs/system.d.ts +7 -7
- package/lib/seam/connect/unstable/models/acs/system.js +1 -1
- package/lib/seam/connect/unstable/models/acs/system.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +8 -1
- package/lib/seam/connect/unstable/models/devices/managed-device.js +7 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +1 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js.map +1 -1
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +53 -7
- package/src/lib/seam/connect/route-types.ts +96 -16
- package/src/lib/seam/connect/unstable/models/acs/system.ts +1 -1
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +9 -0
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +1 -0
package/dist/connect.cjs
CHANGED
|
@@ -225,7 +225,7 @@ var openapi_default = {
|
|
|
225
225
|
"brivo_system",
|
|
226
226
|
"hid_cm_org",
|
|
227
227
|
"visionline_system",
|
|
228
|
-
"
|
|
228
|
+
"assa_abloy_credential_service_user"
|
|
229
229
|
],
|
|
230
230
|
type: "string"
|
|
231
231
|
},
|
|
@@ -240,7 +240,7 @@ var openapi_default = {
|
|
|
240
240
|
"brivo_system",
|
|
241
241
|
"hid_cm_org",
|
|
242
242
|
"visionline_system",
|
|
243
|
-
"
|
|
243
|
+
"assa_abloy_credential_service_user"
|
|
244
244
|
],
|
|
245
245
|
type: "string"
|
|
246
246
|
},
|
|
@@ -527,7 +527,7 @@ var openapi_default = {
|
|
|
527
527
|
device: {
|
|
528
528
|
properties: {
|
|
529
529
|
capabilities_supported: {
|
|
530
|
-
description:
|
|
530
|
+
description: "Deprecated. Use enabled_capabilities.",
|
|
531
531
|
items: {
|
|
532
532
|
enum: [
|
|
533
533
|
"access_code",
|
|
@@ -598,6 +598,20 @@ var openapi_default = {
|
|
|
598
598
|
}
|
|
599
599
|
]
|
|
600
600
|
},
|
|
601
|
+
enabled_capabilities: {
|
|
602
|
+
description: 'Collection of capabilities that the device has enabled, reflecting its present configuration. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
603
|
+
items: {
|
|
604
|
+
enum: [
|
|
605
|
+
"access_code",
|
|
606
|
+
"lock",
|
|
607
|
+
"noise_detection",
|
|
608
|
+
"thermostat",
|
|
609
|
+
"battery"
|
|
610
|
+
],
|
|
611
|
+
type: "string"
|
|
612
|
+
},
|
|
613
|
+
type: "array"
|
|
614
|
+
},
|
|
601
615
|
errors: {
|
|
602
616
|
description: '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.',
|
|
603
617
|
items: {
|
|
@@ -1537,6 +1551,20 @@ var openapi_default = {
|
|
|
1537
1551
|
],
|
|
1538
1552
|
description: "Properties of the device."
|
|
1539
1553
|
},
|
|
1554
|
+
supported_capabilities: {
|
|
1555
|
+
description: 'Collection of capabilities that the device supports when connected to Seam. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
1556
|
+
items: {
|
|
1557
|
+
enum: [
|
|
1558
|
+
"access_code",
|
|
1559
|
+
"lock",
|
|
1560
|
+
"noise_detection",
|
|
1561
|
+
"thermostat",
|
|
1562
|
+
"battery"
|
|
1563
|
+
],
|
|
1564
|
+
type: "string"
|
|
1565
|
+
},
|
|
1566
|
+
type: "array"
|
|
1567
|
+
},
|
|
1540
1568
|
warnings: {
|
|
1541
1569
|
description: '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.',
|
|
1542
1570
|
items: {
|
|
@@ -1559,6 +1587,8 @@ var openapi_default = {
|
|
|
1559
1587
|
"device_id",
|
|
1560
1588
|
"device_type",
|
|
1561
1589
|
"capabilities_supported",
|
|
1590
|
+
"enabled_capabilities",
|
|
1591
|
+
"supported_capabilities",
|
|
1562
1592
|
"properties",
|
|
1563
1593
|
"location",
|
|
1564
1594
|
"connected_account_id",
|
|
@@ -1705,7 +1735,7 @@ var openapi_default = {
|
|
|
1705
1735
|
unmanaged_device: {
|
|
1706
1736
|
properties: {
|
|
1707
1737
|
capabilities_supported: {
|
|
1708
|
-
description:
|
|
1738
|
+
description: "Deprecated. Use enabled_capabilities.",
|
|
1709
1739
|
items: {
|
|
1710
1740
|
enum: [
|
|
1711
1741
|
"access_code",
|
|
@@ -1776,6 +1806,20 @@ var openapi_default = {
|
|
|
1776
1806
|
}
|
|
1777
1807
|
]
|
|
1778
1808
|
},
|
|
1809
|
+
enabled_capabilities: {
|
|
1810
|
+
description: 'Collection of capabilities that the device has enabled, reflecting its present configuration. Values are "access_code," which indicates that the device can manage and utilize digital PIN codes for secure access; "lock," which indicates that the device controls a door locking mechanism, enabling the remote opening and closing of doors and other entry points; "noise_detection," which indicates that the device supports monitoring and responding to ambient noise levels; "thermostat," which indicates that the device can regulate and adjust indoor temperatures; and "battery," which indicates that the device can manage battery life and health.',
|
|
1811
|
+
items: {
|
|
1812
|
+
enum: [
|
|
1813
|
+
"access_code",
|
|
1814
|
+
"lock",
|
|
1815
|
+
"noise_detection",
|
|
1816
|
+
"thermostat",
|
|
1817
|
+
"battery"
|
|
1818
|
+
],
|
|
1819
|
+
type: "string"
|
|
1820
|
+
},
|
|
1821
|
+
type: "array"
|
|
1822
|
+
},
|
|
1779
1823
|
errors: {
|
|
1780
1824
|
description: '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.',
|
|
1781
1825
|
items: {
|
|
@@ -1841,6 +1885,7 @@ var openapi_default = {
|
|
|
1841
1885
|
"device_type",
|
|
1842
1886
|
"connected_account_id",
|
|
1843
1887
|
"capabilities_supported",
|
|
1888
|
+
"enabled_capabilities",
|
|
1844
1889
|
"workspace_id",
|
|
1845
1890
|
"errors",
|
|
1846
1891
|
"warnings",
|
|
@@ -5532,7 +5577,7 @@ var openapi_default = {
|
|
|
5532
5577
|
"wyze",
|
|
5533
5578
|
"seam_passport",
|
|
5534
5579
|
"visionline",
|
|
5535
|
-
"
|
|
5580
|
+
"assa_abloy_credential_service",
|
|
5536
5581
|
"yale_access",
|
|
5537
5582
|
"hid_cm"
|
|
5538
5583
|
],
|