@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
|
@@ -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' },
|
|
@@ -11601,6 +11608,13 @@ export default {
|
|
|
11601
11608
|
can_hvac_heat_cool: { type: 'boolean' },
|
|
11602
11609
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
11603
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
|
+
},
|
|
11604
11618
|
can_remotely_lock: { type: 'boolean' },
|
|
11605
11619
|
can_remotely_unlock: { type: 'boolean' },
|
|
11606
11620
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
@@ -21512,6 +21526,13 @@ export default {
|
|
|
21512
21526
|
can_hvac_heat_cool: { type: 'boolean' },
|
|
21513
21527
|
can_program_offline_access_codes: { type: 'boolean' },
|
|
21514
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
|
+
},
|
|
21515
21536
|
can_remotely_lock: { type: 'boolean' },
|
|
21516
21537
|
can_remotely_unlock: { type: 'boolean' },
|
|
21517
21538
|
can_run_thermostat_programs: { type: 'boolean' },
|
|
@@ -37567,6 +37588,9 @@ export default {
|
|
|
37567
37588
|
'can_simulate_disconnection',
|
|
37568
37589
|
'can_unlock_with_code',
|
|
37569
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',
|
|
37570
37594
|
'can_simulate_hub_connection',
|
|
37571
37595
|
'can_simulate_hub_disconnection',
|
|
37572
37596
|
'can_simulate_paid_subscription',
|
|
@@ -37596,6 +37620,9 @@ export default {
|
|
|
37596
37620
|
'can_simulate_disconnection',
|
|
37597
37621
|
'can_unlock_with_code',
|
|
37598
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',
|
|
37599
37626
|
'can_simulate_hub_connection',
|
|
37600
37627
|
'can_simulate_hub_disconnection',
|
|
37601
37628
|
'can_simulate_paid_subscription',
|
|
@@ -37867,6 +37894,9 @@ export default {
|
|
|
37867
37894
|
'can_simulate_disconnection',
|
|
37868
37895
|
'can_unlock_with_code',
|
|
37869
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',
|
|
37870
37900
|
'can_simulate_hub_connection',
|
|
37871
37901
|
'can_simulate_hub_disconnection',
|
|
37872
37902
|
'can_simulate_paid_subscription',
|
|
@@ -37892,6 +37922,9 @@ export default {
|
|
|
37892
37922
|
'can_simulate_disconnection',
|
|
37893
37923
|
'can_unlock_with_code',
|
|
37894
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',
|
|
37895
37928
|
'can_simulate_hub_connection',
|
|
37896
37929
|
'can_simulate_hub_disconnection',
|
|
37897
37930
|
'can_simulate_paid_subscription',
|
|
@@ -38855,6 +38888,9 @@ export default {
|
|
|
38855
38888
|
'can_simulate_disconnection',
|
|
38856
38889
|
'can_unlock_with_code',
|
|
38857
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',
|
|
38858
38894
|
'can_simulate_hub_connection',
|
|
38859
38895
|
'can_simulate_hub_disconnection',
|
|
38860
38896
|
'can_simulate_paid_subscription',
|
|
@@ -38884,6 +38920,9 @@ export default {
|
|
|
38884
38920
|
'can_simulate_disconnection',
|
|
38885
38921
|
'can_unlock_with_code',
|
|
38886
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',
|
|
38887
38926
|
'can_simulate_hub_connection',
|
|
38888
38927
|
'can_simulate_hub_disconnection',
|
|
38889
38928
|
'can_simulate_paid_subscription',
|
|
@@ -39163,6 +39202,9 @@ export default {
|
|
|
39163
39202
|
'can_simulate_disconnection',
|
|
39164
39203
|
'can_unlock_with_code',
|
|
39165
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',
|
|
39166
39208
|
'can_simulate_hub_connection',
|
|
39167
39209
|
'can_simulate_hub_disconnection',
|
|
39168
39210
|
'can_simulate_paid_subscription',
|
|
@@ -39188,6 +39230,9 @@ export default {
|
|
|
39188
39230
|
'can_simulate_disconnection',
|
|
39189
39231
|
'can_unlock_with_code',
|
|
39190
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',
|
|
39191
39236
|
'can_simulate_hub_connection',
|
|
39192
39237
|
'can_simulate_hub_disconnection',
|
|
39193
39238
|
'can_simulate_paid_subscription',
|
|
@@ -41111,6 +41156,9 @@ export default {
|
|
|
41111
41156
|
'can_simulate_disconnection',
|
|
41112
41157
|
'can_unlock_with_code',
|
|
41113
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',
|
|
41114
41162
|
'can_simulate_hub_connection',
|
|
41115
41163
|
'can_simulate_hub_disconnection',
|
|
41116
41164
|
'can_simulate_paid_subscription',
|
|
@@ -41140,6 +41188,9 @@ export default {
|
|
|
41140
41188
|
'can_simulate_disconnection',
|
|
41141
41189
|
'can_unlock_with_code',
|
|
41142
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',
|
|
41143
41194
|
'can_simulate_hub_connection',
|
|
41144
41195
|
'can_simulate_hub_disconnection',
|
|
41145
41196
|
'can_simulate_paid_subscription',
|
|
@@ -41350,6 +41401,9 @@ export default {
|
|
|
41350
41401
|
'can_simulate_disconnection',
|
|
41351
41402
|
'can_unlock_with_code',
|
|
41352
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',
|
|
41353
41407
|
'can_simulate_hub_connection',
|
|
41354
41408
|
'can_simulate_hub_disconnection',
|
|
41355
41409
|
'can_simulate_paid_subscription',
|
|
@@ -41375,6 +41429,9 @@ export default {
|
|
|
41375
41429
|
'can_simulate_disconnection',
|
|
41376
41430
|
'can_unlock_with_code',
|
|
41377
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',
|
|
41378
41435
|
'can_simulate_hub_connection',
|
|
41379
41436
|
'can_simulate_hub_disconnection',
|
|
41380
41437
|
'can_simulate_paid_subscription',
|
|
@@ -41889,6 +41946,9 @@ export default {
|
|
|
41889
41946
|
'can_simulate_disconnection',
|
|
41890
41947
|
'can_unlock_with_code',
|
|
41891
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',
|
|
41892
41952
|
'can_simulate_hub_connection',
|
|
41893
41953
|
'can_simulate_hub_disconnection',
|
|
41894
41954
|
'can_simulate_paid_subscription',
|
|
@@ -41918,6 +41978,9 @@ export default {
|
|
|
41918
41978
|
'can_simulate_disconnection',
|
|
41919
41979
|
'can_unlock_with_code',
|
|
41920
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',
|
|
41921
41984
|
'can_simulate_hub_connection',
|
|
41922
41985
|
'can_simulate_hub_disconnection',
|
|
41923
41986
|
'can_simulate_paid_subscription',
|
|
@@ -42072,6 +42135,9 @@ export default {
|
|
|
42072
42135
|
'can_simulate_disconnection',
|
|
42073
42136
|
'can_unlock_with_code',
|
|
42074
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',
|
|
42075
42141
|
'can_simulate_hub_connection',
|
|
42076
42142
|
'can_simulate_hub_disconnection',
|
|
42077
42143
|
'can_simulate_paid_subscription',
|
|
@@ -42097,6 +42163,9 @@ export default {
|
|
|
42097
42163
|
'can_simulate_disconnection',
|
|
42098
42164
|
'can_unlock_with_code',
|
|
42099
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',
|
|
42100
42169
|
'can_simulate_hub_connection',
|
|
42101
42170
|
'can_simulate_hub_disconnection',
|
|
42102
42171
|
'can_simulate_paid_subscription',
|
|
@@ -49951,6 +50020,9 @@ export default {
|
|
|
49951
50020
|
'can_simulate_disconnection',
|
|
49952
50021
|
'can_unlock_with_code',
|
|
49953
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',
|
|
49954
50026
|
'can_simulate_hub_connection',
|
|
49955
50027
|
'can_simulate_hub_disconnection',
|
|
49956
50028
|
'can_simulate_paid_subscription',
|
|
@@ -49980,6 +50052,9 @@ export default {
|
|
|
49980
50052
|
'can_simulate_disconnection',
|
|
49981
50053
|
'can_unlock_with_code',
|
|
49982
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',
|
|
49983
50058
|
'can_simulate_hub_connection',
|
|
49984
50059
|
'can_simulate_hub_disconnection',
|
|
49985
50060
|
'can_simulate_paid_subscription',
|
|
@@ -50148,6 +50223,9 @@ export default {
|
|
|
50148
50223
|
'can_simulate_disconnection',
|
|
50149
50224
|
'can_unlock_with_code',
|
|
50150
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',
|
|
50151
50229
|
'can_simulate_hub_connection',
|
|
50152
50230
|
'can_simulate_hub_disconnection',
|
|
50153
50231
|
'can_simulate_paid_subscription',
|
|
@@ -50173,6 +50251,9 @@ export default {
|
|
|
50173
50251
|
'can_simulate_disconnection',
|
|
50174
50252
|
'can_unlock_with_code',
|
|
50175
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',
|
|
50176
50257
|
'can_simulate_hub_connection',
|
|
50177
50258
|
'can_simulate_hub_disconnection',
|
|
50178
50259
|
'can_simulate_paid_subscription',
|