@seamapi/types 1.115.0 → 1.116.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 +2 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +10 -0
- package/lib/seam/connect/openapi.d.ts +6 -0
- package/lib/seam/connect/openapi.js +2 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +4 -0
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.d.ts +28 -22
- package/lib/seam/connect/unstable/models/devices/unmanaged-device.js +3 -1
- 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 +2 -0
- package/src/lib/seam/connect/route-types.ts +4 -0
- package/src/lib/seam/connect/unstable/models/devices/unmanaged-device.ts +3 -0
package/dist/connect.d.cts
CHANGED
|
@@ -2549,6 +2549,12 @@ declare const _default: {
|
|
|
2549
2549
|
};
|
|
2550
2550
|
unmanaged_device: {
|
|
2551
2551
|
properties: {
|
|
2552
|
+
can_program_online_access_codes: {
|
|
2553
|
+
type: string;
|
|
2554
|
+
};
|
|
2555
|
+
can_remotely_unlock: {
|
|
2556
|
+
type: string;
|
|
2557
|
+
};
|
|
2552
2558
|
capabilities_supported: {
|
|
2553
2559
|
description: string;
|
|
2554
2560
|
items: {
|
|
@@ -20091,6 +20097,8 @@ interface Routes {
|
|
|
20091
20097
|
accessory_keypad_supported?: boolean | undefined;
|
|
20092
20098
|
};
|
|
20093
20099
|
};
|
|
20100
|
+
can_remotely_unlock?: boolean | undefined;
|
|
20101
|
+
can_program_online_access_codes?: boolean | undefined;
|
|
20094
20102
|
};
|
|
20095
20103
|
};
|
|
20096
20104
|
};
|
|
@@ -20174,6 +20182,8 @@ interface Routes {
|
|
|
20174
20182
|
accessory_keypad_supported?: boolean | undefined;
|
|
20175
20183
|
};
|
|
20176
20184
|
};
|
|
20185
|
+
can_remotely_unlock?: boolean | undefined;
|
|
20186
|
+
can_program_online_access_codes?: boolean | undefined;
|
|
20177
20187
|
}>;
|
|
20178
20188
|
};
|
|
20179
20189
|
};
|
|
@@ -2475,6 +2475,12 @@ declare const _default: {
|
|
|
2475
2475
|
};
|
|
2476
2476
|
unmanaged_device: {
|
|
2477
2477
|
properties: {
|
|
2478
|
+
can_program_online_access_codes: {
|
|
2479
|
+
type: string;
|
|
2480
|
+
};
|
|
2481
|
+
can_remotely_unlock: {
|
|
2482
|
+
type: string;
|
|
2483
|
+
};
|
|
2478
2484
|
capabilities_supported: {
|
|
2479
2485
|
description: string;
|
|
2480
2486
|
items: {
|
|
@@ -1956,6 +1956,8 @@ export default {
|
|
|
1956
1956
|
},
|
|
1957
1957
|
unmanaged_device: {
|
|
1958
1958
|
properties: {
|
|
1959
|
+
can_program_online_access_codes: { type: 'boolean' },
|
|
1960
|
+
can_remotely_unlock: { type: 'boolean' },
|
|
1959
1961
|
capabilities_supported: {
|
|
1960
1962
|
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.',
|
|
1961
1963
|
items: {
|