@seamapi/types 1.134.0 → 1.136.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 +3 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +23 -0
- package/lib/seam/connect/openapi.d.ts +9 -0
- package/lib/seam/connect/openapi.js +3 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +14 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +3 -0
- package/src/lib/seam/connect/route-types.ts +14 -0
package/dist/connect.cjs
CHANGED
|
@@ -552,6 +552,7 @@ var openapi_default = {
|
|
|
552
552
|
device: {
|
|
553
553
|
properties: {
|
|
554
554
|
can_program_online_access_codes: { type: "boolean" },
|
|
555
|
+
can_remotely_lock: { type: "boolean" },
|
|
555
556
|
can_remotely_unlock: { type: "boolean" },
|
|
556
557
|
capabilities_supported: {
|
|
557
558
|
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.',
|
|
@@ -1876,6 +1877,7 @@ var openapi_default = {
|
|
|
1876
1877
|
phone: {
|
|
1877
1878
|
properties: {
|
|
1878
1879
|
can_program_online_access_codes: { type: "boolean" },
|
|
1880
|
+
can_remotely_lock: { type: "boolean" },
|
|
1879
1881
|
can_remotely_unlock: { type: "boolean" },
|
|
1880
1882
|
capabilities_supported: {
|
|
1881
1883
|
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.',
|
|
@@ -2089,6 +2091,7 @@ var openapi_default = {
|
|
|
2089
2091
|
unmanaged_device: {
|
|
2090
2092
|
properties: {
|
|
2091
2093
|
can_program_online_access_codes: { type: "boolean" },
|
|
2094
|
+
can_remotely_lock: { type: "boolean" },
|
|
2092
2095
|
can_remotely_unlock: { type: "boolean" },
|
|
2093
2096
|
capabilities_supported: {
|
|
2094
2097
|
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.',
|