@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.
@@ -1769,10 +1769,18 @@ export interface Routes {
1769
1769
  )
1770
1770
  | ('noiseaware_activity_zone' | 'minut_sensor')
1771
1771
  | ('ecobee_thermostat' | 'nest_thermostat')
1772
- /** 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. */
1772
+ /** Deprecated. Use enabled_capabilities. */
1773
1773
  capabilities_supported: Array<
1774
1774
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
1775
1775
  >
1776
+ /** 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. */
1777
+ enabled_capabilities: Array<
1778
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
1779
+ >
1780
+ /** 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. */
1781
+ supported_capabilities: Array<
1782
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
1783
+ >
1776
1784
  /** Properties of the device. */
1777
1785
  properties: ({
1778
1786
  /** Indicates whether the device is online. */
@@ -2503,10 +2511,18 @@ export interface Routes {
2503
2511
  )
2504
2512
  | ('noiseaware_activity_zone' | 'minut_sensor')
2505
2513
  | ('ecobee_thermostat' | 'nest_thermostat')
2506
- /** 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. */
2514
+ /** Deprecated. Use enabled_capabilities. */
2507
2515
  capabilities_supported: Array<
2508
2516
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
2509
2517
  >
2518
+ /** 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. */
2519
+ enabled_capabilities: Array<
2520
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
2521
+ >
2522
+ /** 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. */
2523
+ supported_capabilities: Array<
2524
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
2525
+ >
2510
2526
  /** Properties of the device. */
2511
2527
  properties: ({
2512
2528
  /** Indicates whether the device is online. */
@@ -3149,10 +3165,14 @@ export interface Routes {
3149
3165
  | ('ecobee_thermostat' | 'nest_thermostat')
3150
3166
  /** Unique identifier for the account associated with the device. */
3151
3167
  connected_account_id: string
3152
- /** 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. */
3168
+ /** Deprecated. Use enabled_capabilities. */
3153
3169
  capabilities_supported: Array<
3154
3170
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3155
3171
  >
3172
+ /** 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. */
3173
+ enabled_capabilities: Array<
3174
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3175
+ >
3156
3176
  /** Unique identifier for the Seam workspace associated with the device. */
3157
3177
  workspace_id: string
3158
3178
  /** 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. */
@@ -3341,10 +3361,14 @@ export interface Routes {
3341
3361
  | ('ecobee_thermostat' | 'nest_thermostat')
3342
3362
  /** Unique identifier for the account associated with the device. */
3343
3363
  connected_account_id: string
3344
- /** 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. */
3364
+ /** Deprecated. Use enabled_capabilities. */
3345
3365
  capabilities_supported: Array<
3346
3366
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3347
3367
  >
3368
+ /** 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. */
3369
+ enabled_capabilities: Array<
3370
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3371
+ >
3348
3372
  /** Unique identifier for the Seam workspace associated with the device. */
3349
3373
  workspace_id: string
3350
3374
  /** 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. */
@@ -3678,10 +3702,18 @@ export interface Routes {
3678
3702
  )
3679
3703
  | ('noiseaware_activity_zone' | 'minut_sensor')
3680
3704
  | ('ecobee_thermostat' | 'nest_thermostat')
3681
- /** 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. */
3705
+ /** Deprecated. Use enabled_capabilities. */
3682
3706
  capabilities_supported: Array<
3683
3707
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3684
3708
  >
3709
+ /** 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. */
3710
+ enabled_capabilities: Array<
3711
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3712
+ >
3713
+ /** 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. */
3714
+ supported_capabilities: Array<
3715
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
3716
+ >
3685
3717
  /** Properties of the device. */
3686
3718
  properties: ({
3687
3719
  /** Indicates whether the device is online. */
@@ -4291,10 +4323,18 @@ export interface Routes {
4291
4323
  )
4292
4324
  | ('noiseaware_activity_zone' | 'minut_sensor')
4293
4325
  | ('ecobee_thermostat' | 'nest_thermostat')
4294
- /** 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. */
4326
+ /** Deprecated. Use enabled_capabilities. */
4295
4327
  capabilities_supported: Array<
4296
4328
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
4297
4329
  >
4330
+ /** 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. */
4331
+ enabled_capabilities: Array<
4332
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
4333
+ >
4334
+ /** 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. */
4335
+ supported_capabilities: Array<
4336
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
4337
+ >
4298
4338
  /** Properties of the device. */
4299
4339
  properties: ({
4300
4340
  /** Indicates whether the device is online. */
@@ -5025,10 +5065,18 @@ export interface Routes {
5025
5065
  )
5026
5066
  | ('noiseaware_activity_zone' | 'minut_sensor')
5027
5067
  | ('ecobee_thermostat' | 'nest_thermostat')
5028
- /** 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. */
5068
+ /** Deprecated. Use enabled_capabilities. */
5029
5069
  capabilities_supported: Array<
5030
5070
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5031
5071
  >
5072
+ /** 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. */
5073
+ enabled_capabilities: Array<
5074
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5075
+ >
5076
+ /** 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. */
5077
+ supported_capabilities: Array<
5078
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5079
+ >
5032
5080
  /** Properties of the device. */
5033
5081
  properties: ({
5034
5082
  /** Indicates whether the device is online. */
@@ -5638,10 +5686,18 @@ export interface Routes {
5638
5686
  )
5639
5687
  | ('noiseaware_activity_zone' | 'minut_sensor')
5640
5688
  | ('ecobee_thermostat' | 'nest_thermostat')
5641
- /** 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. */
5689
+ /** Deprecated. Use enabled_capabilities. */
5642
5690
  capabilities_supported: Array<
5643
5691
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5644
5692
  >
5693
+ /** 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. */
5694
+ enabled_capabilities: Array<
5695
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5696
+ >
5697
+ /** 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. */
5698
+ supported_capabilities: Array<
5699
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
5700
+ >
5645
5701
  /** Properties of the device. */
5646
5702
  properties: ({
5647
5703
  /** Indicates whether the device is online. */
@@ -6696,10 +6752,18 @@ export interface Routes {
6696
6752
  )
6697
6753
  | ('noiseaware_activity_zone' | 'minut_sensor')
6698
6754
  | ('ecobee_thermostat' | 'nest_thermostat')
6699
- /** 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. */
6755
+ /** Deprecated. Use enabled_capabilities. */
6700
6756
  capabilities_supported: Array<
6701
6757
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
6702
6758
  >
6759
+ /** 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. */
6760
+ enabled_capabilities: Array<
6761
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
6762
+ >
6763
+ /** 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. */
6764
+ supported_capabilities: Array<
6765
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
6766
+ >
6703
6767
  /** Properties of the device. */
6704
6768
  properties: ({
6705
6769
  /** Indicates whether the device is online. */
@@ -7460,10 +7524,18 @@ export interface Routes {
7460
7524
  )
7461
7525
  | ('noiseaware_activity_zone' | 'minut_sensor')
7462
7526
  | ('ecobee_thermostat' | 'nest_thermostat')
7463
- /** 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. */
7527
+ /** Deprecated. Use enabled_capabilities. */
7464
7528
  capabilities_supported: Array<
7465
7529
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
7466
7530
  >
7531
+ /** 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. */
7532
+ enabled_capabilities: Array<
7533
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
7534
+ >
7535
+ /** 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. */
7536
+ supported_capabilities: Array<
7537
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
7538
+ >
7467
7539
  /** Properties of the device. */
7468
7540
  properties: ({
7469
7541
  /** Indicates whether the device is online. */
@@ -8224,10 +8296,18 @@ export interface Routes {
8224
8296
  )
8225
8297
  | ('noiseaware_activity_zone' | 'minut_sensor')
8226
8298
  | ('ecobee_thermostat' | 'nest_thermostat')
8227
- /** 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. */
8299
+ /** Deprecated. Use enabled_capabilities. */
8228
8300
  capabilities_supported: Array<
8229
8301
  'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
8230
8302
  >
8303
+ /** 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. */
8304
+ enabled_capabilities: Array<
8305
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
8306
+ >
8307
+ /** 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. */
8308
+ supported_capabilities: Array<
8309
+ 'access_code' | 'lock' | 'noise_detection' | 'thermostat' | 'battery'
8310
+ >
8231
8311
  /** Properties of the device. */
8232
8312
  properties: ({
8233
8313
  /** Indicates whether the device is online. */
@@ -95,7 +95,16 @@ export const common_device_properties = z.object({
95
95
  export const managed_device = z.object({
96
96
  device_id: z.string().uuid().describe('Unique identifier for the device.'),
97
97
  device_type: any_device_type.describe('Type of the device.'),
98
+ /** @deprecated use enabled_capabilities for same behavior */
98
99
  capabilities_supported: z
100
+ .array(capabilities)
101
+ .describe('Deprecated. Use enabled_capabilities.'),
102
+ enabled_capabilities: z
103
+ .array(capabilities)
104
+ .describe(
105
+ '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.',
106
+ ),
107
+ supported_capabilities: z
99
108
  .array(capabilities)
100
109
  .describe(
101
110
  '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.',
@@ -8,6 +8,7 @@ export const unmanaged_device = managed_device
8
8
  device_type: true,
9
9
  connected_account_id: true,
10
10
  capabilities_supported: true,
11
+ enabled_capabilities: true,
11
12
  workspace_id: true,
12
13
  errors: true,
13
14
  warnings: true,