@seamapi/types 1.579.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 +84 -0
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +166 -10
- package/dist/index.cjs +84 -0
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +111 -0
- package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +18 -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 +12 -0
- package/lib/seam/connect/openapi.d.ts +27 -0
- package/lib/seam/connect/openapi.js +81 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +76 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/openapi.ts +81 -0
- package/src/lib/seam/connect/route-types.ts +164 -0
|
@@ -12966,6 +12966,15 @@ export type Routes = {
|
|
|
12966
12966
|
can_simulate_disconnection?: boolean | undefined
|
|
12967
12967
|
can_unlock_with_code?: boolean | undefined
|
|
12968
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
|
|
12969
12978
|
can_simulate_hub_connection?: boolean | undefined
|
|
12970
12979
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
12971
12980
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -16814,6 +16823,15 @@ export type Routes = {
|
|
|
16814
16823
|
can_simulate_disconnection?: boolean | undefined
|
|
16815
16824
|
can_unlock_with_code?: boolean | undefined
|
|
16816
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
|
|
16817
16835
|
can_simulate_hub_connection?: boolean | undefined
|
|
16818
16836
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
16819
16837
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -20029,6 +20047,15 @@ export type Routes = {
|
|
|
20029
20047
|
can_simulate_disconnection?: boolean | undefined
|
|
20030
20048
|
can_unlock_with_code?: boolean | undefined
|
|
20031
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
|
|
20032
20059
|
can_simulate_hub_connection?: boolean | undefined
|
|
20033
20060
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
20034
20061
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -38501,6 +38528,11 @@ export type Routes = {
|
|
|
38501
38528
|
can_simulate_disconnection?: boolean | undefined
|
|
38502
38529
|
can_unlock_with_code?: boolean | undefined
|
|
38503
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
|
|
38504
38536
|
can_simulate_hub_connection?: boolean | undefined
|
|
38505
38537
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
38506
38538
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -38688,6 +38720,9 @@ export type Routes = {
|
|
|
38688
38720
|
| 'can_simulate_disconnection'
|
|
38689
38721
|
| 'can_unlock_with_code'
|
|
38690
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'
|
|
38691
38726
|
| 'can_simulate_hub_connection'
|
|
38692
38727
|
| 'can_simulate_hub_disconnection'
|
|
38693
38728
|
| 'can_simulate_paid_subscription'
|
|
@@ -38709,6 +38744,9 @@ export type Routes = {
|
|
|
38709
38744
|
| 'can_simulate_disconnection'
|
|
38710
38745
|
| 'can_unlock_with_code'
|
|
38711
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'
|
|
38712
38750
|
| 'can_simulate_hub_connection'
|
|
38713
38751
|
| 'can_simulate_hub_disconnection'
|
|
38714
38752
|
| 'can_simulate_paid_subscription'
|
|
@@ -40228,6 +40266,11 @@ export type Routes = {
|
|
|
40228
40266
|
can_simulate_disconnection?: boolean | undefined
|
|
40229
40267
|
can_unlock_with_code?: boolean | undefined
|
|
40230
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
|
|
40231
40274
|
can_simulate_hub_connection?: boolean | undefined
|
|
40232
40275
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40233
40276
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -40335,6 +40378,11 @@ export type Routes = {
|
|
|
40335
40378
|
can_simulate_disconnection?: boolean | undefined
|
|
40336
40379
|
can_unlock_with_code?: boolean | undefined
|
|
40337
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
|
|
40338
40386
|
can_simulate_hub_connection?: boolean | undefined
|
|
40339
40387
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40340
40388
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -40890,6 +40938,11 @@ export type Routes = {
|
|
|
40890
40938
|
can_simulate_disconnection?: boolean | undefined
|
|
40891
40939
|
can_unlock_with_code?: boolean | undefined
|
|
40892
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
|
|
40893
40946
|
can_simulate_hub_connection?: boolean | undefined
|
|
40894
40947
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
40895
40948
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -41075,6 +41128,9 @@ export type Routes = {
|
|
|
41075
41128
|
| 'can_simulate_disconnection'
|
|
41076
41129
|
| 'can_unlock_with_code'
|
|
41077
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'
|
|
41078
41134
|
| 'can_simulate_hub_connection'
|
|
41079
41135
|
| 'can_simulate_hub_disconnection'
|
|
41080
41136
|
| 'can_simulate_paid_subscription'
|
|
@@ -41096,6 +41152,9 @@ export type Routes = {
|
|
|
41096
41152
|
| 'can_simulate_disconnection'
|
|
41097
41153
|
| 'can_unlock_with_code'
|
|
41098
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'
|
|
41099
41158
|
| 'can_simulate_hub_connection'
|
|
41100
41159
|
| 'can_simulate_hub_disconnection'
|
|
41101
41160
|
| 'can_simulate_paid_subscription'
|
|
@@ -41576,6 +41635,11 @@ export type Routes = {
|
|
|
41576
41635
|
can_simulate_disconnection?: boolean | undefined
|
|
41577
41636
|
can_unlock_with_code?: boolean | undefined
|
|
41578
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
|
|
41579
41643
|
can_simulate_hub_connection?: boolean | undefined
|
|
41580
41644
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
41581
41645
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -47973,6 +48037,11 @@ export type Routes = {
|
|
|
47973
48037
|
can_simulate_disconnection?: boolean | undefined
|
|
47974
48038
|
can_unlock_with_code?: boolean | undefined
|
|
47975
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
|
|
47976
48045
|
can_simulate_hub_connection?: boolean | undefined
|
|
47977
48046
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
47978
48047
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -49482,6 +49551,11 @@ export type Routes = {
|
|
|
49482
49551
|
can_simulate_disconnection?: boolean | undefined
|
|
49483
49552
|
can_unlock_with_code?: boolean | undefined
|
|
49484
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
|
|
49485
49559
|
can_simulate_hub_connection?: boolean | undefined
|
|
49486
49560
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
49487
49561
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -49631,6 +49705,9 @@ export type Routes = {
|
|
|
49631
49705
|
| 'can_simulate_disconnection'
|
|
49632
49706
|
| 'can_unlock_with_code'
|
|
49633
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'
|
|
49634
49711
|
| 'can_simulate_hub_connection'
|
|
49635
49712
|
| 'can_simulate_hub_disconnection'
|
|
49636
49713
|
| 'can_simulate_paid_subscription'
|
|
@@ -49652,6 +49729,9 @@ export type Routes = {
|
|
|
49652
49729
|
| 'can_simulate_disconnection'
|
|
49653
49730
|
| 'can_unlock_with_code'
|
|
49654
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'
|
|
49655
49735
|
| 'can_simulate_hub_connection'
|
|
49656
49736
|
| 'can_simulate_hub_disconnection'
|
|
49657
49737
|
| 'can_simulate_paid_subscription'
|
|
@@ -51171,6 +51251,11 @@ export type Routes = {
|
|
|
51171
51251
|
can_simulate_disconnection?: boolean | undefined
|
|
51172
51252
|
can_unlock_with_code?: boolean | undefined
|
|
51173
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
|
|
51174
51259
|
can_simulate_hub_connection?: boolean | undefined
|
|
51175
51260
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
51176
51261
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -52679,6 +52764,11 @@ export type Routes = {
|
|
|
52679
52764
|
can_simulate_disconnection?: boolean | undefined
|
|
52680
52765
|
can_unlock_with_code?: boolean | undefined
|
|
52681
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
|
|
52682
52772
|
can_simulate_hub_connection?: boolean | undefined
|
|
52683
52773
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
52684
52774
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -58531,6 +58621,9 @@ export type Routes = {
|
|
|
58531
58621
|
| 'can_simulate_disconnection'
|
|
58532
58622
|
| 'can_unlock_with_code'
|
|
58533
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'
|
|
58534
58627
|
| 'can_simulate_hub_connection'
|
|
58535
58628
|
| 'can_simulate_hub_disconnection'
|
|
58536
58629
|
| 'can_simulate_paid_subscription'
|
|
@@ -58552,6 +58645,9 @@ export type Routes = {
|
|
|
58552
58645
|
| 'can_simulate_disconnection'
|
|
58553
58646
|
| 'can_unlock_with_code'
|
|
58554
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'
|
|
58555
58651
|
| 'can_simulate_hub_connection'
|
|
58556
58652
|
| 'can_simulate_hub_disconnection'
|
|
58557
58653
|
| 'can_simulate_paid_subscription'
|
|
@@ -60071,6 +60167,11 @@ export type Routes = {
|
|
|
60071
60167
|
can_simulate_disconnection?: boolean | undefined
|
|
60072
60168
|
can_unlock_with_code?: boolean | undefined
|
|
60073
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
|
|
60074
60175
|
can_simulate_hub_connection?: boolean | undefined
|
|
60075
60176
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
60076
60177
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -61579,6 +61680,11 @@ export type Routes = {
|
|
|
61579
61680
|
can_simulate_disconnection?: boolean | undefined
|
|
61580
61681
|
can_unlock_with_code?: boolean | undefined
|
|
61581
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
|
|
61582
61688
|
can_simulate_hub_connection?: boolean | undefined
|
|
61583
61689
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
61584
61690
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -71944,6 +72050,15 @@ export type Routes = {
|
|
|
71944
72050
|
can_simulate_disconnection?: boolean | undefined
|
|
71945
72051
|
can_unlock_with_code?: boolean | undefined
|
|
71946
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
|
|
71947
72062
|
can_simulate_hub_connection?: boolean | undefined
|
|
71948
72063
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
71949
72064
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -78519,6 +78634,11 @@ export type Routes = {
|
|
|
78519
78634
|
can_simulate_disconnection?: boolean | undefined
|
|
78520
78635
|
can_unlock_with_code?: boolean | undefined
|
|
78521
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
|
|
78522
78642
|
can_simulate_hub_connection?: boolean | undefined
|
|
78523
78643
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
78524
78644
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -81514,6 +81634,9 @@ export type Routes = {
|
|
|
81514
81634
|
| 'can_simulate_disconnection'
|
|
81515
81635
|
| 'can_unlock_with_code'
|
|
81516
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'
|
|
81517
81640
|
| 'can_simulate_hub_connection'
|
|
81518
81641
|
| 'can_simulate_hub_disconnection'
|
|
81519
81642
|
| 'can_simulate_paid_subscription'
|
|
@@ -81535,6 +81658,9 @@ export type Routes = {
|
|
|
81535
81658
|
| 'can_simulate_disconnection'
|
|
81536
81659
|
| 'can_unlock_with_code'
|
|
81537
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'
|
|
81538
81664
|
| 'can_simulate_hub_connection'
|
|
81539
81665
|
| 'can_simulate_hub_disconnection'
|
|
81540
81666
|
| 'can_simulate_paid_subscription'
|
|
@@ -83054,6 +83180,11 @@ export type Routes = {
|
|
|
83054
83180
|
can_simulate_disconnection?: boolean | undefined
|
|
83055
83181
|
can_unlock_with_code?: boolean | undefined
|
|
83056
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
|
|
83057
83188
|
can_simulate_hub_connection?: boolean | undefined
|
|
83058
83189
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
83059
83190
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -84562,6 +84693,11 @@ export type Routes = {
|
|
|
84562
84693
|
can_simulate_disconnection?: boolean | undefined
|
|
84563
84694
|
can_unlock_with_code?: boolean | undefined
|
|
84564
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
|
|
84565
84701
|
can_simulate_hub_connection?: boolean | undefined
|
|
84566
84702
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
84567
84703
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -92821,6 +92957,11 @@ export type Routes = {
|
|
|
92821
92957
|
can_simulate_disconnection?: boolean | undefined
|
|
92822
92958
|
can_unlock_with_code?: boolean | undefined
|
|
92823
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
|
|
92824
92965
|
can_simulate_hub_connection?: boolean | undefined
|
|
92825
92966
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
92826
92967
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -94331,6 +94472,11 @@ export type Routes = {
|
|
|
94331
94472
|
can_simulate_disconnection?: boolean | undefined
|
|
94332
94473
|
can_unlock_with_code?: boolean | undefined
|
|
94333
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
|
|
94334
94480
|
can_simulate_hub_connection?: boolean | undefined
|
|
94335
94481
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
94336
94482
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -96721,6 +96867,15 @@ export type Routes = {
|
|
|
96721
96867
|
can_simulate_disconnection?: boolean | undefined
|
|
96722
96868
|
can_unlock_with_code?: boolean | undefined
|
|
96723
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
|
|
96724
96879
|
can_simulate_hub_connection?: boolean | undefined
|
|
96725
96880
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
96726
96881
|
can_simulate_paid_subscription?: boolean | undefined
|
|
@@ -99936,6 +100091,15 @@ export type Routes = {
|
|
|
99936
100091
|
can_simulate_disconnection?: boolean | undefined
|
|
99937
100092
|
can_unlock_with_code?: boolean | undefined
|
|
99938
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
|
|
99939
100103
|
can_simulate_hub_connection?: boolean | undefined
|
|
99940
100104
|
can_simulate_hub_disconnection?: boolean | undefined
|
|
99941
100105
|
can_simulate_paid_subscription?: boolean | undefined
|