@seamapi/types 1.56.1 → 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 +47 -2
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +75 -11
- package/lib/seam/connect/openapi.d.ts +24 -0
- package/lib/seam/connect/openapi.js +47 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +51 -11
- 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 +50 -4
- package/src/lib/seam/connect/route-types.ts +91 -11
- 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.d.cts
CHANGED
|
@@ -718,6 +718,14 @@ declare const _default: {
|
|
|
718
718
|
type: string;
|
|
719
719
|
}[];
|
|
720
720
|
};
|
|
721
|
+
enabled_capabilities: {
|
|
722
|
+
description: string;
|
|
723
|
+
items: {
|
|
724
|
+
enum: string[];
|
|
725
|
+
type: string;
|
|
726
|
+
};
|
|
727
|
+
type: string;
|
|
728
|
+
};
|
|
721
729
|
errors: {
|
|
722
730
|
description: string;
|
|
723
731
|
items: {
|
|
@@ -2024,6 +2032,14 @@ declare const _default: {
|
|
|
2024
2032
|
})[];
|
|
2025
2033
|
description: string;
|
|
2026
2034
|
};
|
|
2035
|
+
supported_capabilities: {
|
|
2036
|
+
description: string;
|
|
2037
|
+
items: {
|
|
2038
|
+
enum: string[];
|
|
2039
|
+
type: string;
|
|
2040
|
+
};
|
|
2041
|
+
type: string;
|
|
2042
|
+
};
|
|
2027
2043
|
warnings: {
|
|
2028
2044
|
description: string;
|
|
2029
2045
|
items: {
|
|
@@ -2241,6 +2257,14 @@ declare const _default: {
|
|
|
2241
2257
|
type: string;
|
|
2242
2258
|
}[];
|
|
2243
2259
|
};
|
|
2260
|
+
enabled_capabilities: {
|
|
2261
|
+
description: string;
|
|
2262
|
+
items: {
|
|
2263
|
+
enum: string[];
|
|
2264
|
+
type: string;
|
|
2265
|
+
};
|
|
2266
|
+
type: string;
|
|
2267
|
+
};
|
|
2244
2268
|
errors: {
|
|
2245
2269
|
description: string;
|
|
2246
2270
|
items: {
|
|
@@ -15270,8 +15294,12 @@ interface Routes {
|
|
|
15270
15294
|
device_id: string;
|
|
15271
15295
|
/** Type of the device. */
|
|
15272
15296
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
15273
|
-
/**
|
|
15297
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
15274
15298
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15299
|
+
/** 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. */
|
|
15300
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15301
|
+
/** 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. */
|
|
15302
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15275
15303
|
/** Properties of the device. */
|
|
15276
15304
|
properties: ({
|
|
15277
15305
|
/** Indicates whether the device is online. */
|
|
@@ -15716,8 +15744,12 @@ interface Routes {
|
|
|
15716
15744
|
device_id: string;
|
|
15717
15745
|
/** Type of the device. */
|
|
15718
15746
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
15719
|
-
/**
|
|
15747
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
15720
15748
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15749
|
+
/** 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. */
|
|
15750
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15751
|
+
/** 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. */
|
|
15752
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
15721
15753
|
/** Properties of the device. */
|
|
15722
15754
|
properties: ({
|
|
15723
15755
|
/** Indicates whether the device is online. */
|
|
@@ -16173,8 +16205,10 @@ interface Routes {
|
|
|
16173
16205
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16174
16206
|
/** Unique identifier for the account associated with the device. */
|
|
16175
16207
|
connected_account_id: string;
|
|
16176
|
-
/**
|
|
16208
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
16177
16209
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16210
|
+
/** 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. */
|
|
16211
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16178
16212
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
16179
16213
|
workspace_id: string;
|
|
16180
16214
|
/** 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. */
|
|
@@ -16235,8 +16269,10 @@ interface Routes {
|
|
|
16235
16269
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16236
16270
|
/** Unique identifier for the account associated with the device. */
|
|
16237
16271
|
connected_account_id: string;
|
|
16238
|
-
/**
|
|
16272
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
16239
16273
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16274
|
+
/** 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. */
|
|
16275
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16240
16276
|
/** Unique identifier for the Seam workspace associated with the device. */
|
|
16241
16277
|
workspace_id: string;
|
|
16242
16278
|
/** 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. */
|
|
@@ -16441,8 +16477,12 @@ interface Routes {
|
|
|
16441
16477
|
device_id: string;
|
|
16442
16478
|
/** Type of the device. */
|
|
16443
16479
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16444
|
-
/**
|
|
16480
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
16445
16481
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16482
|
+
/** 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. */
|
|
16483
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16484
|
+
/** 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. */
|
|
16485
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16446
16486
|
/** Properties of the device. */
|
|
16447
16487
|
properties: ({
|
|
16448
16488
|
/** Indicates whether the device is online. */
|
|
@@ -16865,8 +16905,12 @@ interface Routes {
|
|
|
16865
16905
|
device_id: string;
|
|
16866
16906
|
/** Type of the device. */
|
|
16867
16907
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
16868
|
-
/**
|
|
16908
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
16869
16909
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16910
|
+
/** 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. */
|
|
16911
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16912
|
+
/** 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. */
|
|
16913
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
16870
16914
|
/** Properties of the device. */
|
|
16871
16915
|
properties: ({
|
|
16872
16916
|
/** Indicates whether the device is online. */
|
|
@@ -17311,8 +17355,12 @@ interface Routes {
|
|
|
17311
17355
|
device_id: string;
|
|
17312
17356
|
/** Type of the device. */
|
|
17313
17357
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
17314
|
-
/**
|
|
17358
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
17315
17359
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17360
|
+
/** 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. */
|
|
17361
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17362
|
+
/** 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. */
|
|
17363
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17316
17364
|
/** Properties of the device. */
|
|
17317
17365
|
properties: ({
|
|
17318
17366
|
/** Indicates whether the device is online. */
|
|
@@ -17735,8 +17783,12 @@ interface Routes {
|
|
|
17735
17783
|
device_id: string;
|
|
17736
17784
|
/** Type of the device. */
|
|
17737
17785
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
17738
|
-
/**
|
|
17786
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
17739
17787
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17788
|
+
/** 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. */
|
|
17789
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17790
|
+
/** 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. */
|
|
17791
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
17740
17792
|
/** Properties of the device. */
|
|
17741
17793
|
properties: ({
|
|
17742
17794
|
/** Indicates whether the device is online. */
|
|
@@ -18589,8 +18641,12 @@ interface Routes {
|
|
|
18589
18641
|
device_id: string;
|
|
18590
18642
|
/** Type of the device. */
|
|
18591
18643
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
18592
|
-
/**
|
|
18644
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
18593
18645
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
18646
|
+
/** 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. */
|
|
18647
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
18648
|
+
/** 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. */
|
|
18649
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
18594
18650
|
/** Properties of the device. */
|
|
18595
18651
|
properties: ({
|
|
18596
18652
|
/** Indicates whether the device is online. */
|
|
@@ -19065,8 +19121,12 @@ interface Routes {
|
|
|
19065
19121
|
device_id: string;
|
|
19066
19122
|
/** Type of the device. */
|
|
19067
19123
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
19068
|
-
/**
|
|
19124
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
19069
19125
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19126
|
+
/** 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. */
|
|
19127
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19128
|
+
/** 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. */
|
|
19129
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19070
19130
|
/** Properties of the device. */
|
|
19071
19131
|
properties: ({
|
|
19072
19132
|
/** Indicates whether the device is online. */
|
|
@@ -19638,8 +19698,12 @@ interface Routes {
|
|
|
19638
19698
|
device_id: string;
|
|
19639
19699
|
/** Type of the device. */
|
|
19640
19700
|
device_type: ('akuvox_lock' | 'august_lock' | 'brivo_access_point' | 'butterflymx_panel' | 'avigilon_alta_entry' | 'doorking_lock' | 'genie_door' | 'igloo_lock' | 'linear_lock' | 'lockly_lock' | 'kwikset_lock' | 'nuki_lock' | 'salto_lock' | 'schlage_lock' | 'seam_relay' | 'smartthings_lock' | 'wyze_lock' | 'yale_lock' | 'two_n_intercom' | 'controlbyweb_device' | 'ttlock_lock' | 'igloohome_lock' | 'hubitat_lock' | 'four_suites_door' | 'dormakaba_oracode_door') | ('noiseaware_activity_zone' | 'minut_sensor') | ('ecobee_thermostat' | 'nest_thermostat');
|
|
19641
|
-
/**
|
|
19701
|
+
/** Deprecated. Use enabled_capabilities. */
|
|
19642
19702
|
capabilities_supported: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19703
|
+
/** 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. */
|
|
19704
|
+
enabled_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19705
|
+
/** 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. */
|
|
19706
|
+
supported_capabilities: Array<'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'>;
|
|
19643
19707
|
/** Properties of the device. */
|
|
19644
19708
|
properties: ({
|
|
19645
19709
|
/** Indicates whether the device is online. */
|
|
@@ -641,6 +641,14 @@ declare const _default: {
|
|
|
641
641
|
type: string;
|
|
642
642
|
}[];
|
|
643
643
|
};
|
|
644
|
+
enabled_capabilities: {
|
|
645
|
+
description: string;
|
|
646
|
+
items: {
|
|
647
|
+
enum: string[];
|
|
648
|
+
type: string;
|
|
649
|
+
};
|
|
650
|
+
type: string;
|
|
651
|
+
};
|
|
644
652
|
errors: {
|
|
645
653
|
description: string;
|
|
646
654
|
items: {
|
|
@@ -1947,6 +1955,14 @@ declare const _default: {
|
|
|
1947
1955
|
})[];
|
|
1948
1956
|
description: string;
|
|
1949
1957
|
};
|
|
1958
|
+
supported_capabilities: {
|
|
1959
|
+
description: string;
|
|
1960
|
+
items: {
|
|
1961
|
+
enum: string[];
|
|
1962
|
+
type: string;
|
|
1963
|
+
};
|
|
1964
|
+
type: string;
|
|
1965
|
+
};
|
|
1950
1966
|
warnings: {
|
|
1951
1967
|
description: string;
|
|
1952
1968
|
items: {
|
|
@@ -2164,6 +2180,14 @@ declare const _default: {
|
|
|
2164
2180
|
type: string;
|
|
2165
2181
|
}[];
|
|
2166
2182
|
};
|
|
2183
|
+
enabled_capabilities: {
|
|
2184
|
+
description: string;
|
|
2185
|
+
items: {
|
|
2186
|
+
enum: string[];
|
|
2187
|
+
type: string;
|
|
2188
|
+
};
|
|
2189
|
+
type: string;
|
|
2190
|
+
};
|
|
2167
2191
|
errors: {
|
|
2168
2192
|
description: string;
|
|
2169
2193
|
items: {
|
|
@@ -480,7 +480,7 @@ export default {
|
|
|
480
480
|
device: {
|
|
481
481
|
properties: {
|
|
482
482
|
capabilities_supported: {
|
|
483
|
-
description: '
|
|
483
|
+
description: 'Deprecated. Use enabled_capabilities.',
|
|
484
484
|
items: {
|
|
485
485
|
enum: [
|
|
486
486
|
'access_code',
|
|
@@ -551,6 +551,20 @@ export default {
|
|
|
551
551
|
},
|
|
552
552
|
],
|
|
553
553
|
},
|
|
554
|
+
enabled_capabilities: {
|
|
555
|
+
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.',
|
|
556
|
+
items: {
|
|
557
|
+
enum: [
|
|
558
|
+
'access_code',
|
|
559
|
+
'lock',
|
|
560
|
+
'noise_detection',
|
|
561
|
+
'thermostat',
|
|
562
|
+
'battery',
|
|
563
|
+
],
|
|
564
|
+
type: 'string',
|
|
565
|
+
},
|
|
566
|
+
type: 'array',
|
|
567
|
+
},
|
|
554
568
|
errors: {
|
|
555
569
|
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.',
|
|
556
570
|
items: {
|
|
@@ -1490,6 +1504,20 @@ export default {
|
|
|
1490
1504
|
],
|
|
1491
1505
|
description: 'Properties of the device.',
|
|
1492
1506
|
},
|
|
1507
|
+
supported_capabilities: {
|
|
1508
|
+
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.',
|
|
1509
|
+
items: {
|
|
1510
|
+
enum: [
|
|
1511
|
+
'access_code',
|
|
1512
|
+
'lock',
|
|
1513
|
+
'noise_detection',
|
|
1514
|
+
'thermostat',
|
|
1515
|
+
'battery',
|
|
1516
|
+
],
|
|
1517
|
+
type: 'string',
|
|
1518
|
+
},
|
|
1519
|
+
type: 'array',
|
|
1520
|
+
},
|
|
1493
1521
|
warnings: {
|
|
1494
1522
|
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.',
|
|
1495
1523
|
items: {
|
|
@@ -1512,6 +1540,8 @@ export default {
|
|
|
1512
1540
|
'device_id',
|
|
1513
1541
|
'device_type',
|
|
1514
1542
|
'capabilities_supported',
|
|
1543
|
+
'enabled_capabilities',
|
|
1544
|
+
'supported_capabilities',
|
|
1515
1545
|
'properties',
|
|
1516
1546
|
'location',
|
|
1517
1547
|
'connected_account_id',
|
|
@@ -1658,7 +1688,7 @@ export default {
|
|
|
1658
1688
|
unmanaged_device: {
|
|
1659
1689
|
properties: {
|
|
1660
1690
|
capabilities_supported: {
|
|
1661
|
-
description: '
|
|
1691
|
+
description: 'Deprecated. Use enabled_capabilities.',
|
|
1662
1692
|
items: {
|
|
1663
1693
|
enum: [
|
|
1664
1694
|
'access_code',
|
|
@@ -1729,6 +1759,20 @@ export default {
|
|
|
1729
1759
|
},
|
|
1730
1760
|
],
|
|
1731
1761
|
},
|
|
1762
|
+
enabled_capabilities: {
|
|
1763
|
+
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.',
|
|
1764
|
+
items: {
|
|
1765
|
+
enum: [
|
|
1766
|
+
'access_code',
|
|
1767
|
+
'lock',
|
|
1768
|
+
'noise_detection',
|
|
1769
|
+
'thermostat',
|
|
1770
|
+
'battery',
|
|
1771
|
+
],
|
|
1772
|
+
type: 'string',
|
|
1773
|
+
},
|
|
1774
|
+
type: 'array',
|
|
1775
|
+
},
|
|
1732
1776
|
errors: {
|
|
1733
1777
|
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.',
|
|
1734
1778
|
items: {
|
|
@@ -1794,6 +1838,7 @@ export default {
|
|
|
1794
1838
|
'device_type',
|
|
1795
1839
|
'connected_account_id',
|
|
1796
1840
|
'capabilities_supported',
|
|
1841
|
+
'enabled_capabilities',
|
|
1797
1842
|
'workspace_id',
|
|
1798
1843
|
'errors',
|
|
1799
1844
|
'warnings',
|