@seamapi/types 1.466.0 → 1.467.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/connect.cjs +70 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +180 -10
- package/dist/index.cjs +70 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +23 -0
- package/lib/seam/connect/openapi.js +35 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +37 -0
- package/src/lib/seam/connect/route-types.ts +168 -0
|
@@ -12548,6 +12548,14 @@ export type Routes = {
|
|
|
12548
12548
|
| undefined
|
|
12549
12549
|
)
|
|
12550
12550
|
| undefined
|
|
12551
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
12552
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
12553
|
+
| (number | undefined)
|
|
12554
|
+
| undefined
|
|
12555
|
+
/** 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. */
|
|
12556
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
12557
|
+
| (number | undefined)
|
|
12558
|
+
| undefined
|
|
12551
12559
|
})
|
|
12552
12560
|
/** Location information for the device. */
|
|
12553
12561
|
location: {
|
|
@@ -12892,6 +12900,7 @@ export type Routes = {
|
|
|
12892
12900
|
can_simulate_connection?: boolean | undefined
|
|
12893
12901
|
can_simulate_disconnection?: boolean | undefined
|
|
12894
12902
|
can_unlock_with_code?: boolean | undefined
|
|
12903
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
12895
12904
|
}[]
|
|
12896
12905
|
| undefined
|
|
12897
12906
|
acs_entrances?:
|
|
@@ -16257,6 +16266,14 @@ export type Routes = {
|
|
|
16257
16266
|
| undefined
|
|
16258
16267
|
)
|
|
16259
16268
|
| undefined
|
|
16269
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
16270
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
16271
|
+
| (number | undefined)
|
|
16272
|
+
| undefined
|
|
16273
|
+
/** 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. */
|
|
16274
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
16275
|
+
| (number | undefined)
|
|
16276
|
+
| undefined
|
|
16260
16277
|
})
|
|
16261
16278
|
/** Location information for the device. */
|
|
16262
16279
|
location: {
|
|
@@ -16601,6 +16618,7 @@ export type Routes = {
|
|
|
16601
16618
|
can_simulate_connection?: boolean | undefined
|
|
16602
16619
|
can_simulate_disconnection?: boolean | undefined
|
|
16603
16620
|
can_unlock_with_code?: boolean | undefined
|
|
16621
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
16604
16622
|
}[]
|
|
16605
16623
|
| undefined
|
|
16606
16624
|
acs_entrances?:
|
|
@@ -19461,6 +19479,7 @@ export type Routes = {
|
|
|
19461
19479
|
can_simulate_connection?: boolean | undefined
|
|
19462
19480
|
can_simulate_disconnection?: boolean | undefined
|
|
19463
19481
|
can_unlock_with_code?: boolean | undefined
|
|
19482
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
19464
19483
|
}[]
|
|
19465
19484
|
| undefined
|
|
19466
19485
|
connect_webviews?:
|
|
@@ -33702,6 +33721,14 @@ export type Routes = {
|
|
|
33702
33721
|
| undefined
|
|
33703
33722
|
)
|
|
33704
33723
|
| undefined
|
|
33724
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
33725
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
33726
|
+
| (number | undefined)
|
|
33727
|
+
| undefined
|
|
33728
|
+
/** 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. */
|
|
33729
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
33730
|
+
| (number | undefined)
|
|
33731
|
+
| undefined
|
|
33705
33732
|
})
|
|
33706
33733
|
/** Location information for the device. */
|
|
33707
33734
|
location: {
|
|
@@ -34046,6 +34073,7 @@ export type Routes = {
|
|
|
34046
34073
|
can_simulate_connection?: boolean | undefined
|
|
34047
34074
|
can_simulate_disconnection?: boolean | undefined
|
|
34048
34075
|
can_unlock_with_code?: boolean | undefined
|
|
34076
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
34049
34077
|
}
|
|
34050
34078
|
}
|
|
34051
34079
|
}
|
|
@@ -34226,6 +34254,7 @@ export type Routes = {
|
|
|
34226
34254
|
| 'can_simulate_connection'
|
|
34227
34255
|
| 'can_simulate_disconnection'
|
|
34228
34256
|
| 'can_unlock_with_code'
|
|
34257
|
+
| 'can_run_thermostat_programs'
|
|
34229
34258
|
)[]
|
|
34230
34259
|
| undefined
|
|
34231
34260
|
/** */
|
|
@@ -34243,6 +34272,7 @@ export type Routes = {
|
|
|
34243
34272
|
| 'can_simulate_connection'
|
|
34244
34273
|
| 'can_simulate_disconnection'
|
|
34245
34274
|
| 'can_unlock_with_code'
|
|
34275
|
+
| 'can_run_thermostat_programs'
|
|
34246
34276
|
)[]
|
|
34247
34277
|
| undefined
|
|
34248
34278
|
/**
|
|
@@ -35408,6 +35438,14 @@ export type Routes = {
|
|
|
35408
35438
|
| undefined
|
|
35409
35439
|
)
|
|
35410
35440
|
| undefined
|
|
35441
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
35442
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
35443
|
+
| (number | undefined)
|
|
35444
|
+
| undefined
|
|
35445
|
+
/** 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. */
|
|
35446
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
35447
|
+
| (number | undefined)
|
|
35448
|
+
| undefined
|
|
35411
35449
|
})
|
|
35412
35450
|
/** Location information for the device. */
|
|
35413
35451
|
location: {
|
|
@@ -35752,6 +35790,7 @@ export type Routes = {
|
|
|
35752
35790
|
can_simulate_connection?: boolean | undefined
|
|
35753
35791
|
can_simulate_disconnection?: boolean | undefined
|
|
35754
35792
|
can_unlock_with_code?: boolean | undefined
|
|
35793
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
35755
35794
|
}[]
|
|
35756
35795
|
/** Information about the current page of results. */
|
|
35757
35796
|
pagination: {
|
|
@@ -35854,6 +35893,7 @@ export type Routes = {
|
|
|
35854
35893
|
can_simulate_connection?: boolean | undefined
|
|
35855
35894
|
can_simulate_disconnection?: boolean | undefined
|
|
35856
35895
|
can_unlock_with_code?: boolean | undefined
|
|
35896
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
35857
35897
|
}[]
|
|
35858
35898
|
}
|
|
35859
35899
|
}
|
|
@@ -36398,6 +36438,7 @@ export type Routes = {
|
|
|
36398
36438
|
can_simulate_connection?: boolean | undefined
|
|
36399
36439
|
can_simulate_disconnection?: boolean | undefined
|
|
36400
36440
|
can_unlock_with_code?: boolean | undefined
|
|
36441
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
36401
36442
|
}
|
|
36402
36443
|
}
|
|
36403
36444
|
}
|
|
@@ -36578,6 +36619,7 @@ export type Routes = {
|
|
|
36578
36619
|
| 'can_simulate_connection'
|
|
36579
36620
|
| 'can_simulate_disconnection'
|
|
36580
36621
|
| 'can_unlock_with_code'
|
|
36622
|
+
| 'can_run_thermostat_programs'
|
|
36581
36623
|
)[]
|
|
36582
36624
|
| undefined
|
|
36583
36625
|
/** */
|
|
@@ -36595,6 +36637,7 @@ export type Routes = {
|
|
|
36595
36637
|
| 'can_simulate_connection'
|
|
36596
36638
|
| 'can_simulate_disconnection'
|
|
36597
36639
|
| 'can_unlock_with_code'
|
|
36640
|
+
| 'can_run_thermostat_programs'
|
|
36598
36641
|
)[]
|
|
36599
36642
|
| undefined
|
|
36600
36643
|
/**
|
|
@@ -37076,6 +37119,7 @@ export type Routes = {
|
|
|
37076
37119
|
can_simulate_connection?: boolean | undefined
|
|
37077
37120
|
can_simulate_disconnection?: boolean | undefined
|
|
37078
37121
|
can_unlock_with_code?: boolean | undefined
|
|
37122
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
37079
37123
|
}[]
|
|
37080
37124
|
}
|
|
37081
37125
|
}
|
|
@@ -42930,6 +42974,14 @@ export type Routes = {
|
|
|
42930
42974
|
| undefined
|
|
42931
42975
|
)
|
|
42932
42976
|
| undefined
|
|
42977
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
42978
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
42979
|
+
| (number | undefined)
|
|
42980
|
+
| undefined
|
|
42981
|
+
/** 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. */
|
|
42982
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
42983
|
+
| (number | undefined)
|
|
42984
|
+
| undefined
|
|
42933
42985
|
})
|
|
42934
42986
|
/** Location information for the device. */
|
|
42935
42987
|
location: {
|
|
@@ -43274,6 +43326,7 @@ export type Routes = {
|
|
|
43274
43326
|
can_simulate_connection?: boolean | undefined
|
|
43275
43327
|
can_simulate_disconnection?: boolean | undefined
|
|
43276
43328
|
can_unlock_with_code?: boolean | undefined
|
|
43329
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
43277
43330
|
}
|
|
43278
43331
|
/** Represents a [device](https://docs.seam.co/latest/core-concepts/devices) that has been connected to Seam. */
|
|
43279
43332
|
device: {
|
|
@@ -44427,6 +44480,14 @@ export type Routes = {
|
|
|
44427
44480
|
| undefined
|
|
44428
44481
|
)
|
|
44429
44482
|
| undefined
|
|
44483
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
44484
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
44485
|
+
| (number | undefined)
|
|
44486
|
+
| undefined
|
|
44487
|
+
/** 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. */
|
|
44488
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
44489
|
+
| (number | undefined)
|
|
44490
|
+
| undefined
|
|
44430
44491
|
})
|
|
44431
44492
|
/** Location information for the device. */
|
|
44432
44493
|
location: {
|
|
@@ -44771,6 +44832,7 @@ export type Routes = {
|
|
|
44771
44832
|
can_simulate_connection?: boolean | undefined
|
|
44772
44833
|
can_simulate_disconnection?: boolean | undefined
|
|
44773
44834
|
can_unlock_with_code?: boolean | undefined
|
|
44835
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
44774
44836
|
}
|
|
44775
44837
|
}
|
|
44776
44838
|
}
|
|
@@ -44915,6 +44977,7 @@ export type Routes = {
|
|
|
44915
44977
|
| 'can_simulate_connection'
|
|
44916
44978
|
| 'can_simulate_disconnection'
|
|
44917
44979
|
| 'can_unlock_with_code'
|
|
44980
|
+
| 'can_run_thermostat_programs'
|
|
44918
44981
|
)[]
|
|
44919
44982
|
| undefined
|
|
44920
44983
|
/** */
|
|
@@ -44932,6 +44995,7 @@ export type Routes = {
|
|
|
44932
44995
|
| 'can_simulate_connection'
|
|
44933
44996
|
| 'can_simulate_disconnection'
|
|
44934
44997
|
| 'can_unlock_with_code'
|
|
44998
|
+
| 'can_run_thermostat_programs'
|
|
44935
44999
|
)[]
|
|
44936
45000
|
| undefined
|
|
44937
45001
|
/**
|
|
@@ -46097,6 +46161,14 @@ export type Routes = {
|
|
|
46097
46161
|
| undefined
|
|
46098
46162
|
)
|
|
46099
46163
|
| undefined
|
|
46164
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
46165
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
46166
|
+
| (number | undefined)
|
|
46167
|
+
| undefined
|
|
46168
|
+
/** 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. */
|
|
46169
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
46170
|
+
| (number | undefined)
|
|
46171
|
+
| undefined
|
|
46100
46172
|
})
|
|
46101
46173
|
/** Location information for the device. */
|
|
46102
46174
|
location: {
|
|
@@ -46441,6 +46513,7 @@ export type Routes = {
|
|
|
46441
46513
|
can_simulate_connection?: boolean | undefined
|
|
46442
46514
|
can_simulate_disconnection?: boolean | undefined
|
|
46443
46515
|
can_unlock_with_code?: boolean | undefined
|
|
46516
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
46444
46517
|
}[]
|
|
46445
46518
|
devices: {
|
|
46446
46519
|
/** ID of the device. */
|
|
@@ -47593,6 +47666,14 @@ export type Routes = {
|
|
|
47593
47666
|
| undefined
|
|
47594
47667
|
)
|
|
47595
47668
|
| undefined
|
|
47669
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
47670
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
47671
|
+
| (number | undefined)
|
|
47672
|
+
| undefined
|
|
47673
|
+
/** 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. */
|
|
47674
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
47675
|
+
| (number | undefined)
|
|
47676
|
+
| undefined
|
|
47596
47677
|
})
|
|
47597
47678
|
/** Location information for the device. */
|
|
47598
47679
|
location: {
|
|
@@ -47937,6 +48018,7 @@ export type Routes = {
|
|
|
47937
48018
|
can_simulate_connection?: boolean | undefined
|
|
47938
48019
|
can_simulate_disconnection?: boolean | undefined
|
|
47939
48020
|
can_unlock_with_code?: boolean | undefined
|
|
48021
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
47940
48022
|
}[]
|
|
47941
48023
|
}
|
|
47942
48024
|
}
|
|
@@ -53752,6 +53834,7 @@ export type Routes = {
|
|
|
53752
53834
|
| 'can_simulate_connection'
|
|
53753
53835
|
| 'can_simulate_disconnection'
|
|
53754
53836
|
| 'can_unlock_with_code'
|
|
53837
|
+
| 'can_run_thermostat_programs'
|
|
53755
53838
|
)[]
|
|
53756
53839
|
| undefined
|
|
53757
53840
|
/** */
|
|
@@ -53769,6 +53852,7 @@ export type Routes = {
|
|
|
53769
53852
|
| 'can_simulate_connection'
|
|
53770
53853
|
| 'can_simulate_disconnection'
|
|
53771
53854
|
| 'can_unlock_with_code'
|
|
53855
|
+
| 'can_run_thermostat_programs'
|
|
53772
53856
|
)[]
|
|
53773
53857
|
| undefined
|
|
53774
53858
|
/**
|
|
@@ -54934,6 +55018,14 @@ export type Routes = {
|
|
|
54934
55018
|
| undefined
|
|
54935
55019
|
)
|
|
54936
55020
|
| undefined
|
|
55021
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
55022
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
55023
|
+
| (number | undefined)
|
|
55024
|
+
| undefined
|
|
55025
|
+
/** 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. */
|
|
55026
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
55027
|
+
| (number | undefined)
|
|
55028
|
+
| undefined
|
|
54937
55029
|
})
|
|
54938
55030
|
/** Location information for the device. */
|
|
54939
55031
|
location: {
|
|
@@ -55278,6 +55370,7 @@ export type Routes = {
|
|
|
55278
55370
|
can_simulate_connection?: boolean | undefined
|
|
55279
55371
|
can_simulate_disconnection?: boolean | undefined
|
|
55280
55372
|
can_unlock_with_code?: boolean | undefined
|
|
55373
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
55281
55374
|
}[]
|
|
55282
55375
|
devices: {
|
|
55283
55376
|
/** ID of the device. */
|
|
@@ -56430,6 +56523,14 @@ export type Routes = {
|
|
|
56430
56523
|
| undefined
|
|
56431
56524
|
)
|
|
56432
56525
|
| undefined
|
|
56526
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
56527
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
56528
|
+
| (number | undefined)
|
|
56529
|
+
| undefined
|
|
56530
|
+
/** 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. */
|
|
56531
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
56532
|
+
| (number | undefined)
|
|
56533
|
+
| undefined
|
|
56433
56534
|
})
|
|
56434
56535
|
/** Location information for the device. */
|
|
56435
56536
|
location: {
|
|
@@ -56774,6 +56875,7 @@ export type Routes = {
|
|
|
56774
56875
|
can_simulate_connection?: boolean | undefined
|
|
56775
56876
|
can_simulate_disconnection?: boolean | undefined
|
|
56776
56877
|
can_unlock_with_code?: boolean | undefined
|
|
56878
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
56777
56879
|
}[]
|
|
56778
56880
|
}
|
|
56779
56881
|
}
|
|
@@ -63998,6 +64100,14 @@ export type Routes = {
|
|
|
63998
64100
|
| undefined
|
|
63999
64101
|
)
|
|
64000
64102
|
| undefined
|
|
64103
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
64104
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
64105
|
+
| (number | undefined)
|
|
64106
|
+
| undefined
|
|
64107
|
+
/** 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. */
|
|
64108
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
64109
|
+
| (number | undefined)
|
|
64110
|
+
| undefined
|
|
64001
64111
|
})
|
|
64002
64112
|
/** Location information for the device. */
|
|
64003
64113
|
location: {
|
|
@@ -64342,6 +64452,7 @@ export type Routes = {
|
|
|
64342
64452
|
can_simulate_connection?: boolean | undefined
|
|
64343
64453
|
can_simulate_disconnection?: boolean | undefined
|
|
64344
64454
|
can_unlock_with_code?: boolean | undefined
|
|
64455
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
64345
64456
|
}[]
|
|
64346
64457
|
| undefined
|
|
64347
64458
|
acs_entrances?:
|
|
@@ -70517,6 +70628,14 @@ export type Routes = {
|
|
|
70517
70628
|
| undefined
|
|
70518
70629
|
)
|
|
70519
70630
|
| undefined
|
|
70631
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
70632
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
70633
|
+
| (number | undefined)
|
|
70634
|
+
| undefined
|
|
70635
|
+
/** 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. */
|
|
70636
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
70637
|
+
| (number | undefined)
|
|
70638
|
+
| undefined
|
|
70520
70639
|
})
|
|
70521
70640
|
/** Location information for the device. */
|
|
70522
70641
|
location: {
|
|
@@ -70861,6 +70980,7 @@ export type Routes = {
|
|
|
70861
70980
|
can_simulate_connection?: boolean | undefined
|
|
70862
70981
|
can_simulate_disconnection?: boolean | undefined
|
|
70863
70982
|
can_unlock_with_code?: boolean | undefined
|
|
70983
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
70864
70984
|
}
|
|
70865
70985
|
}
|
|
70866
70986
|
}
|
|
@@ -73835,6 +73955,7 @@ export type Routes = {
|
|
|
73835
73955
|
| 'can_simulate_connection'
|
|
73836
73956
|
| 'can_simulate_disconnection'
|
|
73837
73957
|
| 'can_unlock_with_code'
|
|
73958
|
+
| 'can_run_thermostat_programs'
|
|
73838
73959
|
)[]
|
|
73839
73960
|
| undefined
|
|
73840
73961
|
/** */
|
|
@@ -73852,6 +73973,7 @@ export type Routes = {
|
|
|
73852
73973
|
| 'can_simulate_connection'
|
|
73853
73974
|
| 'can_simulate_disconnection'
|
|
73854
73975
|
| 'can_unlock_with_code'
|
|
73976
|
+
| 'can_run_thermostat_programs'
|
|
73855
73977
|
)[]
|
|
73856
73978
|
| undefined
|
|
73857
73979
|
/**
|
|
@@ -75017,6 +75139,14 @@ export type Routes = {
|
|
|
75017
75139
|
| undefined
|
|
75018
75140
|
)
|
|
75019
75141
|
| undefined
|
|
75142
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
75143
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
75144
|
+
| (number | undefined)
|
|
75145
|
+
| undefined
|
|
75146
|
+
/** 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. */
|
|
75147
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
75148
|
+
| (number | undefined)
|
|
75149
|
+
| undefined
|
|
75020
75150
|
})
|
|
75021
75151
|
/** Location information for the device. */
|
|
75022
75152
|
location: {
|
|
@@ -75361,6 +75491,7 @@ export type Routes = {
|
|
|
75361
75491
|
can_simulate_connection?: boolean | undefined
|
|
75362
75492
|
can_simulate_disconnection?: boolean | undefined
|
|
75363
75493
|
can_unlock_with_code?: boolean | undefined
|
|
75494
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
75364
75495
|
}[]
|
|
75365
75496
|
devices: {
|
|
75366
75497
|
/** ID of the device. */
|
|
@@ -76513,6 +76644,14 @@ export type Routes = {
|
|
|
76513
76644
|
| undefined
|
|
76514
76645
|
)
|
|
76515
76646
|
| undefined
|
|
76647
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
76648
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
76649
|
+
| (number | undefined)
|
|
76650
|
+
| undefined
|
|
76651
|
+
/** 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. */
|
|
76652
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
76653
|
+
| (number | undefined)
|
|
76654
|
+
| undefined
|
|
76516
76655
|
})
|
|
76517
76656
|
/** Location information for the device. */
|
|
76518
76657
|
location: {
|
|
@@ -76857,6 +76996,7 @@ export type Routes = {
|
|
|
76857
76996
|
can_simulate_connection?: boolean | undefined
|
|
76858
76997
|
can_simulate_disconnection?: boolean | undefined
|
|
76859
76998
|
can_unlock_with_code?: boolean | undefined
|
|
76999
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
76860
77000
|
}[]
|
|
76861
77001
|
}
|
|
76862
77002
|
}
|
|
@@ -85258,6 +85398,14 @@ export type Routes = {
|
|
|
85258
85398
|
| undefined
|
|
85259
85399
|
)
|
|
85260
85400
|
| undefined
|
|
85401
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
85402
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
85403
|
+
| (number | undefined)
|
|
85404
|
+
| undefined
|
|
85405
|
+
/** 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. */
|
|
85406
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
85407
|
+
| (number | undefined)
|
|
85408
|
+
| undefined
|
|
85261
85409
|
})
|
|
85262
85410
|
/** Location information for the device. */
|
|
85263
85411
|
location: {
|
|
@@ -85602,6 +85750,7 @@ export type Routes = {
|
|
|
85602
85750
|
can_simulate_connection?: boolean | undefined
|
|
85603
85751
|
can_simulate_disconnection?: boolean | undefined
|
|
85604
85752
|
can_unlock_with_code?: boolean | undefined
|
|
85753
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
85605
85754
|
}[]
|
|
85606
85755
|
/**
|
|
85607
85756
|
* @deprecated Use devices.*/
|
|
@@ -86756,6 +86905,14 @@ export type Routes = {
|
|
|
86756
86905
|
| undefined
|
|
86757
86906
|
)
|
|
86758
86907
|
| undefined
|
|
86908
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
86909
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
86910
|
+
| (number | undefined)
|
|
86911
|
+
| undefined
|
|
86912
|
+
/** 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. */
|
|
86913
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
86914
|
+
| (number | undefined)
|
|
86915
|
+
| undefined
|
|
86759
86916
|
})
|
|
86760
86917
|
/** Location information for the device. */
|
|
86761
86918
|
location: {
|
|
@@ -87100,6 +87257,7 @@ export type Routes = {
|
|
|
87100
87257
|
can_simulate_connection?: boolean | undefined
|
|
87101
87258
|
can_simulate_disconnection?: boolean | undefined
|
|
87102
87259
|
can_unlock_with_code?: boolean | undefined
|
|
87260
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
87103
87261
|
}[]
|
|
87104
87262
|
}
|
|
87105
87263
|
}
|
|
@@ -89033,6 +89191,14 @@ export type Routes = {
|
|
|
89033
89191
|
| undefined
|
|
89034
89192
|
)
|
|
89035
89193
|
| undefined
|
|
89194
|
+
/** Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour. */
|
|
89195
|
+
thermostat_daily_program_period_precision_minutes?:
|
|
89196
|
+
| (number | undefined)
|
|
89197
|
+
| undefined
|
|
89198
|
+
/** 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. */
|
|
89199
|
+
max_thermostat_daily_program_periods_per_day?:
|
|
89200
|
+
| (number | undefined)
|
|
89201
|
+
| undefined
|
|
89036
89202
|
})
|
|
89037
89203
|
/** Location information for the device. */
|
|
89038
89204
|
location: {
|
|
@@ -89377,6 +89543,7 @@ export type Routes = {
|
|
|
89377
89543
|
can_simulate_connection?: boolean | undefined
|
|
89378
89544
|
can_simulate_disconnection?: boolean | undefined
|
|
89379
89545
|
can_unlock_with_code?: boolean | undefined
|
|
89546
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
89380
89547
|
}[]
|
|
89381
89548
|
| undefined
|
|
89382
89549
|
acs_entrances?:
|
|
@@ -92237,6 +92404,7 @@ export type Routes = {
|
|
|
92237
92404
|
can_simulate_connection?: boolean | undefined
|
|
92238
92405
|
can_simulate_disconnection?: boolean | undefined
|
|
92239
92406
|
can_unlock_with_code?: boolean | undefined
|
|
92407
|
+
can_run_thermostat_programs?: boolean | undefined
|
|
92240
92408
|
}[]
|
|
92241
92409
|
| undefined
|
|
92242
92410
|
connect_webviews?:
|