@seamapi/types 1.579.0 → 1.581.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.
Files changed (27) hide show
  1. package/dist/connect.cjs +89 -5
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +303 -147
  4. package/dist/index.cjs +89 -5
  5. package/dist/index.cjs.map +1 -1
  6. package/lib/seam/connect/models/batch.d.ts +278 -167
  7. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +15 -15
  8. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +15 -15
  9. package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
  10. package/lib/seam/connect/models/devices/device.d.ts +39 -21
  11. package/lib/seam/connect/models/devices/device.js +3 -0
  12. package/lib/seam/connect/models/devices/device.js.map +1 -1
  13. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +27 -15
  14. package/lib/seam/connect/models/events/devices.d.ts +2 -2
  15. package/lib/seam/connect/models/events/seam-event.d.ts +1 -1
  16. package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
  17. package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
  18. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  19. package/lib/seam/connect/openapi.d.ts +30 -3
  20. package/lib/seam/connect/openapi.js +85 -4
  21. package/lib/seam/connect/openapi.js.map +1 -1
  22. package/lib/seam/connect/route-types.d.ts +127 -61
  23. package/package.json +1 -1
  24. package/src/lib/seam/connect/models/devices/device.ts +3 -0
  25. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
  26. package/src/lib/seam/connect/openapi.ts +85 -4
  27. package/src/lib/seam/connect/route-types.ts +231 -51
