@seamapi/types 1.466.0 → 1.467.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 +70 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +180 -10
- package/dist/index.cjs +70 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +23 -0
- package/lib/seam/connect/openapi.js +35 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +37 -0
- package/src/lib/seam/connect/route-types.ts +168 -0
|
@@ -11022,6 +11022,10 @@ export type Routes = {
|
|
|
11022
11022
|
*/
|
|
11023
11023
|
upper_limit_fahrenheit: number | null;
|
|
11024
11024
|
} | undefined) | undefined;
|
|
11025
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
11026
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
11027
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
11028
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
11025
11029
|
});
|
|
11026
11030
|
/** Location information for the device. */
|
|
11027
11031
|
location: {
|
|
@@ -11331,6 +11335,7 @@ export type Routes = {
|
|
|
11331
11335
|
can_simulate_connection?: boolean | undefined;
|
|
11332
11336
|
can_simulate_disconnection?: boolean | undefined;
|
|
11333
11337
|
can_unlock_with_code?: boolean | undefined;
|
|
11338
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
11334
11339
|
}[] | undefined;
|
|
11335
11340
|
acs_entrances?: {
|
|
11336
11341
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -14123,6 +14128,10 @@ export type Routes = {
|
|
|
14123
14128
|
*/
|
|
14124
14129
|
upper_limit_fahrenheit: number | null;
|
|
14125
14130
|
} | undefined) | undefined;
|
|
14131
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
14132
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
14133
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
14134
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
14126
14135
|
});
|
|
14127
14136
|
/** Location information for the device. */
|
|
14128
14137
|
location: {
|
|
@@ -14432,6 +14441,7 @@ export type Routes = {
|
|
|
14432
14441
|
can_simulate_connection?: boolean | undefined;
|
|
14433
14442
|
can_simulate_disconnection?: boolean | undefined;
|
|
14434
14443
|
can_unlock_with_code?: boolean | undefined;
|
|
14444
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
14435
14445
|
}[] | undefined;
|
|
14436
14446
|
acs_entrances?: {
|
|
14437
14447
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -16810,6 +16820,7 @@ export type Routes = {
|
|
|
16810
16820
|
can_simulate_connection?: boolean | undefined;
|
|
16811
16821
|
can_simulate_disconnection?: boolean | undefined;
|
|
16812
16822
|
can_unlock_with_code?: boolean | undefined;
|
|
16823
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
16813
16824
|
}[] | undefined;
|
|
16814
16825
|
connect_webviews?: {
|
|
16815
16826
|
/** ID of the Connect Webview. */
|
|
@@ -29049,6 +29060,10 @@ export type Routes = {
|
|
|
29049
29060
|
*/
|
|
29050
29061
|
upper_limit_fahrenheit: number | null;
|
|
29051
29062
|
} | undefined) | undefined;
|
|
29063
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
29064
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
29065
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
29066
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
29052
29067
|
});
|
|
29053
29068
|
/** Location information for the device. */
|
|
29054
29069
|
location: {
|
|
@@ -29358,6 +29373,7 @@ export type Routes = {
|
|
|
29358
29373
|
can_simulate_connection?: boolean | undefined;
|
|
29359
29374
|
can_simulate_disconnection?: boolean | undefined;
|
|
29360
29375
|
can_unlock_with_code?: boolean | undefined;
|
|
29376
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
29361
29377
|
};
|
|
29362
29378
|
};
|
|
29363
29379
|
};
|
|
@@ -29395,9 +29411,9 @@ export type Routes = {
|
|
|
29395
29411
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
29396
29412
|
page_cursor?: (string | undefined) | null;
|
|
29397
29413
|
/** */
|
|
29398
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
29414
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
29399
29415
|
/** */
|
|
29400
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
29416
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
29401
29417
|
/**
|
|
29402
29418
|
* @deprecated Use `space_id`.*/
|
|
29403
29419
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -30298,6 +30314,10 @@ export type Routes = {
|
|
|
30298
30314
|
*/
|
|
30299
30315
|
upper_limit_fahrenheit: number | null;
|
|
30300
30316
|
} | undefined) | undefined;
|
|
30317
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
30318
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
30319
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
30320
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
30301
30321
|
});
|
|
30302
30322
|
/** Location information for the device. */
|
|
30303
30323
|
location: {
|
|
@@ -30607,6 +30627,7 @@ export type Routes = {
|
|
|
30607
30627
|
can_simulate_connection?: boolean | undefined;
|
|
30608
30628
|
can_simulate_disconnection?: boolean | undefined;
|
|
30609
30629
|
can_unlock_with_code?: boolean | undefined;
|
|
30630
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
30610
30631
|
}[];
|
|
30611
30632
|
/** Information about the current page of results. */
|
|
30612
30633
|
pagination: {
|
|
@@ -30647,6 +30668,7 @@ export type Routes = {
|
|
|
30647
30668
|
can_simulate_connection?: boolean | undefined;
|
|
30648
30669
|
can_simulate_disconnection?: boolean | undefined;
|
|
30649
30670
|
can_unlock_with_code?: boolean | undefined;
|
|
30671
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
30650
30672
|
}[];
|
|
30651
30673
|
};
|
|
30652
30674
|
};
|
|
@@ -31104,6 +31126,7 @@ export type Routes = {
|
|
|
31104
31126
|
can_simulate_connection?: boolean | undefined;
|
|
31105
31127
|
can_simulate_disconnection?: boolean | undefined;
|
|
31106
31128
|
can_unlock_with_code?: boolean | undefined;
|
|
31129
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
31107
31130
|
};
|
|
31108
31131
|
};
|
|
31109
31132
|
};
|
|
@@ -31141,9 +31164,9 @@ export type Routes = {
|
|
|
31141
31164
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
31142
31165
|
page_cursor?: (string | undefined) | null;
|
|
31143
31166
|
/** */
|
|
31144
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
31167
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
31145
31168
|
/** */
|
|
31146
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
31169
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
31147
31170
|
/**
|
|
31148
31171
|
* @deprecated Use `space_id`.*/
|
|
31149
31172
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -31536,6 +31559,7 @@ export type Routes = {
|
|
|
31536
31559
|
can_simulate_connection?: boolean | undefined;
|
|
31537
31560
|
can_simulate_disconnection?: boolean | undefined;
|
|
31538
31561
|
can_unlock_with_code?: boolean | undefined;
|
|
31562
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
31539
31563
|
}[];
|
|
31540
31564
|
};
|
|
31541
31565
|
};
|
|
@@ -36276,6 +36300,10 @@ export type Routes = {
|
|
|
36276
36300
|
*/
|
|
36277
36301
|
upper_limit_fahrenheit: number | null;
|
|
36278
36302
|
} | undefined) | undefined;
|
|
36303
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
36304
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
36305
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
36306
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
36279
36307
|
});
|
|
36280
36308
|
/** Location information for the device. */
|
|
36281
36309
|
location: {
|
|
@@ -36585,6 +36613,7 @@ export type Routes = {
|
|
|
36585
36613
|
can_simulate_connection?: boolean | undefined;
|
|
36586
36614
|
can_simulate_disconnection?: boolean | undefined;
|
|
36587
36615
|
can_unlock_with_code?: boolean | undefined;
|
|
36616
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
36588
36617
|
};
|
|
36589
36618
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
36590
36619
|
device: {
|
|
@@ -37475,6 +37504,10 @@ export type Routes = {
|
|
|
37475
37504
|
*/
|
|
37476
37505
|
upper_limit_fahrenheit: number | null;
|
|
37477
37506
|
} | undefined) | undefined;
|
|
37507
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
37508
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
37509
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
37510
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
37478
37511
|
});
|
|
37479
37512
|
/** Location information for the device. */
|
|
37480
37513
|
location: {
|
|
@@ -37784,6 +37817,7 @@ export type Routes = {
|
|
|
37784
37817
|
can_simulate_connection?: boolean | undefined;
|
|
37785
37818
|
can_simulate_disconnection?: boolean | undefined;
|
|
37786
37819
|
can_unlock_with_code?: boolean | undefined;
|
|
37820
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
37787
37821
|
};
|
|
37788
37822
|
};
|
|
37789
37823
|
};
|
|
@@ -37821,9 +37855,9 @@ export type Routes = {
|
|
|
37821
37855
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
37822
37856
|
page_cursor?: (string | undefined) | null;
|
|
37823
37857
|
/** */
|
|
37824
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
37858
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
37825
37859
|
/** */
|
|
37826
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
37860
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
37827
37861
|
/**
|
|
37828
37862
|
* @deprecated Use `space_id`.*/
|
|
37829
37863
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -38724,6 +38758,10 @@ export type Routes = {
|
|
|
38724
38758
|
*/
|
|
38725
38759
|
upper_limit_fahrenheit: number | null;
|
|
38726
38760
|
} | undefined) | undefined;
|
|
38761
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
38762
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
38763
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
38764
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
38727
38765
|
});
|
|
38728
38766
|
/** Location information for the device. */
|
|
38729
38767
|
location: {
|
|
@@ -39033,6 +39071,7 @@ export type Routes = {
|
|
|
39033
39071
|
can_simulate_connection?: boolean | undefined;
|
|
39034
39072
|
can_simulate_disconnection?: boolean | undefined;
|
|
39035
39073
|
can_unlock_with_code?: boolean | undefined;
|
|
39074
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
39036
39075
|
}[];
|
|
39037
39076
|
devices: {
|
|
39038
39077
|
/** ID of the device. */
|
|
@@ -39922,6 +39961,10 @@ export type Routes = {
|
|
|
39922
39961
|
*/
|
|
39923
39962
|
upper_limit_fahrenheit: number | null;
|
|
39924
39963
|
} | undefined) | undefined;
|
|
39964
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
39965
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
39966
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
39967
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
39925
39968
|
});
|
|
39926
39969
|
/** Location information for the device. */
|
|
39927
39970
|
location: {
|
|
@@ -40231,6 +40274,7 @@ export type Routes = {
|
|
|
40231
40274
|
can_simulate_connection?: boolean | undefined;
|
|
40232
40275
|
can_simulate_disconnection?: boolean | undefined;
|
|
40233
40276
|
can_unlock_with_code?: boolean | undefined;
|
|
40277
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
40234
40278
|
}[];
|
|
40235
40279
|
};
|
|
40236
40280
|
};
|
|
@@ -45306,9 +45350,9 @@ export type Routes = {
|
|
|
45306
45350
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
45307
45351
|
page_cursor?: (string | undefined) | null;
|
|
45308
45352
|
/** */
|
|
45309
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
45353
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
45310
45354
|
/** */
|
|
45311
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
45355
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
45312
45356
|
/**
|
|
45313
45357
|
* @deprecated Use `space_id`.*/
|
|
45314
45358
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -46209,6 +46253,10 @@ export type Routes = {
|
|
|
46209
46253
|
*/
|
|
46210
46254
|
upper_limit_fahrenheit: number | null;
|
|
46211
46255
|
} | undefined) | undefined;
|
|
46256
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
46257
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
46258
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
46259
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
46212
46260
|
});
|
|
46213
46261
|
/** Location information for the device. */
|
|
46214
46262
|
location: {
|
|
@@ -46518,6 +46566,7 @@ export type Routes = {
|
|
|
46518
46566
|
can_simulate_connection?: boolean | undefined;
|
|
46519
46567
|
can_simulate_disconnection?: boolean | undefined;
|
|
46520
46568
|
can_unlock_with_code?: boolean | undefined;
|
|
46569
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
46521
46570
|
}[];
|
|
46522
46571
|
devices: {
|
|
46523
46572
|
/** ID of the device. */
|
|
@@ -47407,6 +47456,10 @@ export type Routes = {
|
|
|
47407
47456
|
*/
|
|
47408
47457
|
upper_limit_fahrenheit: number | null;
|
|
47409
47458
|
} | undefined) | undefined;
|
|
47459
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
47460
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
47461
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
47462
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
47410
47463
|
});
|
|
47411
47464
|
/** Location information for the device. */
|
|
47412
47465
|
location: {
|
|
@@ -47716,6 +47769,7 @@ export type Routes = {
|
|
|
47716
47769
|
can_simulate_connection?: boolean | undefined;
|
|
47717
47770
|
can_simulate_disconnection?: boolean | undefined;
|
|
47718
47771
|
can_unlock_with_code?: boolean | undefined;
|
|
47772
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
47719
47773
|
}[];
|
|
47720
47774
|
};
|
|
47721
47775
|
};
|
|
@@ -53929,6 +53983,10 @@ export type Routes = {
|
|
|
53929
53983
|
*/
|
|
53930
53984
|
upper_limit_fahrenheit: number | null;
|
|
53931
53985
|
} | undefined) | undefined;
|
|
53986
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
53987
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
53988
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
53989
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
53932
53990
|
});
|
|
53933
53991
|
/** Location information for the device. */
|
|
53934
53992
|
location: {
|
|
@@ -54238,6 +54296,7 @@ export type Routes = {
|
|
|
54238
54296
|
can_simulate_connection?: boolean | undefined;
|
|
54239
54297
|
can_simulate_disconnection?: boolean | undefined;
|
|
54240
54298
|
can_unlock_with_code?: boolean | undefined;
|
|
54299
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
54241
54300
|
}[] | undefined;
|
|
54242
54301
|
acs_entrances?: {
|
|
54243
54302
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -59503,6 +59562,10 @@ export type Routes = {
|
|
|
59503
59562
|
*/
|
|
59504
59563
|
upper_limit_fahrenheit: number | null;
|
|
59505
59564
|
} | undefined) | undefined;
|
|
59565
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
59566
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
59567
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
59568
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
59506
59569
|
});
|
|
59507
59570
|
/** Location information for the device. */
|
|
59508
59571
|
location: {
|
|
@@ -59812,6 +59875,7 @@ export type Routes = {
|
|
|
59812
59875
|
can_simulate_connection?: boolean | undefined;
|
|
59813
59876
|
can_simulate_disconnection?: boolean | undefined;
|
|
59814
59877
|
can_unlock_with_code?: boolean | undefined;
|
|
59878
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
59815
59879
|
};
|
|
59816
59880
|
};
|
|
59817
59881
|
};
|
|
@@ -62381,9 +62445,9 @@ export type Routes = {
|
|
|
62381
62445
|
/** Identifies the specific page of results to return, obtained from the previous page's `next_page_cursor`. */
|
|
62382
62446
|
page_cursor?: (string | undefined) | null;
|
|
62383
62447
|
/** */
|
|
62384
|
-
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
62448
|
+
include_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
62385
62449
|
/** */
|
|
62386
|
-
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code')[] | undefined;
|
|
62450
|
+
exclude_if?: ('can_remotely_unlock' | 'can_remotely_lock' | 'can_program_offline_access_codes' | 'can_program_online_access_codes' | 'can_hvac_heat' | 'can_hvac_cool' | 'can_hvac_heat_cool' | 'can_turn_off_hvac' | 'can_simulate_removal' | 'can_simulate_connection' | 'can_simulate_disconnection' | 'can_unlock_with_code' | 'can_run_thermostat_programs')[] | undefined;
|
|
62387
62451
|
/**
|
|
62388
62452
|
* @deprecated Use `space_id`.*/
|
|
62389
62453
|
unstable_location_id?: (string | null) | undefined;
|
|
@@ -63284,6 +63348,10 @@ export type Routes = {
|
|
|
63284
63348
|
*/
|
|
63285
63349
|
upper_limit_fahrenheit: number | null;
|
|
63286
63350
|
} | undefined) | undefined;
|
|
63351
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
63352
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
63353
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
63354
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
63287
63355
|
});
|
|
63288
63356
|
/** Location information for the device. */
|
|
63289
63357
|
location: {
|
|
@@ -63593,6 +63661,7 @@ export type Routes = {
|
|
|
63593
63661
|
can_simulate_connection?: boolean | undefined;
|
|
63594
63662
|
can_simulate_disconnection?: boolean | undefined;
|
|
63595
63663
|
can_unlock_with_code?: boolean | undefined;
|
|
63664
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
63596
63665
|
}[];
|
|
63597
63666
|
devices: {
|
|
63598
63667
|
/** ID of the device. */
|
|
@@ -64482,6 +64551,10 @@ export type Routes = {
|
|
|
64482
64551
|
*/
|
|
64483
64552
|
upper_limit_fahrenheit: number | null;
|
|
64484
64553
|
} | undefined) | undefined;
|
|
64554
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
64555
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
64556
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
64557
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
64485
64558
|
});
|
|
64486
64559
|
/** Location information for the device. */
|
|
64487
64560
|
location: {
|
|
@@ -64791,6 +64864,7 @@ export type Routes = {
|
|
|
64791
64864
|
can_simulate_connection?: boolean | undefined;
|
|
64792
64865
|
can_simulate_disconnection?: boolean | undefined;
|
|
64793
64866
|
can_unlock_with_code?: boolean | undefined;
|
|
64867
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
64794
64868
|
}[];
|
|
64795
64869
|
};
|
|
64796
64870
|
};
|
|
@@ -72138,6 +72212,10 @@ export type Routes = {
|
|
|
72138
72212
|
*/
|
|
72139
72213
|
upper_limit_fahrenheit: number | null;
|
|
72140
72214
|
} | undefined) | undefined;
|
|
72215
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
72216
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
72217
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
72218
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
72141
72219
|
});
|
|
72142
72220
|
/** Location information for the device. */
|
|
72143
72221
|
location: {
|
|
@@ -72447,6 +72525,7 @@ export type Routes = {
|
|
|
72447
72525
|
can_simulate_connection?: boolean | undefined;
|
|
72448
72526
|
can_simulate_disconnection?: boolean | undefined;
|
|
72449
72527
|
can_unlock_with_code?: boolean | undefined;
|
|
72528
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
72450
72529
|
}[];
|
|
72451
72530
|
/**
|
|
72452
72531
|
* @deprecated Use devices.*/
|
|
@@ -73338,6 +73417,10 @@ export type Routes = {
|
|
|
73338
73417
|
*/
|
|
73339
73418
|
upper_limit_fahrenheit: number | null;
|
|
73340
73419
|
} | undefined) | undefined;
|
|
73420
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
73421
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
73422
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
73423
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
73341
73424
|
});
|
|
73342
73425
|
/** Location information for the device. */
|
|
73343
73426
|
location: {
|
|
@@ -73647,6 +73730,7 @@ export type Routes = {
|
|
|
73647
73730
|
can_simulate_connection?: boolean | undefined;
|
|
73648
73731
|
can_simulate_disconnection?: boolean | undefined;
|
|
73649
73732
|
can_unlock_with_code?: boolean | undefined;
|
|
73733
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
73650
73734
|
}[];
|
|
73651
73735
|
};
|
|
73652
73736
|
};
|
|
@@ -75209,6 +75293,10 @@ export type Routes = {
|
|
|
75209
75293
|
*/
|
|
75210
75294
|
upper_limit_fahrenheit: number | null;
|
|
75211
75295
|
} | undefined) | undefined;
|
|
75296
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
75297
|
+
thermostat_daily_program_period_precision_minutes?: (number | undefined) | undefined;
|
|
75298
|
+
/** Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4. */
|
|
75299
|
+
max_thermostat_daily_program_periods_per_day?: (number | undefined) | undefined;
|
|
75212
75300
|
});
|
|
75213
75301
|
/** Location information for the device. */
|
|
75214
75302
|
location: {
|
|
@@ -75518,6 +75606,7 @@ export type Routes = {
|
|
|
75518
75606
|
can_simulate_connection?: boolean | undefined;
|
|
75519
75607
|
can_simulate_disconnection?: boolean | undefined;
|
|
75520
75608
|
can_unlock_with_code?: boolean | undefined;
|
|
75609
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
75521
75610
|
}[] | undefined;
|
|
75522
75611
|
acs_entrances?: {
|
|
75523
75612
|
/** ID of the [access control system](https://docs.seam.co/latest/capability-guides/access-systems) that contains the [entrance](https://docs.seam.co/latest/capability-guides/access-systems/retrieving-entrance-details). */
|
|
@@ -77896,6 +77985,7 @@ export type Routes = {
|
|
|
77896
77985
|
can_simulate_connection?: boolean | undefined;
|
|
77897
77986
|
can_simulate_disconnection?: boolean | undefined;
|
|
77898
77987
|
can_unlock_with_code?: boolean | undefined;
|
|
77988
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
77899
77989
|
}[] | undefined;
|
|
77900
77990
|
connect_webviews?: {
|
|
77901
77991
|
/** ID of the Connect Webview. */
|
package/package.json
CHANGED
|
@@ -222,5 +222,19 @@ export const thermostat_capability_properties = z
|
|
|
222
222
|
---
|
|
223
223
|
Current [temperature threshold](https://docs.seam.co/latest/capability-guides/thermostats/setting-and-monitoring-temperature-thresholds) set for the thermostat.
|
|
224
224
|
`),
|
|
225
|
+
thermostat_daily_program_period_precision_minutes: z.number().optional()
|
|
226
|
+
.describe(`
|
|
227
|
+
---
|
|
228
|
+
property_group_key: thermostats
|
|
229
|
+
---
|
|
230
|
+
Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.
|
|
231
|
+
`),
|
|
232
|
+
max_thermostat_daily_program_periods_per_day: z.number().optional()
|
|
233
|
+
.describe(`
|
|
234
|
+
---
|
|
235
|
+
property_group_key: thermostats
|
|
236
|
+
---
|
|
237
|
+
Maximum number of periods that the thermostat can support per day. For example, if the thermostat supports 4 periods per day, this value is 4.
|
|
238
|
+
`),
|
|
225
239
|
})
|
|
226
240
|
.partial()
|