@seamapi/types 1.111.0 → 1.112.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 +4 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +34 -0
- package/lib/seam/connect/openapi.d.ts +12 -0
- package/lib/seam/connect/openapi.js +4 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +22 -0
- package/lib/seam/connect/unstable/models/devices/managed-device.d.ts +23 -17
- package/lib/seam/connect/unstable/models/devices/managed-device.js +5 -2
- package/lib/seam/connect/unstable/models/devices/managed-device.js.map +1 -1
- package/lib/seam/connect/unstable/models/devices/phone.d.ts +6 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/openapi.ts +4 -0
- package/src/lib/seam/connect/route-types.ts +22 -0
- package/src/lib/seam/connect/unstable/models/devices/managed-device.ts +72 -66
package/dist/connect.cjs
CHANGED
|
@@ -546,6 +546,8 @@ var openapi_default = {
|
|
|
546
546
|
},
|
|
547
547
|
device: {
|
|
548
548
|
properties: {
|
|
549
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
550
|
+
can_remotely_unlock: { type: "boolean" },
|
|
549
551
|
capabilities_supported: {
|
|
550
552
|
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.',
|
|
551
553
|
items: {
|
|
@@ -1797,6 +1799,8 @@ var openapi_default = {
|
|
|
1797
1799
|
},
|
|
1798
1800
|
phone: {
|
|
1799
1801
|
properties: {
|
|
1802
|
+
can_program_online_access_codes: { type: "boolean" },
|
|
1803
|
+
can_remotely_unlock: { type: "boolean" },
|
|
1800
1804
|
capabilities_supported: {
|
|
1801
1805
|
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.',
|
|
1802
1806
|
items: {
|