@seamapi/types 1.578.0 → 1.580.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 +96 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +225 -10
- package/dist/index.cjs +96 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +152 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +23 -0
- package/lib/seam/connect/models/devices/device.js +3 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +15 -0
- package/lib/seam/connect/openapi.d.ts +34 -0
- package/lib/seam/connect/openapi.js +87 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +110 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +89 -0
- package/src/lib/seam/connect/route-types.ts +232 -0
|
@@ -12625,6 +12625,10 @@ export type Routes = {
|
|
|
12625
12625
|
thermostat_daily_program_period_precision_minutes?:
|
|
12626
12626
|
| (number | undefined)
|
|
12627
12627
|
| undefined
|
|
12628
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
12629
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
12630
|
+
| (number | undefined)
|
|
12631
|
+
| undefined
|
|
12628
12632
|
/** 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. */
|
|
12629
12633
|
max_thermostat_daily_program_periods_per_day?:
|
|
12630
12634
|
| (number | undefined)
|
|
@@ -12962,6 +12966,15 @@ export type Routes = {
|
|
|
12962
12966
|
can_simulate_disconnection?: boolean | undefined
|
|
12963
12967
|
can_unlock_with_code?: boolean | undefined
|
|
12964
12968
|
can_run_thermostat_programs?: boolean | undefined
|
|
12969
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
12970
|
+
| boolean
|
|
12971
|
+
| undefined
|
|
12972
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
12973
|
+
| boolean
|
|
12974
|
+
| undefined
|
|
12975
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
12976
|
+
| boolean
|
|
12977
|
+
| undefined
|
|
12965
12978
|
can_simulate_hub_connection?: boolean | undefined
|
|
12966
12979
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
12967
12980
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -16469,6 +16482,10 @@ export type Routes = {
|
|
|
16469
16482
|
thermostat_daily_program_period_precision_minutes?:
|
|
16470
16483
|
| (number | undefined)
|
|
16471
16484
|
| undefined
|
|
16485
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
16486
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
16487
|
+
| (number | undefined)
|
|
16488
|
+
| undefined
|
|
16472
16489
|
/** 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. */
|
|
16473
16490
|
max_thermostat_daily_program_periods_per_day?:
|
|
16474
16491
|
| (number | undefined)
|
|
@@ -16806,6 +16823,15 @@ export type Routes = {
|
|
|
16806
16823
|
can_simulate_disconnection?: boolean | undefined
|
|
16807
16824
|
can_unlock_with_code?: boolean | undefined
|
|
16808
16825
|
can_run_thermostat_programs?: boolean | undefined
|
|
16826
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
16827
|
+
| boolean
|
|
16828
|
+
| undefined
|
|
16829
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
16830
|
+
| boolean
|
|
16831
|
+
| undefined
|
|
16832
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
16833
|
+
| boolean
|
|
16834
|
+
| undefined
|
|
16809
16835
|
can_simulate_hub_connection?: boolean | undefined
|
|
16810
16836
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
16811
16837
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -20021,6 +20047,15 @@ export type Routes = {
|
|
|
20021
20047
|
can_simulate_disconnection?: boolean | undefined
|
|
20022
20048
|
can_unlock_with_code?: boolean | undefined
|
|
20023
20049
|
can_run_thermostat_programs?: boolean | undefined
|
|
20050
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
20051
|
+
| boolean
|
|
20052
|
+
| undefined
|
|
20053
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
20054
|
+
| boolean
|
|
20055
|
+
| undefined
|
|
20056
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
20057
|
+
| boolean
|
|
20058
|
+
| undefined
|
|
20024
20059
|
can_simulate_hub_connection?: boolean | undefined
|
|
20025
20060
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
20026
20061
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -38152,6 +38187,10 @@ export type Routes = {
|
|
|
38152
38187
|
thermostat_daily_program_period_precision_minutes?:
|
|
38153
38188
|
| (number | undefined)
|
|
38154
38189
|
| undefined
|
|
38190
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
38191
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
38192
|
+
| (number | undefined)
|
|
38193
|
+
| undefined
|
|
38155
38194
|
/** 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. */
|
|
38156
38195
|
max_thermostat_daily_program_periods_per_day?:
|
|
38157
38196
|
| (number | undefined)
|
|
@@ -38489,6 +38528,11 @@ export type Routes = {
|
|
|
38489
38528
|
can_simulate_disconnection?: boolean | undefined
|
|
38490
38529
|
can_unlock_with_code?: boolean | undefined
|
|
38491
38530
|
can_run_thermostat_programs?: boolean | undefined
|
|
38531
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
38532
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
38533
|
+
| boolean
|
|
38534
|
+
| undefined
|
|
38535
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
38492
38536
|
can_simulate_hub_connection?: boolean | undefined
|
|
38493
38537
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
38494
38538
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -38676,6 +38720,9 @@ export type Routes = {
|
|
|
38676
38720
|
| 'can_simulate_disconnection'
|
|
38677
38721
|
| 'can_unlock_with_code'
|
|
38678
38722
|
| 'can_run_thermostat_programs'
|
|
38723
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
38724
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
38725
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
38679
38726
|
| 'can_simulate_hub_connection'
|
|
38680
38727
|
| 'can_simulate_hub_disconnection'
|
|
38681
38728
|
| 'can_simulate_paid_subscription'
|
|
@@ -38697,6 +38744,9 @@ export type Routes = {
|
|
|
38697
38744
|
| 'can_simulate_disconnection'
|
|
38698
38745
|
| 'can_unlock_with_code'
|
|
38699
38746
|
| 'can_run_thermostat_programs'
|
|
38747
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
38748
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
38749
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
38700
38750
|
| 'can_simulate_hub_connection'
|
|
38701
38751
|
| 'can_simulate_hub_disconnection'
|
|
38702
38752
|
| 'can_simulate_paid_subscription'
|
|
@@ -39875,6 +39925,10 @@ export type Routes = {
|
|
|
39875
39925
|
thermostat_daily_program_period_precision_minutes?:
|
|
39876
39926
|
| (number | undefined)
|
|
39877
39927
|
| undefined
|
|
39928
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
39929
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
39930
|
+
| (number | undefined)
|
|
39931
|
+
| undefined
|
|
39878
39932
|
/** 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. */
|
|
39879
39933
|
max_thermostat_daily_program_periods_per_day?:
|
|
39880
39934
|
| (number | undefined)
|
|
@@ -40212,6 +40266,11 @@ export type Routes = {
|
|
|
40212
40266
|
can_simulate_disconnection?: boolean | undefined
|
|
40213
40267
|
can_unlock_with_code?: boolean | undefined
|
|
40214
40268
|
can_run_thermostat_programs?: boolean | undefined
|
|
40269
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
40270
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
40271
|
+
| boolean
|
|
40272
|
+
| undefined
|
|
40273
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
40215
40274
|
can_simulate_hub_connection?: boolean | undefined
|
|
40216
40275
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40217
40276
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -40319,6 +40378,11 @@ export type Routes = {
|
|
|
40319
40378
|
can_simulate_disconnection?: boolean | undefined
|
|
40320
40379
|
can_unlock_with_code?: boolean | undefined
|
|
40321
40380
|
can_run_thermostat_programs?: boolean | undefined
|
|
40381
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
40382
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
40383
|
+
| boolean
|
|
40384
|
+
| undefined
|
|
40385
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
40322
40386
|
can_simulate_hub_connection?: boolean | undefined
|
|
40323
40387
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40324
40388
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -40874,6 +40938,11 @@ export type Routes = {
|
|
|
40874
40938
|
can_simulate_disconnection?: boolean | undefined
|
|
40875
40939
|
can_unlock_with_code?: boolean | undefined
|
|
40876
40940
|
can_run_thermostat_programs?: boolean | undefined
|
|
40941
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
40942
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
40943
|
+
| boolean
|
|
40944
|
+
| undefined
|
|
40945
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
40877
40946
|
can_simulate_hub_connection?: boolean | undefined
|
|
40878
40947
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40879
40948
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -41059,6 +41128,9 @@ export type Routes = {
|
|
|
41059
41128
|
| 'can_simulate_disconnection'
|
|
41060
41129
|
| 'can_unlock_with_code'
|
|
41061
41130
|
| 'can_run_thermostat_programs'
|
|
41131
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
41132
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
41133
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
41062
41134
|
| 'can_simulate_hub_connection'
|
|
41063
41135
|
| 'can_simulate_hub_disconnection'
|
|
41064
41136
|
| 'can_simulate_paid_subscription'
|
|
@@ -41080,6 +41152,9 @@ export type Routes = {
|
|
|
41080
41152
|
| 'can_simulate_disconnection'
|
|
41081
41153
|
| 'can_unlock_with_code'
|
|
41082
41154
|
| 'can_run_thermostat_programs'
|
|
41155
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
41156
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
41157
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
41083
41158
|
| 'can_simulate_hub_connection'
|
|
41084
41159
|
| 'can_simulate_hub_disconnection'
|
|
41085
41160
|
| 'can_simulate_paid_subscription'
|
|
@@ -41560,6 +41635,11 @@ export type Routes = {
|
|
|
41560
41635
|
can_simulate_disconnection?: boolean | undefined
|
|
41561
41636
|
can_unlock_with_code?: boolean | undefined
|
|
41562
41637
|
can_run_thermostat_programs?: boolean | undefined
|
|
41638
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
41639
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
41640
|
+
| boolean
|
|
41641
|
+
| undefined
|
|
41642
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
41563
41643
|
can_simulate_hub_connection?: boolean | undefined
|
|
41564
41644
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
41565
41645
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -47616,6 +47696,10 @@ export type Routes = {
|
|
|
47616
47696
|
thermostat_daily_program_period_precision_minutes?:
|
|
47617
47697
|
| (number | undefined)
|
|
47618
47698
|
| undefined
|
|
47699
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
47700
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
47701
|
+
| (number | undefined)
|
|
47702
|
+
| undefined
|
|
47619
47703
|
/** 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. */
|
|
47620
47704
|
max_thermostat_daily_program_periods_per_day?:
|
|
47621
47705
|
| (number | undefined)
|
|
@@ -47953,6 +48037,11 @@ export type Routes = {
|
|
|
47953
48037
|
can_simulate_disconnection?: boolean | undefined
|
|
47954
48038
|
can_unlock_with_code?: boolean | undefined
|
|
47955
48039
|
can_run_thermostat_programs?: boolean | undefined
|
|
48040
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
48041
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
48042
|
+
| boolean
|
|
48043
|
+
| undefined
|
|
48044
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
47956
48045
|
can_simulate_hub_connection?: boolean | undefined
|
|
47957
48046
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
47958
48047
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -49121,6 +49210,10 @@ export type Routes = {
|
|
|
49121
49210
|
thermostat_daily_program_period_precision_minutes?:
|
|
49122
49211
|
| (number | undefined)
|
|
49123
49212
|
| undefined
|
|
49213
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
49214
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
49215
|
+
| (number | undefined)
|
|
49216
|
+
| undefined
|
|
49124
49217
|
/** 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. */
|
|
49125
49218
|
max_thermostat_daily_program_periods_per_day?:
|
|
49126
49219
|
| (number | undefined)
|
|
@@ -49458,6 +49551,11 @@ export type Routes = {
|
|
|
49458
49551
|
can_simulate_disconnection?: boolean | undefined
|
|
49459
49552
|
can_unlock_with_code?: boolean | undefined
|
|
49460
49553
|
can_run_thermostat_programs?: boolean | undefined
|
|
49554
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
49555
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
49556
|
+
| boolean
|
|
49557
|
+
| undefined
|
|
49558
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
49461
49559
|
can_simulate_hub_connection?: boolean | undefined
|
|
49462
49560
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
49463
49561
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -49607,6 +49705,9 @@ export type Routes = {
|
|
|
49607
49705
|
| 'can_simulate_disconnection'
|
|
49608
49706
|
| 'can_unlock_with_code'
|
|
49609
49707
|
| 'can_run_thermostat_programs'
|
|
49708
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
49709
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
49710
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
49610
49711
|
| 'can_simulate_hub_connection'
|
|
49611
49712
|
| 'can_simulate_hub_disconnection'
|
|
49612
49713
|
| 'can_simulate_paid_subscription'
|
|
@@ -49628,6 +49729,9 @@ export type Routes = {
|
|
|
49628
49729
|
| 'can_simulate_disconnection'
|
|
49629
49730
|
| 'can_unlock_with_code'
|
|
49630
49731
|
| 'can_run_thermostat_programs'
|
|
49732
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
49733
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
49734
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
49631
49735
|
| 'can_simulate_hub_connection'
|
|
49632
49736
|
| 'can_simulate_hub_disconnection'
|
|
49633
49737
|
| 'can_simulate_paid_subscription'
|
|
@@ -50806,6 +50910,10 @@ export type Routes = {
|
|
|
50806
50910
|
thermostat_daily_program_period_precision_minutes?:
|
|
50807
50911
|
| (number | undefined)
|
|
50808
50912
|
| undefined
|
|
50913
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
50914
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
50915
|
+
| (number | undefined)
|
|
50916
|
+
| undefined
|
|
50809
50917
|
/** 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. */
|
|
50810
50918
|
max_thermostat_daily_program_periods_per_day?:
|
|
50811
50919
|
| (number | undefined)
|
|
@@ -51143,6 +51251,11 @@ export type Routes = {
|
|
|
51143
51251
|
can_simulate_disconnection?: boolean | undefined
|
|
51144
51252
|
can_unlock_with_code?: boolean | undefined
|
|
51145
51253
|
can_run_thermostat_programs?: boolean | undefined
|
|
51254
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
51255
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
51256
|
+
| boolean
|
|
51257
|
+
| undefined
|
|
51258
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
51146
51259
|
can_simulate_hub_connection?: boolean | undefined
|
|
51147
51260
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
51148
51261
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -52310,6 +52423,10 @@ export type Routes = {
|
|
|
52310
52423
|
thermostat_daily_program_period_precision_minutes?:
|
|
52311
52424
|
| (number | undefined)
|
|
52312
52425
|
| undefined
|
|
52426
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
52427
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
52428
|
+
| (number | undefined)
|
|
52429
|
+
| undefined
|
|
52313
52430
|
/** 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. */
|
|
52314
52431
|
max_thermostat_daily_program_periods_per_day?:
|
|
52315
52432
|
| (number | undefined)
|
|
@@ -52647,6 +52764,11 @@ export type Routes = {
|
|
|
52647
52764
|
can_simulate_disconnection?: boolean | undefined
|
|
52648
52765
|
can_unlock_with_code?: boolean | undefined
|
|
52649
52766
|
can_run_thermostat_programs?: boolean | undefined
|
|
52767
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
52768
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
52769
|
+
| boolean
|
|
52770
|
+
| undefined
|
|
52771
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
52650
52772
|
can_simulate_hub_connection?: boolean | undefined
|
|
52651
52773
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
52652
52774
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -58499,6 +58621,9 @@ export type Routes = {
|
|
|
58499
58621
|
| 'can_simulate_disconnection'
|
|
58500
58622
|
| 'can_unlock_with_code'
|
|
58501
58623
|
| 'can_run_thermostat_programs'
|
|
58624
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
58625
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
58626
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
58502
58627
|
| 'can_simulate_hub_connection'
|
|
58503
58628
|
| 'can_simulate_hub_disconnection'
|
|
58504
58629
|
| 'can_simulate_paid_subscription'
|
|
@@ -58520,6 +58645,9 @@ export type Routes = {
|
|
|
58520
58645
|
| 'can_simulate_disconnection'
|
|
58521
58646
|
| 'can_unlock_with_code'
|
|
58522
58647
|
| 'can_run_thermostat_programs'
|
|
58648
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
58649
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
58650
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
58523
58651
|
| 'can_simulate_hub_connection'
|
|
58524
58652
|
| 'can_simulate_hub_disconnection'
|
|
58525
58653
|
| 'can_simulate_paid_subscription'
|
|
@@ -59698,6 +59826,10 @@ export type Routes = {
|
|
|
59698
59826
|
thermostat_daily_program_period_precision_minutes?:
|
|
59699
59827
|
| (number | undefined)
|
|
59700
59828
|
| undefined
|
|
59829
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
59830
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
59831
|
+
| (number | undefined)
|
|
59832
|
+
| undefined
|
|
59701
59833
|
/** 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. */
|
|
59702
59834
|
max_thermostat_daily_program_periods_per_day?:
|
|
59703
59835
|
| (number | undefined)
|
|
@@ -60035,6 +60167,11 @@ export type Routes = {
|
|
|
60035
60167
|
can_simulate_disconnection?: boolean | undefined
|
|
60036
60168
|
can_unlock_with_code?: boolean | undefined
|
|
60037
60169
|
can_run_thermostat_programs?: boolean | undefined
|
|
60170
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
60171
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
60172
|
+
| boolean
|
|
60173
|
+
| undefined
|
|
60174
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
60038
60175
|
can_simulate_hub_connection?: boolean | undefined
|
|
60039
60176
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
60040
60177
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -61202,6 +61339,10 @@ export type Routes = {
|
|
|
61202
61339
|
thermostat_daily_program_period_precision_minutes?:
|
|
61203
61340
|
| (number | undefined)
|
|
61204
61341
|
| undefined
|
|
61342
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
61343
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
61344
|
+
| (number | undefined)
|
|
61345
|
+
| undefined
|
|
61205
61346
|
/** 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. */
|
|
61206
61347
|
max_thermostat_daily_program_periods_per_day?:
|
|
61207
61348
|
| (number | undefined)
|
|
@@ -61539,6 +61680,11 @@ export type Routes = {
|
|
|
61539
61680
|
can_simulate_disconnection?: boolean | undefined
|
|
61540
61681
|
can_unlock_with_code?: boolean | undefined
|
|
61541
61682
|
can_run_thermostat_programs?: boolean | undefined
|
|
61683
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
61684
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
61685
|
+
| boolean
|
|
61686
|
+
| undefined
|
|
61687
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
61542
61688
|
can_simulate_hub_connection?: boolean | undefined
|
|
61543
61689
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
61544
61690
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -71563,6 +71709,10 @@ export type Routes = {
|
|
|
71563
71709
|
thermostat_daily_program_period_precision_minutes?:
|
|
71564
71710
|
| (number | undefined)
|
|
71565
71711
|
| undefined
|
|
71712
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
71713
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
71714
|
+
| (number | undefined)
|
|
71715
|
+
| undefined
|
|
71566
71716
|
/** 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. */
|
|
71567
71717
|
max_thermostat_daily_program_periods_per_day?:
|
|
71568
71718
|
| (number | undefined)
|
|
@@ -71900,6 +72050,15 @@ export type Routes = {
|
|
|
71900
72050
|
can_simulate_disconnection?: boolean | undefined
|
|
71901
72051
|
can_unlock_with_code?: boolean | undefined
|
|
71902
72052
|
can_run_thermostat_programs?: boolean | undefined
|
|
72053
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
72054
|
+
| boolean
|
|
72055
|
+
| undefined
|
|
72056
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
72057
|
+
| boolean
|
|
72058
|
+
| undefined
|
|
72059
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
72060
|
+
| boolean
|
|
72061
|
+
| undefined
|
|
71903
72062
|
can_simulate_hub_connection?: boolean | undefined
|
|
71904
72063
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
71905
72064
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -78134,6 +78293,10 @@ export type Routes = {
|
|
|
78134
78293
|
thermostat_daily_program_period_precision_minutes?:
|
|
78135
78294
|
| (number | undefined)
|
|
78136
78295
|
| undefined
|
|
78296
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
78297
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
78298
|
+
| (number | undefined)
|
|
78299
|
+
| undefined
|
|
78137
78300
|
/** 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. */
|
|
78138
78301
|
max_thermostat_daily_program_periods_per_day?:
|
|
78139
78302
|
| (number | undefined)
|
|
@@ -78471,6 +78634,11 @@ export type Routes = {
|
|
|
78471
78634
|
can_simulate_disconnection?: boolean | undefined
|
|
78472
78635
|
can_unlock_with_code?: boolean | undefined
|
|
78473
78636
|
can_run_thermostat_programs?: boolean | undefined
|
|
78637
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
78638
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
78639
|
+
| boolean
|
|
78640
|
+
| undefined
|
|
78641
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
78474
78642
|
can_simulate_hub_connection?: boolean | undefined
|
|
78475
78643
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
78476
78644
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -81466,6 +81634,9 @@ export type Routes = {
|
|
|
81466
81634
|
| 'can_simulate_disconnection'
|
|
81467
81635
|
| 'can_unlock_with_code'
|
|
81468
81636
|
| 'can_run_thermostat_programs'
|
|
81637
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
81638
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
81639
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
81469
81640
|
| 'can_simulate_hub_connection'
|
|
81470
81641
|
| 'can_simulate_hub_disconnection'
|
|
81471
81642
|
| 'can_simulate_paid_subscription'
|
|
@@ -81487,6 +81658,9 @@ export type Routes = {
|
|
|
81487
81658
|
| 'can_simulate_disconnection'
|
|
81488
81659
|
| 'can_unlock_with_code'
|
|
81489
81660
|
| 'can_run_thermostat_programs'
|
|
81661
|
+
| 'can_program_thermostat_programs_as_weekday_weekend'
|
|
81662
|
+
| 'can_program_thermostat_programs_as_different_each_day'
|
|
81663
|
+
| 'can_program_thermostat_programs_as_same_each_day'
|
|
81490
81664
|
| 'can_simulate_hub_connection'
|
|
81491
81665
|
| 'can_simulate_hub_disconnection'
|
|
81492
81666
|
| 'can_simulate_paid_subscription'
|
|
@@ -82665,6 +82839,10 @@ export type Routes = {
|
|
|
82665
82839
|
thermostat_daily_program_period_precision_minutes?:
|
|
82666
82840
|
| (number | undefined)
|
|
82667
82841
|
| undefined
|
|
82842
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
82843
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
82844
|
+
| (number | undefined)
|
|
82845
|
+
| undefined
|
|
82668
82846
|
/** 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. */
|
|
82669
82847
|
max_thermostat_daily_program_periods_per_day?:
|
|
82670
82848
|
| (number | undefined)
|
|
@@ -83002,6 +83180,11 @@ export type Routes = {
|
|
|
83002
83180
|
can_simulate_disconnection?: boolean | undefined
|
|
83003
83181
|
can_unlock_with_code?: boolean | undefined
|
|
83004
83182
|
can_run_thermostat_programs?: boolean | undefined
|
|
83183
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
83184
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
83185
|
+
| boolean
|
|
83186
|
+
| undefined
|
|
83187
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
83005
83188
|
can_simulate_hub_connection?: boolean | undefined
|
|
83006
83189
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
83007
83190
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -84169,6 +84352,10 @@ export type Routes = {
|
|
|
84169
84352
|
thermostat_daily_program_period_precision_minutes?:
|
|
84170
84353
|
| (number | undefined)
|
|
84171
84354
|
| undefined
|
|
84355
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
84356
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
84357
|
+
| (number | undefined)
|
|
84358
|
+
| undefined
|
|
84172
84359
|
/** 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. */
|
|
84173
84360
|
max_thermostat_daily_program_periods_per_day?:
|
|
84174
84361
|
| (number | undefined)
|
|
@@ -84506,6 +84693,11 @@ export type Routes = {
|
|
|
84506
84693
|
can_simulate_disconnection?: boolean | undefined
|
|
84507
84694
|
can_unlock_with_code?: boolean | undefined
|
|
84508
84695
|
can_run_thermostat_programs?: boolean | undefined
|
|
84696
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
84697
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
84698
|
+
| boolean
|
|
84699
|
+
| undefined
|
|
84700
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
84509
84701
|
can_simulate_hub_connection?: boolean | undefined
|
|
84510
84702
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
84511
84703
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -92424,6 +92616,10 @@ export type Routes = {
|
|
|
92424
92616
|
thermostat_daily_program_period_precision_minutes?:
|
|
92425
92617
|
| (number | undefined)
|
|
92426
92618
|
| undefined
|
|
92619
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
92620
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
92621
|
+
| (number | undefined)
|
|
92622
|
+
| undefined
|
|
92427
92623
|
/** 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. */
|
|
92428
92624
|
max_thermostat_daily_program_periods_per_day?:
|
|
92429
92625
|
| (number | undefined)
|
|
@@ -92761,6 +92957,11 @@ export type Routes = {
|
|
|
92761
92957
|
can_simulate_disconnection?: boolean | undefined
|
|
92762
92958
|
can_unlock_with_code?: boolean | undefined
|
|
92763
92959
|
can_run_thermostat_programs?: boolean | undefined
|
|
92960
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
92961
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
92962
|
+
| boolean
|
|
92963
|
+
| undefined
|
|
92964
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
92764
92965
|
can_simulate_hub_connection?: boolean | undefined
|
|
92765
92966
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
92766
92967
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -93930,6 +94131,10 @@ export type Routes = {
|
|
|
93930
94131
|
thermostat_daily_program_period_precision_minutes?:
|
|
93931
94132
|
| (number | undefined)
|
|
93932
94133
|
| undefined
|
|
94134
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
94135
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
94136
|
+
| (number | undefined)
|
|
94137
|
+
| undefined
|
|
93933
94138
|
/** 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. */
|
|
93934
94139
|
max_thermostat_daily_program_periods_per_day?:
|
|
93935
94140
|
| (number | undefined)
|
|
@@ -94267,6 +94472,11 @@ export type Routes = {
|
|
|
94267
94472
|
can_simulate_disconnection?: boolean | undefined
|
|
94268
94473
|
can_unlock_with_code?: boolean | undefined
|
|
94269
94474
|
can_run_thermostat_programs?: boolean | undefined
|
|
94475
|
+
can_program_thermostat_programs_as_weekday_weekend?: boolean | undefined
|
|
94476
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
94477
|
+
| boolean
|
|
94478
|
+
| undefined
|
|
94479
|
+
can_program_thermostat_programs_as_same_each_day?: boolean | undefined
|
|
94270
94480
|
can_simulate_hub_connection?: boolean | undefined
|
|
94271
94481
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
94272
94482
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -96316,6 +96526,10 @@ export type Routes = {
|
|
|
96316
96526
|
thermostat_daily_program_period_precision_minutes?:
|
|
96317
96527
|
| (number | undefined)
|
|
96318
96528
|
| undefined
|
|
96529
|
+
/** Maximum number of climate presets that the thermostat can support for weekly programming. */
|
|
96530
|
+
max_unique_climate_presets_per_thermostat_weekly_program?:
|
|
96531
|
+
| (number | undefined)
|
|
96532
|
+
| undefined
|
|
96319
96533
|
/** 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. */
|
|
96320
96534
|
max_thermostat_daily_program_periods_per_day?:
|
|
96321
96535
|
| (number | undefined)
|
|
@@ -96653,6 +96867,15 @@ export type Routes = {
|
|
|
96653
96867
|
can_simulate_disconnection?: boolean | undefined
|
|
96654
96868
|
can_unlock_with_code?: boolean | undefined
|
|
96655
96869
|
can_run_thermostat_programs?: boolean | undefined
|
|
96870
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
96871
|
+
| boolean
|
|
96872
|
+
| undefined
|
|
96873
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
96874
|
+
| boolean
|
|
96875
|
+
| undefined
|
|
96876
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
96877
|
+
| boolean
|
|
96878
|
+
| undefined
|
|
96656
96879
|
can_simulate_hub_connection?: boolean | undefined
|
|
96657
96880
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
96658
96881
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -99868,6 +100091,15 @@ export type Routes = {
|
|
|
99868
100091
|
can_simulate_disconnection?: boolean | undefined
|
|
99869
100092
|
can_unlock_with_code?: boolean | undefined
|
|
99870
100093
|
can_run_thermostat_programs?: boolean | undefined
|
|
100094
|
+
can_program_thermostat_programs_as_weekday_weekend?:
|
|
100095
|
+
| boolean
|
|
100096
|
+
| undefined
|
|
100097
|
+
can_program_thermostat_programs_as_different_each_day?:
|
|
100098
|
+
| boolean
|
|
100099
|
+
| undefined
|
|
100100
|
+
can_program_thermostat_programs_as_same_each_day?:
|
|
100101
|
+
| boolean
|
|
100102
|
+
| undefined
|
|
99871
100103
|
can_simulate_hub_connection?: boolean | undefined
|
|
99872
100104
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
99873
100105
|
can_simulate_paid_subscription?: boolean | undefined
|