@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
|
@@ -8268,6 +8268,13 @@ export default {
|
|
|
8268
8268
|
can_hvac_heat_cool: { type: 'boolean' },
|
|
8269
8269
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
8270
8270
|
can_program_online_access_codes: { type: 'boolean' },
|
|
8271
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
8272
|
+
type: 'boolean',
|
|
8273
|
+
},
|
|
8274
|
+
can_program_thermostat_programs_as_same_each_day: { type: 'boolean' },
|
|
8275
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
8276
|
+
type: 'boolean',
|
|
8277
|
+
},
|
|
8271
8278
|
can_remotely_lock: { type: 'boolean' },
|
|
8272
8279
|
can_remotely_unlock: { type: 'boolean' },
|
|
8273
8280
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
@@ -10917,6 +10924,12 @@ export default {
|
|
|
10917
10924
|
type: 'number',
|
|
10918
10925
|
'x-property-group-key': 'thermostats',
|
|
10919
10926
|
},
|
|
10927
|
+
max_unique_climate_presets_per_thermostat_weekly_program: {
|
|
10928
|
+
description: 'Maximum number of climate presets that the thermostat can support for weekly programming.',
|
|
10929
|
+
format: 'float',
|
|
10930
|
+
type: 'number',
|
|
10931
|
+
'x-property-group-key': 'thermostats',
|
|
10932
|
+
},
|
|
10920
10933
|
min_cooling_set_point_celsius: {
|
|
10921
10934
|
description: 'Minimum [cooling set point](https://docs.seam.co/latest/capability-guides/thermostats/understanding-thermostat-concepts/set-points#cooling-set-point) in °C.',
|
|
10922
10935
|
format: 'float',
|
|
@@ -11595,6 +11608,13 @@ export default {
|
|
|
11595
11608
|
can_hvac_heat_cool: { type: 'boolean' },
|
|
11596
11609
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
11597
11610
|
can_program_online_access_codes: { type: 'boolean' },
|
|
11611
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
11612
|
+
type: 'boolean',
|
|
11613
|
+
},
|
|
11614
|
+
can_program_thermostat_programs_as_same_each_day: { type: 'boolean' },
|
|
11615
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
11616
|
+
type: 'boolean',
|
|
11617
|
+
},
|
|
11598
11618
|
can_remotely_lock: { type: 'boolean' },
|
|
11599
11619
|
can_remotely_unlock: { type: 'boolean' },
|
|
11600
11620
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
@@ -21506,6 +21526,13 @@ export default {
|
|
|
21506
21526
|
can_hvac_heat_cool: { type: 'boolean' },
|
|
21507
21527
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
21508
21528
|
can_program_online_access_codes: { type: 'boolean' },
|
|
21529
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
21530
|
+
type: 'boolean',
|
|
21531
|
+
},
|
|
21532
|
+
can_program_thermostat_programs_as_same_each_day: { type: 'boolean' },
|
|
21533
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
21534
|
+
type: 'boolean',
|
|
21535
|
+
},
|
|
21509
21536
|
can_remotely_lock: { type: 'boolean' },
|
|
21510
21537
|
can_remotely_unlock: { type: 'boolean' },
|
|
21511
21538
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
@@ -37561,6 +37588,9 @@ export default {
|
|
|
37561
37588
|
'can_simulate_disconnection',
|
|
37562
37589
|
'can_unlock_with_code',
|
|
37563
37590
|
'can_run_thermostat_programs',
|
|
37591
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
37592
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
37593
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
37564
37594
|
'can_simulate_hub_connection',
|
|
37565
37595
|
'can_simulate_hub_disconnection',
|
|
37566
37596
|
'can_simulate_paid_subscription',
|
|
@@ -37590,6 +37620,9 @@ export default {
|
|
|
37590
37620
|
'can_simulate_disconnection',
|
|
37591
37621
|
'can_unlock_with_code',
|
|
37592
37622
|
'can_run_thermostat_programs',
|
|
37623
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
37624
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
37625
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
37593
37626
|
'can_simulate_hub_connection',
|
|
37594
37627
|
'can_simulate_hub_disconnection',
|
|
37595
37628
|
'can_simulate_paid_subscription',
|
|
@@ -37861,6 +37894,9 @@ export default {
|
|
|
37861
37894
|
'can_simulate_disconnection',
|
|
37862
37895
|
'can_unlock_with_code',
|
|
37863
37896
|
'can_run_thermostat_programs',
|
|
37897
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
37898
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
37899
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
37864
37900
|
'can_simulate_hub_connection',
|
|
37865
37901
|
'can_simulate_hub_disconnection',
|
|
37866
37902
|
'can_simulate_paid_subscription',
|
|
@@ -37886,6 +37922,9 @@ export default {
|
|
|
37886
37922
|
'can_simulate_disconnection',
|
|
37887
37923
|
'can_unlock_with_code',
|
|
37888
37924
|
'can_run_thermostat_programs',
|
|
37925
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
37926
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
37927
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
37889
37928
|
'can_simulate_hub_connection',
|
|
37890
37929
|
'can_simulate_hub_disconnection',
|
|
37891
37930
|
'can_simulate_paid_subscription',
|
|
@@ -38849,6 +38888,9 @@ export default {
|
|
|
38849
38888
|
'can_simulate_disconnection',
|
|
38850
38889
|
'can_unlock_with_code',
|
|
38851
38890
|
'can_run_thermostat_programs',
|
|
38891
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
38892
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
38893
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
38852
38894
|
'can_simulate_hub_connection',
|
|
38853
38895
|
'can_simulate_hub_disconnection',
|
|
38854
38896
|
'can_simulate_paid_subscription',
|
|
@@ -38878,6 +38920,9 @@ export default {
|
|
|
38878
38920
|
'can_simulate_disconnection',
|
|
38879
38921
|
'can_unlock_with_code',
|
|
38880
38922
|
'can_run_thermostat_programs',
|
|
38923
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
38924
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
38925
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
38881
38926
|
'can_simulate_hub_connection',
|
|
38882
38927
|
'can_simulate_hub_disconnection',
|
|
38883
38928
|
'can_simulate_paid_subscription',
|
|
@@ -39157,6 +39202,9 @@ export default {
|
|
|
39157
39202
|
'can_simulate_disconnection',
|
|
39158
39203
|
'can_unlock_with_code',
|
|
39159
39204
|
'can_run_thermostat_programs',
|
|
39205
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
39206
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
39207
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
39160
39208
|
'can_simulate_hub_connection',
|
|
39161
39209
|
'can_simulate_hub_disconnection',
|
|
39162
39210
|
'can_simulate_paid_subscription',
|
|
@@ -39182,6 +39230,9 @@ export default {
|
|
|
39182
39230
|
'can_simulate_disconnection',
|
|
39183
39231
|
'can_unlock_with_code',
|
|
39184
39232
|
'can_run_thermostat_programs',
|
|
39233
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
39234
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
39235
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
39185
39236
|
'can_simulate_hub_connection',
|
|
39186
39237
|
'can_simulate_hub_disconnection',
|
|
39187
39238
|
'can_simulate_paid_subscription',
|
|
@@ -41105,6 +41156,9 @@ export default {
|
|
|
41105
41156
|
'can_simulate_disconnection',
|
|
41106
41157
|
'can_unlock_with_code',
|
|
41107
41158
|
'can_run_thermostat_programs',
|
|
41159
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41160
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41161
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41108
41162
|
'can_simulate_hub_connection',
|
|
41109
41163
|
'can_simulate_hub_disconnection',
|
|
41110
41164
|
'can_simulate_paid_subscription',
|
|
@@ -41134,6 +41188,9 @@ export default {
|
|
|
41134
41188
|
'can_simulate_disconnection',
|
|
41135
41189
|
'can_unlock_with_code',
|
|
41136
41190
|
'can_run_thermostat_programs',
|
|
41191
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41192
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41193
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41137
41194
|
'can_simulate_hub_connection',
|
|
41138
41195
|
'can_simulate_hub_disconnection',
|
|
41139
41196
|
'can_simulate_paid_subscription',
|
|
@@ -41344,6 +41401,9 @@ export default {
|
|
|
41344
41401
|
'can_simulate_disconnection',
|
|
41345
41402
|
'can_unlock_with_code',
|
|
41346
41403
|
'can_run_thermostat_programs',
|
|
41404
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41405
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41406
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41347
41407
|
'can_simulate_hub_connection',
|
|
41348
41408
|
'can_simulate_hub_disconnection',
|
|
41349
41409
|
'can_simulate_paid_subscription',
|
|
@@ -41369,6 +41429,9 @@ export default {
|
|
|
41369
41429
|
'can_simulate_disconnection',
|
|
41370
41430
|
'can_unlock_with_code',
|
|
41371
41431
|
'can_run_thermostat_programs',
|
|
41432
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41433
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41434
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41372
41435
|
'can_simulate_hub_connection',
|
|
41373
41436
|
'can_simulate_hub_disconnection',
|
|
41374
41437
|
'can_simulate_paid_subscription',
|
|
@@ -41883,6 +41946,9 @@ export default {
|
|
|
41883
41946
|
'can_simulate_disconnection',
|
|
41884
41947
|
'can_unlock_with_code',
|
|
41885
41948
|
'can_run_thermostat_programs',
|
|
41949
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41950
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41951
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41886
41952
|
'can_simulate_hub_connection',
|
|
41887
41953
|
'can_simulate_hub_disconnection',
|
|
41888
41954
|
'can_simulate_paid_subscription',
|
|
@@ -41912,6 +41978,9 @@ export default {
|
|
|
41912
41978
|
'can_simulate_disconnection',
|
|
41913
41979
|
'can_unlock_with_code',
|
|
41914
41980
|
'can_run_thermostat_programs',
|
|
41981
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
41982
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
41983
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
41915
41984
|
'can_simulate_hub_connection',
|
|
41916
41985
|
'can_simulate_hub_disconnection',
|
|
41917
41986
|
'can_simulate_paid_subscription',
|
|
@@ -42066,6 +42135,9 @@ export default {
|
|
|
42066
42135
|
'can_simulate_disconnection',
|
|
42067
42136
|
'can_unlock_with_code',
|
|
42068
42137
|
'can_run_thermostat_programs',
|
|
42138
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
42139
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
42140
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
42069
42141
|
'can_simulate_hub_connection',
|
|
42070
42142
|
'can_simulate_hub_disconnection',
|
|
42071
42143
|
'can_simulate_paid_subscription',
|
|
@@ -42091,6 +42163,9 @@ export default {
|
|
|
42091
42163
|
'can_simulate_disconnection',
|
|
42092
42164
|
'can_unlock_with_code',
|
|
42093
42165
|
'can_run_thermostat_programs',
|
|
42166
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
42167
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
42168
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
42094
42169
|
'can_simulate_hub_connection',
|
|
42095
42170
|
'can_simulate_hub_disconnection',
|
|
42096
42171
|
'can_simulate_paid_subscription',
|
|
@@ -49945,6 +50020,9 @@ export default {
|
|
|
49945
50020
|
'can_simulate_disconnection',
|
|
49946
50021
|
'can_unlock_with_code',
|
|
49947
50022
|
'can_run_thermostat_programs',
|
|
50023
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
50024
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
50025
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
49948
50026
|
'can_simulate_hub_connection',
|
|
49949
50027
|
'can_simulate_hub_disconnection',
|
|
49950
50028
|
'can_simulate_paid_subscription',
|
|
@@ -49974,6 +50052,9 @@ export default {
|
|
|
49974
50052
|
'can_simulate_disconnection',
|
|
49975
50053
|
'can_unlock_with_code',
|
|
49976
50054
|
'can_run_thermostat_programs',
|
|
50055
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
50056
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
50057
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
49977
50058
|
'can_simulate_hub_connection',
|
|
49978
50059
|
'can_simulate_hub_disconnection',
|
|
49979
50060
|
'can_simulate_paid_subscription',
|
|
@@ -50142,6 +50223,9 @@ export default {
|
|
|
50142
50223
|
'can_simulate_disconnection',
|
|
50143
50224
|
'can_unlock_with_code',
|
|
50144
50225
|
'can_run_thermostat_programs',
|
|
50226
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
50227
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
50228
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
50145
50229
|
'can_simulate_hub_connection',
|
|
50146
50230
|
'can_simulate_hub_disconnection',
|
|
50147
50231
|
'can_simulate_paid_subscription',
|
|
@@ -50167,6 +50251,9 @@ export default {
|
|
|
50167
50251
|
'can_simulate_disconnection',
|
|
50168
50252
|
'can_unlock_with_code',
|
|
50169
50253
|
'can_run_thermostat_programs',
|
|
50254
|
+
'can_program_thermostat_programs_as_weekday_weekend',
|
|
50255
|
+
'can_program_thermostat_programs_as_different_each_day',
|
|
50256
|
+
'can_program_thermostat_programs_as_same_each_day',
|
|
50170
50257
|
'can_simulate_hub_connection',
|
|
50171
50258
|
'can_simulate_hub_disconnection',
|
|
50172
50259
|
'can_simulate_paid_subscription',
|