@@ -12282,7 +12282,9 @@ export type Routes = {
12282
12282
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
12283
12283
  can_delete?: boolean | undefined
12284
12284
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
12285
- can_program?: boolean | undefined
12285
+ can_use_with_thermostat_daily_programs?:
12286
+ | boolean
12287
+ | undefined
12286
12288
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
12287
12289
  name?: ((string | null) | undefined) | undefined
12288
12290
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -12362,7 +12364,9 @@ export type Routes = {
12362
12364
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
12363
12365
  can_delete?: boolean | undefined
12364
12366
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
12365
- can_program?: boolean | undefined
12367
+ can_use_with_thermostat_daily_programs?:
12368
+ | boolean
12369
+ | undefined
12366
12370
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
12367
12371
  name?: ((string | null) | undefined) | undefined
12368
12372
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -12441,7 +12445,7 @@ export type Routes = {
12441
12445
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
12442
12446
  can_delete: boolean
12443
12447
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
12444
- can_program: boolean
12448
+ can_use_with_thermostat_daily_programs: boolean
12445
12449
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
12446
12450
  name?: (string | null) | undefined
12447
12451
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -12966,6 +12970,15 @@ export type Routes = {
12966
12970
  can_simulate_disconnection?: boolean | undefined
12967
12971
  can_unlock_with_code?: boolean | undefined
12968
12972
  can_run_thermostat_programs?: boolean | undefined
12973
+ can_program_thermostat_programs_as_weekday_weekend?:
12974
+ | boolean
12975
+ | undefined
12976
+ can_program_thermostat_programs_as_different_each_day?:
12977
+ | boolean
12978
+ | undefined
12979
+ can_program_thermostat_programs_as_same_each_day?:
12980
+ | boolean
12981
+ | undefined
12969
12982
  can_simulate_hub_connection?: boolean | undefined
12970
12983
  can_simulate_hub_disconnection?: boolean | undefined
12971
12984
  can_simulate_paid_subscription?: boolean | undefined
@@ -16130,7 +16143,9 @@ export type Routes = {
16130
16143
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
16131
16144
  can_delete?: boolean | undefined
16132
16145
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
16133
- can_program?: boolean | undefined
16146
+ can_use_with_thermostat_daily_programs?:
16147
+ | boolean
16148
+ | undefined
16134
16149
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
16135
16150
  name?: ((string | null) | undefined) | undefined
16136
16151
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -16210,7 +16225,9 @@ export type Routes = {
16210
16225
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
16211
16226
  can_delete?: boolean | undefined
16212
16227
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
16213
- can_program?: boolean | undefined
16228
+ can_use_with_thermostat_daily_programs?:
16229
+ | boolean
16230
+ | undefined
16214
16231
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
16215
16232
  name?: ((string | null) | undefined) | undefined
16216
16233
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -16289,7 +16306,7 @@ export type Routes = {
16289
16306
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
16290
16307
  can_delete: boolean
16291
16308
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
16292
- can_program: boolean
16309
+ can_use_with_thermostat_daily_programs: boolean
16293
16310
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
16294
16311
  name?: (string | null) | undefined
16295
16312
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -16814,6 +16831,15 @@ export type Routes = {
16814
16831
  can_simulate_disconnection?: boolean | undefined
16815
16832
  can_unlock_with_code?: boolean | undefined
16816
16833
  can_run_thermostat_programs?: boolean | undefined
16834
+ can_program_thermostat_programs_as_weekday_weekend?:
16835
+ | boolean
16836
+ | undefined
16837
+ can_program_thermostat_programs_as_different_each_day?:
16838
+ | boolean
16839
+ | undefined
16840
+ can_program_thermostat_programs_as_same_each_day?:
16841
+ | boolean
16842
+ | undefined
16817
16843
  can_simulate_hub_connection?: boolean | undefined
16818
16844
  can_simulate_hub_disconnection?: boolean | undefined
16819
16845
  can_simulate_paid_subscription?: boolean | undefined
@@ -20029,6 +20055,15 @@ export type Routes = {
20029
20055
  can_simulate_disconnection?: boolean | undefined
20030
20056
  can_unlock_with_code?: boolean | undefined
20031
20057
  can_run_thermostat_programs?: boolean | undefined
20058
+ can_program_thermostat_programs_as_weekday_weekend?:
20059
+ | boolean
20060
+ | undefined
20061
+ can_program_thermostat_programs_as_different_each_day?:
20062
+ | boolean
20063
+ | undefined
20064
+ can_program_thermostat_programs_as_same_each_day?:
20065
+ | boolean
20066
+ | undefined
20032
20067
  can_simulate_hub_connection?: boolean | undefined
20033
20068
  can_simulate_hub_disconnection?: boolean | undefined
20034
20069
  can_simulate_paid_subscription?: boolean | undefined
@@ -37829,7 +37864,7 @@ export type Routes = {
37829
37864
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
37830
37865
  can_delete?: boolean | undefined
37831
37866
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
37832
- can_program?: boolean | undefined
37867
+ can_use_with_thermostat_daily_programs?: boolean | undefined
37833
37868
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
37834
37869
  name?: ((string | null) | undefined) | undefined
37835
37870
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -37905,7 +37940,7 @@ export type Routes = {
37905
37940
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
37906
37941
  can_delete?: boolean | undefined
37907
37942
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
37908
- can_program?: boolean | undefined
37943
+ can_use_with_thermostat_daily_programs?: boolean | undefined
37909
37944
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
37910
37945
  name?: ((string | null) | undefined) | undefined
37911
37946
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -37980,7 +38015,7 @@ export type Routes = {
37980
38015
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
37981
38016
  can_delete: boolean
37982
38017
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
37983
- can_program: boolean
38018
+ can_use_with_thermostat_daily_programs: boolean
37984
38019
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
37985
38020
  name?: (string | null) | undefined
37986
38021
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -38501,6 +38536,11 @@ export type Routes = {
38501
38536
  can_simulate_disconnection?: boolean | undefined
38502
38537
  can_unlock_with_code?: boolean | undefined
38503
38538
  can_run_thermostat_programs?: boolean | undefined
38539
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
38540
+ can_program_thermostat_programs_as_different_each_day?:
38541
+ | boolean
38542
+ | undefined
38543
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
38504
38544
  can_simulate_hub_connection?: boolean | undefined
38505
38545
  can_simulate_hub_disconnection?: boolean | undefined
38506
38546
  can_simulate_paid_subscription?: boolean | undefined
@@ -38688,6 +38728,9 @@ export type Routes = {
38688
38728
  | 'can_simulate_disconnection'
38689
38729
  | 'can_unlock_with_code'
38690
38730
  | 'can_run_thermostat_programs'
38731
+ | 'can_program_thermostat_programs_as_weekday_weekend'
38732
+ | 'can_program_thermostat_programs_as_different_each_day'
38733
+ | 'can_program_thermostat_programs_as_same_each_day'
38691
38734
  | 'can_simulate_hub_connection'
38692
38735
  | 'can_simulate_hub_disconnection'
38693
38736
  | 'can_simulate_paid_subscription'
@@ -38709,6 +38752,9 @@ export type Routes = {
38709
38752
  | 'can_simulate_disconnection'
38710
38753
  | 'can_unlock_with_code'
38711
38754
  | 'can_run_thermostat_programs'
38755
+ | 'can_program_thermostat_programs_as_weekday_weekend'
38756
+ | 'can_program_thermostat_programs_as_different_each_day'
38757
+ | 'can_program_thermostat_programs_as_same_each_day'
38712
38758
  | 'can_simulate_hub_connection'
38713
38759
  | 'can_simulate_hub_disconnection'
38714
38760
  | 'can_simulate_paid_subscription'
@@ -39556,7 +39602,7 @@ export type Routes = {
39556
39602
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
39557
39603
  can_delete?: boolean | undefined
39558
39604
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
39559
- can_program?: boolean | undefined
39605
+ can_use_with_thermostat_daily_programs?: boolean | undefined
39560
39606
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
39561
39607
  name?: ((string | null) | undefined) | undefined
39562
39608
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -39632,7 +39678,7 @@ export type Routes = {
39632
39678
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
39633
39679
  can_delete?: boolean | undefined
39634
39680
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
39635
- can_program?: boolean | undefined
39681
+ can_use_with_thermostat_daily_programs?: boolean | undefined
39636
39682
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
39637
39683
  name?: ((string | null) | undefined) | undefined
39638
39684
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -39707,7 +39753,7 @@ export type Routes = {
39707
39753
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
39708
39754
  can_delete: boolean
39709
39755
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
39710
- can_program: boolean
39756
+ can_use_with_thermostat_daily_programs: boolean
39711
39757
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
39712
39758
  name?: (string | null) | undefined
39713
39759
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -40228,6 +40274,11 @@ export type Routes = {
40228
40274
  can_simulate_disconnection?: boolean | undefined
40229
40275
  can_unlock_with_code?: boolean | undefined
40230
40276
  can_run_thermostat_programs?: boolean | undefined
40277
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
40278
+ can_program_thermostat_programs_as_different_each_day?:
40279
+ | boolean
40280
+ | undefined
40281
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
40231
40282
  can_simulate_hub_connection?: boolean | undefined
40232
40283
  can_simulate_hub_disconnection?: boolean | undefined
40233
40284
  can_simulate_paid_subscription?: boolean | undefined
@@ -40335,6 +40386,11 @@ export type Routes = {
40335
40386
  can_simulate_disconnection?: boolean | undefined
40336
40387
  can_unlock_with_code?: boolean | undefined
40337
40388
  can_run_thermostat_programs?: boolean | undefined
40389
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
40390
+ can_program_thermostat_programs_as_different_each_day?:
40391
+ | boolean
40392
+ | undefined
40393
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
40338
40394
  can_simulate_hub_connection?: boolean | undefined
40339
40395
  can_simulate_hub_disconnection?: boolean | undefined
40340
40396
  can_simulate_paid_subscription?: boolean | undefined
@@ -40890,6 +40946,11 @@ export type Routes = {
40890
40946
  can_simulate_disconnection?: boolean | undefined
40891
40947
  can_unlock_with_code?: boolean | undefined
40892
40948
  can_run_thermostat_programs?: boolean | undefined
40949
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
40950
+ can_program_thermostat_programs_as_different_each_day?:
40951
+ | boolean
40952
+ | undefined
40953
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
40893
40954
  can_simulate_hub_connection?: boolean | undefined
40894
40955
  can_simulate_hub_disconnection?: boolean | undefined
40895
40956
  can_simulate_paid_subscription?: boolean | undefined
@@ -41075,6 +41136,9 @@ export type Routes = {
41075
41136
  | 'can_simulate_disconnection'
41076
41137
  | 'can_unlock_with_code'
41077
41138
  | 'can_run_thermostat_programs'
41139
+ | 'can_program_thermostat_programs_as_weekday_weekend'
41140
+ | 'can_program_thermostat_programs_as_different_each_day'
41141
+ | 'can_program_thermostat_programs_as_same_each_day'
41078
41142
  | 'can_simulate_hub_connection'
41079
41143
  | 'can_simulate_hub_disconnection'
41080
41144
  | 'can_simulate_paid_subscription'
@@ -41096,6 +41160,9 @@ export type Routes = {
41096
41160
  | 'can_simulate_disconnection'
41097
41161
  | 'can_unlock_with_code'
41098
41162
  | 'can_run_thermostat_programs'
41163
+ | 'can_program_thermostat_programs_as_weekday_weekend'
41164
+ | 'can_program_thermostat_programs_as_different_each_day'
41165
+ | 'can_program_thermostat_programs_as_same_each_day'
41099
41166
  | 'can_simulate_hub_connection'
41100
41167
  | 'can_simulate_hub_disconnection'
41101
41168
  | 'can_simulate_paid_subscription'
@@ -41576,6 +41643,11 @@ export type Routes = {
41576
41643
  can_simulate_disconnection?: boolean | undefined
41577
41644
  can_unlock_with_code?: boolean | undefined
41578
41645
  can_run_thermostat_programs?: boolean | undefined
41646
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
41647
+ can_program_thermostat_programs_as_different_each_day?:
41648
+ | boolean
41649
+ | undefined
41650
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
41579
41651
  can_simulate_hub_connection?: boolean | undefined
41580
41652
  can_simulate_hub_disconnection?: boolean | undefined
41581
41653
  can_simulate_paid_subscription?: boolean | undefined
@@ -47301,7 +47373,7 @@ export type Routes = {
47301
47373
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
47302
47374
  can_delete?: boolean | undefined
47303
47375
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
47304
- can_program?: boolean | undefined
47376
+ can_use_with_thermostat_daily_programs?: boolean | undefined
47305
47377
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
47306
47378
  name?: ((string | null) | undefined) | undefined
47307
47379
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -47377,7 +47449,7 @@ export type Routes = {
47377
47449
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
47378
47450
  can_delete?: boolean | undefined
47379
47451
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
47380
- can_program?: boolean | undefined
47452
+ can_use_with_thermostat_daily_programs?: boolean | undefined
47381
47453
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
47382
47454
  name?: ((string | null) | undefined) | undefined
47383
47455
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -47452,7 +47524,7 @@ export type Routes = {
47452
47524
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
47453
47525
  can_delete: boolean
47454
47526
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
47455
- can_program: boolean
47527
+ can_use_with_thermostat_daily_programs: boolean
47456
47528
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
47457
47529
  name?: (string | null) | undefined
47458
47530
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -47973,6 +48045,11 @@ export type Routes = {
47973
48045
  can_simulate_disconnection?: boolean | undefined
47974
48046
  can_unlock_with_code?: boolean | undefined
47975
48047
  can_run_thermostat_programs?: boolean | undefined
48048
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
48049
+ can_program_thermostat_programs_as_different_each_day?:
48050
+ | boolean
48051
+ | undefined
48052
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
47976
48053
  can_simulate_hub_connection?: boolean | undefined
47977
48054
  can_simulate_hub_disconnection?: boolean | undefined
47978
48055
  can_simulate_paid_subscription?: boolean | undefined
@@ -48810,7 +48887,7 @@ export type Routes = {
48810
48887
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
48811
48888
  can_delete?: boolean | undefined
48812
48889
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
48813
- can_program?: boolean | undefined
48890
+ can_use_with_thermostat_daily_programs?: boolean | undefined
48814
48891
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
48815
48892
  name?: ((string | null) | undefined) | undefined
48816
48893
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -48886,7 +48963,7 @@ export type Routes = {
48886
48963
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
48887
48964
  can_delete?: boolean | undefined
48888
48965
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
48889
- can_program?: boolean | undefined
48966
+ can_use_with_thermostat_daily_programs?: boolean | undefined
48890
48967
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
48891
48968
  name?: ((string | null) | undefined) | undefined
48892
48969
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -48961,7 +49038,7 @@ export type Routes = {
48961
49038
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
48962
49039
  can_delete: boolean
48963
49040
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
48964
- can_program: boolean
49041
+ can_use_with_thermostat_daily_programs: boolean
48965
49042
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
48966
49043
  name?: (string | null) | undefined
48967
49044
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -49482,6 +49559,11 @@ export type Routes = {
49482
49559
  can_simulate_disconnection?: boolean | undefined
49483
49560
  can_unlock_with_code?: boolean | undefined
49484
49561
  can_run_thermostat_programs?: boolean | undefined
49562
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
49563
+ can_program_thermostat_programs_as_different_each_day?:
49564
+ | boolean
49565
+ | undefined
49566
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
49485
49567
  can_simulate_hub_connection?: boolean | undefined
49486
49568
  can_simulate_hub_disconnection?: boolean | undefined
49487
49569
  can_simulate_paid_subscription?: boolean | undefined
@@ -49631,6 +49713,9 @@ export type Routes = {
49631
49713
  | 'can_simulate_disconnection'
49632
49714
  | 'can_unlock_with_code'
49633
49715
  | 'can_run_thermostat_programs'
49716
+ | 'can_program_thermostat_programs_as_weekday_weekend'
49717
+ | 'can_program_thermostat_programs_as_different_each_day'
49718
+ | 'can_program_thermostat_programs_as_same_each_day'
49634
49719
  | 'can_simulate_hub_connection'
49635
49720
  | 'can_simulate_hub_disconnection'
49636
49721
  | 'can_simulate_paid_subscription'
@@ -49652,6 +49737,9 @@ export type Routes = {
49652
49737
  | 'can_simulate_disconnection'
49653
49738
  | 'can_unlock_with_code'
49654
49739
  | 'can_run_thermostat_programs'
49740
+ | 'can_program_thermostat_programs_as_weekday_weekend'
49741
+ | 'can_program_thermostat_programs_as_different_each_day'
49742
+ | 'can_program_thermostat_programs_as_same_each_day'
49655
49743
  | 'can_simulate_hub_connection'
49656
49744
  | 'can_simulate_hub_disconnection'
49657
49745
  | 'can_simulate_paid_subscription'
@@ -50499,7 +50587,7 @@ export type Routes = {
50499
50587
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
50500
50588
  can_delete?: boolean | undefined
50501
50589
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
50502
- can_program?: boolean | undefined
50590
+ can_use_with_thermostat_daily_programs?: boolean | undefined
50503
50591
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
50504
50592
  name?: ((string | null) | undefined) | undefined
50505
50593
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -50575,7 +50663,7 @@ export type Routes = {
50575
50663
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
50576
50664
  can_delete?: boolean | undefined
50577
50665
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
50578
- can_program?: boolean | undefined
50666
+ can_use_with_thermostat_daily_programs?: boolean | undefined
50579
50667
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
50580
50668
  name?: ((string | null) | undefined) | undefined
50581
50669
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -50650,7 +50738,7 @@ export type Routes = {
50650
50738
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
50651
50739
  can_delete: boolean
50652
50740
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
50653
- can_program: boolean
50741
+ can_use_with_thermostat_daily_programs: boolean
50654
50742
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
50655
50743
  name?: (string | null) | undefined
50656
50744
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -51171,6 +51259,11 @@ export type Routes = {
51171
51259
  can_simulate_disconnection?: boolean | undefined
51172
51260
  can_unlock_with_code?: boolean | undefined
51173
51261
  can_run_thermostat_programs?: boolean | undefined
51262
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
51263
+ can_program_thermostat_programs_as_different_each_day?:
51264
+ | boolean
51265
+ | undefined
51266
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
51174
51267
  can_simulate_hub_connection?: boolean | undefined
51175
51268
  can_simulate_hub_disconnection?: boolean | undefined
51176
51269
  can_simulate_paid_subscription?: boolean | undefined
@@ -52007,7 +52100,7 @@ export type Routes = {
52007
52100
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
52008
52101
  can_delete?: boolean | undefined
52009
52102
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
52010
- can_program?: boolean | undefined
52103
+ can_use_with_thermostat_daily_programs?: boolean | undefined
52011
52104
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
52012
52105
  name?: ((string | null) | undefined) | undefined
52013
52106
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -52083,7 +52176,7 @@ export type Routes = {
52083
52176
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
52084
52177
  can_delete?: boolean | undefined
52085
52178
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
52086
- can_program?: boolean | undefined
52179
+ can_use_with_thermostat_daily_programs?: boolean | undefined
52087
52180
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
52088
52181
  name?: ((string | null) | undefined) | undefined
52089
52182
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -52158,7 +52251,7 @@ export type Routes = {
52158
52251
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
52159
52252
  can_delete: boolean
52160
52253
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
52161
- can_program: boolean
52254
+ can_use_with_thermostat_daily_programs: boolean
52162
52255
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
52163
52256
  name?: (string | null) | undefined
52164
52257
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -52679,6 +52772,11 @@ export type Routes = {
52679
52772
  can_simulate_disconnection?: boolean | undefined
52680
52773
  can_unlock_with_code?: boolean | undefined
52681
52774
  can_run_thermostat_programs?: boolean | undefined
52775
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
52776
+ can_program_thermostat_programs_as_different_each_day?:
52777
+ | boolean
52778
+ | undefined
52779
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
52682
52780
  can_simulate_hub_connection?: boolean | undefined
52683
52781
  can_simulate_hub_disconnection?: boolean | undefined
52684
52782
  can_simulate_paid_subscription?: boolean | undefined
@@ -58531,6 +58629,9 @@ export type Routes = {
58531
58629
  | 'can_simulate_disconnection'
58532
58630
  | 'can_unlock_with_code'
58533
58631
  | 'can_run_thermostat_programs'
58632
+ | 'can_program_thermostat_programs_as_weekday_weekend'
58633
+ | 'can_program_thermostat_programs_as_different_each_day'
58634
+ | 'can_program_thermostat_programs_as_same_each_day'
58534
58635
  | 'can_simulate_hub_connection'
58535
58636
  | 'can_simulate_hub_disconnection'
58536
58637
  | 'can_simulate_paid_subscription'
@@ -58552,6 +58653,9 @@ export type Routes = {
58552
58653
  | 'can_simulate_disconnection'
58553
58654
  | 'can_unlock_with_code'
58554
58655
  | 'can_run_thermostat_programs'
58656
+ | 'can_program_thermostat_programs_as_weekday_weekend'
58657
+ | 'can_program_thermostat_programs_as_different_each_day'
58658
+ | 'can_program_thermostat_programs_as_same_each_day'
58555
58659
  | 'can_simulate_hub_connection'
58556
58660
  | 'can_simulate_hub_disconnection'
58557
58661
  | 'can_simulate_paid_subscription'
@@ -59399,7 +59503,7 @@ export type Routes = {
59399
59503
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
59400
59504
  can_delete?: boolean | undefined
59401
59505
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
59402
- can_program?: boolean | undefined
59506
+ can_use_with_thermostat_daily_programs?: boolean | undefined
59403
59507
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
59404
59508
  name?: ((string | null) | undefined) | undefined
59405
59509
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -59475,7 +59579,7 @@ export type Routes = {
59475
59579
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
59476
59580
  can_delete?: boolean | undefined
59477
59581
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
59478
- can_program?: boolean | undefined
59582
+ can_use_with_thermostat_daily_programs?: boolean | undefined
59479
59583
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
59480
59584
  name?: ((string | null) | undefined) | undefined
59481
59585
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -59550,7 +59654,7 @@ export type Routes = {
59550
59654
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
59551
59655
  can_delete: boolean
59552
59656
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
59553
- can_program: boolean
59657
+ can_use_with_thermostat_daily_programs: boolean
59554
59658
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
59555
59659
  name?: (string | null) | undefined
59556
59660
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -60071,6 +60175,11 @@ export type Routes = {
60071
60175
  can_simulate_disconnection?: boolean | undefined
60072
60176
  can_unlock_with_code?: boolean | undefined
60073
60177
  can_run_thermostat_programs?: boolean | undefined
60178
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
60179
+ can_program_thermostat_programs_as_different_each_day?:
60180
+ | boolean
60181
+ | undefined
60182
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
60074
60183
  can_simulate_hub_connection?: boolean | undefined
60075
60184
  can_simulate_hub_disconnection?: boolean | undefined
60076
60185
  can_simulate_paid_subscription?: boolean | undefined
@@ -60907,7 +61016,7 @@ export type Routes = {
60907
61016
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
60908
61017
  can_delete?: boolean | undefined
60909
61018
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
60910
- can_program?: boolean | undefined
61019
+ can_use_with_thermostat_daily_programs?: boolean | undefined
60911
61020
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
60912
61021
  name?: ((string | null) | undefined) | undefined
60913
61022
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -60983,7 +61092,7 @@ export type Routes = {
60983
61092
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
60984
61093
  can_delete?: boolean | undefined
60985
61094
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
60986
- can_program?: boolean | undefined
61095
+ can_use_with_thermostat_daily_programs?: boolean | undefined
60987
61096
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
60988
61097
  name?: ((string | null) | undefined) | undefined
60989
61098
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -61058,7 +61167,7 @@ export type Routes = {
61058
61167
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
61059
61168
  can_delete: boolean
61060
61169
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
61061
- can_program: boolean
61170
+ can_use_with_thermostat_daily_programs: boolean
61062
61171
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
61063
61172
  name?: (string | null) | undefined
61064
61173
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -61579,6 +61688,11 @@ export type Routes = {
61579
61688
  can_simulate_disconnection?: boolean | undefined
61580
61689
  can_unlock_with_code?: boolean | undefined
61581
61690
  can_run_thermostat_programs?: boolean | undefined
61691
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
61692
+ can_program_thermostat_programs_as_different_each_day?:
61693
+ | boolean
61694
+ | undefined
61695
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
61582
61696
  can_simulate_hub_connection?: boolean | undefined
61583
61697
  can_simulate_hub_disconnection?: boolean | undefined
61584
61698
  can_simulate_paid_subscription?: boolean | undefined
@@ -71260,7 +71374,9 @@ export type Routes = {
71260
71374
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
71261
71375
  can_delete?: boolean | undefined
71262
71376
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
71263
- can_program?: boolean | undefined
71377
+ can_use_with_thermostat_daily_programs?:
71378
+ | boolean
71379
+ | undefined
71264
71380
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
71265
71381
  name?: ((string | null) | undefined) | undefined
71266
71382
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -71340,7 +71456,9 @@ export type Routes = {
71340
71456
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
71341
71457
  can_delete?: boolean | undefined
71342
71458
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
71343
- can_program?: boolean | undefined
71459
+ can_use_with_thermostat_daily_programs?:
71460
+ | boolean
71461
+ | undefined
71344
71462
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
71345
71463
  name?: ((string | null) | undefined) | undefined
71346
71464
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -71419,7 +71537,7 @@ export type Routes = {
71419
71537
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
71420
71538
  can_delete: boolean
71421
71539
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
71422
- can_program: boolean
71540
+ can_use_with_thermostat_daily_programs: boolean
71423
71541
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
71424
71542
  name?: (string | null) | undefined
71425
71543
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -71944,6 +72062,15 @@ export type Routes = {
71944
72062
  can_simulate_disconnection?: boolean | undefined
71945
72063
  can_unlock_with_code?: boolean | undefined
71946
72064
  can_run_thermostat_programs?: boolean | undefined
72065
+ can_program_thermostat_programs_as_weekday_weekend?:
72066
+ | boolean
72067
+ | undefined
72068
+ can_program_thermostat_programs_as_different_each_day?:
72069
+ | boolean
72070
+ | undefined
72071
+ can_program_thermostat_programs_as_same_each_day?:
72072
+ | boolean
72073
+ | undefined
71947
72074
  can_simulate_hub_connection?: boolean | undefined
71948
72075
  can_simulate_hub_disconnection?: boolean | undefined
71949
72076
  can_simulate_paid_subscription?: boolean | undefined
@@ -77847,7 +77974,7 @@ export type Routes = {
77847
77974
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
77848
77975
  can_delete?: boolean | undefined
77849
77976
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
77850
- can_program?: boolean | undefined
77977
+ can_use_with_thermostat_daily_programs?: boolean | undefined
77851
77978
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
77852
77979
  name?: ((string | null) | undefined) | undefined
77853
77980
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -77923,7 +78050,7 @@ export type Routes = {
77923
78050
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
77924
78051
  can_delete?: boolean | undefined
77925
78052
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
77926
- can_program?: boolean | undefined
78053
+ can_use_with_thermostat_daily_programs?: boolean | undefined
77927
78054
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
77928
78055
  name?: ((string | null) | undefined) | undefined
77929
78056
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -77998,7 +78125,7 @@ export type Routes = {
77998
78125
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
77999
78126
  can_delete: boolean
78000
78127
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
78001
- can_program: boolean
78128
+ can_use_with_thermostat_daily_programs: boolean
78002
78129
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
78003
78130
  name?: (string | null) | undefined
78004
78131
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -78519,6 +78646,11 @@ export type Routes = {
78519
78646
  can_simulate_disconnection?: boolean | undefined
78520
78647
  can_unlock_with_code?: boolean | undefined
78521
78648
  can_run_thermostat_programs?: boolean | undefined
78649
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
78650
+ can_program_thermostat_programs_as_different_each_day?:
78651
+ | boolean
78652
+ | undefined
78653
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
78522
78654
  can_simulate_hub_connection?: boolean | undefined
78523
78655
  can_simulate_hub_disconnection?: boolean | undefined
78524
78656
  can_simulate_paid_subscription?: boolean | undefined
@@ -81514,6 +81646,9 @@ export type Routes = {
81514
81646
  | 'can_simulate_disconnection'
81515
81647
  | 'can_unlock_with_code'
81516
81648
  | 'can_run_thermostat_programs'
81649
+ | 'can_program_thermostat_programs_as_weekday_weekend'
81650
+ | 'can_program_thermostat_programs_as_different_each_day'
81651
+ | 'can_program_thermostat_programs_as_same_each_day'
81517
81652
  | 'can_simulate_hub_connection'
81518
81653
  | 'can_simulate_hub_disconnection'
81519
81654
  | 'can_simulate_paid_subscription'
@@ -81535,6 +81670,9 @@ export type Routes = {
81535
81670
  | 'can_simulate_disconnection'
81536
81671
  | 'can_unlock_with_code'
81537
81672
  | 'can_run_thermostat_programs'
81673
+ | 'can_program_thermostat_programs_as_weekday_weekend'
81674
+ | 'can_program_thermostat_programs_as_different_each_day'
81675
+ | 'can_program_thermostat_programs_as_same_each_day'
81538
81676
  | 'can_simulate_hub_connection'
81539
81677
  | 'can_simulate_hub_disconnection'
81540
81678
  | 'can_simulate_paid_subscription'
@@ -82382,7 +82520,7 @@ export type Routes = {
82382
82520
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
82383
82521
  can_delete?: boolean | undefined
82384
82522
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
82385
- can_program?: boolean | undefined
82523
+ can_use_with_thermostat_daily_programs?: boolean | undefined
82386
82524
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
82387
82525
  name?: ((string | null) | undefined) | undefined
82388
82526
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -82458,7 +82596,7 @@ export type Routes = {
82458
82596
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
82459
82597
  can_delete?: boolean | undefined
82460
82598
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
82461
- can_program?: boolean | undefined
82599
+ can_use_with_thermostat_daily_programs?: boolean | undefined
82462
82600
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
82463
82601
  name?: ((string | null) | undefined) | undefined
82464
82602
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -82533,7 +82671,7 @@ export type Routes = {
82533
82671
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
82534
82672
  can_delete: boolean
82535
82673
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
82536
- can_program: boolean
82674
+ can_use_with_thermostat_daily_programs: boolean
82537
82675
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
82538
82676
  name?: (string | null) | undefined
82539
82677
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -83054,6 +83192,11 @@ export type Routes = {
83054
83192
  can_simulate_disconnection?: boolean | undefined
83055
83193
  can_unlock_with_code?: boolean | undefined
83056
83194
  can_run_thermostat_programs?: boolean | undefined
83195
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
83196
+ can_program_thermostat_programs_as_different_each_day?:
83197
+ | boolean
83198
+ | undefined
83199
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
83057
83200
  can_simulate_hub_connection?: boolean | undefined
83058
83201
  can_simulate_hub_disconnection?: boolean | undefined
83059
83202
  can_simulate_paid_subscription?: boolean | undefined
@@ -83890,7 +84033,7 @@ export type Routes = {
83890
84033
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
83891
84034
  can_delete?: boolean | undefined
83892
84035
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
83893
- can_program?: boolean | undefined
84036
+ can_use_with_thermostat_daily_programs?: boolean | undefined
83894
84037
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
83895
84038
  name?: ((string | null) | undefined) | undefined
83896
84039
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -83966,7 +84109,7 @@ export type Routes = {
83966
84109
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
83967
84110
  can_delete?: boolean | undefined
83968
84111
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
83969
- can_program?: boolean | undefined
84112
+ can_use_with_thermostat_daily_programs?: boolean | undefined
83970
84113
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
83971
84114
  name?: ((string | null) | undefined) | undefined
83972
84115
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -84041,7 +84184,7 @@ export type Routes = {
84041
84184
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
84042
84185
  can_delete: boolean
84043
84186
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
84044
- can_program: boolean
84187
+ can_use_with_thermostat_daily_programs: boolean
84045
84188
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
84046
84189
  name?: (string | null) | undefined
84047
84190
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -84562,6 +84705,11 @@ export type Routes = {
84562
84705
  can_simulate_disconnection?: boolean | undefined
84563
84706
  can_unlock_with_code?: boolean | undefined
84564
84707
  can_run_thermostat_programs?: boolean | undefined
84708
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
84709
+ can_program_thermostat_programs_as_different_each_day?:
84710
+ | boolean
84711
+ | undefined
84712
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
84565
84713
  can_simulate_hub_connection?: boolean | undefined
84566
84714
  can_simulate_hub_disconnection?: boolean | undefined
84567
84715
  can_simulate_paid_subscription?: boolean | undefined
@@ -92149,7 +92297,7 @@ export type Routes = {
92149
92297
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
92150
92298
  can_delete?: boolean | undefined
92151
92299
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
92152
- can_program?: boolean | undefined
92300
+ can_use_with_thermostat_daily_programs?: boolean | undefined
92153
92301
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92154
92302
  name?: ((string | null) | undefined) | undefined
92155
92303
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -92225,7 +92373,7 @@ export type Routes = {
92225
92373
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
92226
92374
  can_delete?: boolean | undefined
92227
92375
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
92228
- can_program?: boolean | undefined
92376
+ can_use_with_thermostat_daily_programs?: boolean | undefined
92229
92377
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92230
92378
  name?: ((string | null) | undefined) | undefined
92231
92379
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -92300,7 +92448,7 @@ export type Routes = {
92300
92448
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
92301
92449
  can_delete: boolean
92302
92450
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
92303
- can_program: boolean
92451
+ can_use_with_thermostat_daily_programs: boolean
92304
92452
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
92305
92453
  name?: (string | null) | undefined
92306
92454
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -92821,6 +92969,11 @@ export type Routes = {
92821
92969
  can_simulate_disconnection?: boolean | undefined
92822
92970
  can_unlock_with_code?: boolean | undefined
92823
92971
  can_run_thermostat_programs?: boolean | undefined
92972
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
92973
+ can_program_thermostat_programs_as_different_each_day?:
92974
+ | boolean
92975
+ | undefined
92976
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
92824
92977
  can_simulate_hub_connection?: boolean | undefined
92825
92978
  can_simulate_hub_disconnection?: boolean | undefined
92826
92979
  can_simulate_paid_subscription?: boolean | undefined
@@ -93659,7 +93812,7 @@ export type Routes = {
93659
93812
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
93660
93813
  can_delete?: boolean | undefined
93661
93814
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
93662
- can_program?: boolean | undefined
93815
+ can_use_with_thermostat_daily_programs?: boolean | undefined
93663
93816
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93664
93817
  name?: ((string | null) | undefined) | undefined
93665
93818
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -93735,7 +93888,7 @@ export type Routes = {
93735
93888
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
93736
93889
  can_delete?: boolean | undefined
93737
93890
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
93738
- can_program?: boolean | undefined
93891
+ can_use_with_thermostat_daily_programs?: boolean | undefined
93739
93892
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93740
93893
  name?: ((string | null) | undefined) | undefined
93741
93894
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -93810,7 +93963,7 @@ export type Routes = {
93810
93963
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
93811
93964
  can_delete: boolean
93812
93965
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
93813
- can_program: boolean
93966
+ can_use_with_thermostat_daily_programs: boolean
93814
93967
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
93815
93968
  name?: (string | null) | undefined
93816
93969
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -94331,6 +94484,11 @@ export type Routes = {
94331
94484
  can_simulate_disconnection?: boolean | undefined
94332
94485
  can_unlock_with_code?: boolean | undefined
94333
94486
  can_run_thermostat_programs?: boolean | undefined
94487
+ can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
94488
+ can_program_thermostat_programs_as_different_each_day?:
94489
+ | boolean
94490
+ | undefined
94491
+ can_program_thermostat_programs_as_same_each_day?: boolean | undefined
94334
94492
  can_simulate_hub_connection?: boolean | undefined
94335
94493
  can_simulate_hub_disconnection?: boolean | undefined
94336
94494
  can_simulate_paid_subscription?: boolean | undefined
@@ -96037,7 +96195,9 @@ export type Routes = {
96037
96195
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
96038
96196
  can_delete?: boolean | undefined
96039
96197
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
96040
- can_program?: boolean | undefined
96198
+ can_use_with_thermostat_daily_programs?:
96199
+ | boolean
96200
+ | undefined
96041
96201
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
96042
96202
  name?: ((string | null) | undefined) | undefined
96043
96203
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -96117,7 +96277,9 @@ export type Routes = {
96117
96277
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
96118
96278
  can_delete?: boolean | undefined
96119
96279
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
96120
- can_program?: boolean | undefined
96280
+ can_use_with_thermostat_daily_programs?:
96281
+ | boolean
96282
+ | undefined
96121
96283
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
96122
96284
  name?: ((string | null) | undefined) | undefined
96123
96285
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -96196,7 +96358,7 @@ export type Routes = {
96196
96358
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted. */
96197
96359
  can_delete: boolean
96198
96360
  /** Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program. */
96199
- can_program: boolean
96361
+ can_use_with_thermostat_daily_programs: boolean
96200
96362
  /** User-friendly name to identify the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
96201
96363
  name?: (string | null) | undefined
96202
96364
  /** Display name for the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). */
@@ -96721,6 +96883,15 @@ export type Routes = {
96721
96883
  can_simulate_disconnection?: boolean | undefined
96722
96884
  can_unlock_with_code?: boolean | undefined
96723
96885
  can_run_thermostat_programs?: boolean | undefined
96886
+ can_program_thermostat_programs_as_weekday_weekend?:
96887
+ | boolean
96888
+ | undefined
96889
+ can_program_thermostat_programs_as_different_each_day?:
96890
+ | boolean
96891
+ | undefined
96892
+ can_program_thermostat_programs_as_same_each_day?:
96893
+ | boolean
96894
+ | undefined
96724
96895
  can_simulate_hub_connection?: boolean | undefined
96725
96896
  can_simulate_hub_disconnection?: boolean | undefined
96726
96897
  can_simulate_paid_subscription?: boolean | undefined
@@ -99936,6 +100107,15 @@ export type Routes = {
99936
100107
  can_simulate_disconnection?: boolean | undefined
99937
100108
  can_unlock_with_code?: boolean | undefined
99938
100109
  can_run_thermostat_programs?: boolean | undefined
100110
+ can_program_thermostat_programs_as_weekday_weekend?:
100111
+ | boolean
100112
+ | undefined
100113
+ can_program_thermostat_programs_as_different_each_day?:
100114
+ | boolean
100115
+ | undefined
100116
+ can_program_thermostat_programs_as_same_each_day?:
100117
+ | boolean
100118
+ | undefined
99939
100119
  can_simulate_hub_connection?: boolean | undefined
99940
100120
  can_simulate_hub_disconnection?: boolean | undefined
99941
100121
  can_simulate_paid_subscription?: boolean | undefined