@seamapi/types 1.579.0 → 1.581.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 +89 -5
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +303 -147
- package/dist/index.cjs +89 -5
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +278 -167
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +15 -15
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +15 -15
- package/lib/seam/connect/models/devices/device-provider.d.ts +9 -0
- package/lib/seam/connect/models/devices/device.d.ts +39 -21
- 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 +27 -15
- package/lib/seam/connect/models/events/devices.d.ts +2 -2
- package/lib/seam/connect/models/events/seam-event.d.ts +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +6 -6
- package/lib/seam/connect/models/thermostats/climate-preset.js +1 -1
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +30 -3
- package/lib/seam/connect/openapi.js +85 -4
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +127 -61
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/device.ts +3 -0
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +1 -1
- package/src/lib/seam/connect/openapi.ts +85 -4
- package/src/lib/seam/connect/route-types.ts +231 -51
package/dist/index.cjs
CHANGED
|
@@ -178,7 +178,7 @@ var climate_preset = zod.z.object({
|
|
|
178
178
|
can_delete: zod.z.boolean().describe(
|
|
179
179
|
"Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be deleted."
|
|
180
180
|
),
|
|
181
|
-
|
|
181
|
+
can_use_with_thermostat_daily_programs: zod.z.boolean().describe(
|
|
182
182
|
"Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program."
|
|
183
183
|
),
|
|
184
184
|
name: zod.z.string().nullable().default(null).optional().describe(
|
|
@@ -1180,6 +1180,9 @@ var device_capability_flags = zod.z.object({
|
|
|
1180
1180
|
can_simulate_disconnection: zod.z.boolean(),
|
|
1181
1181
|
can_unlock_with_code: zod.z.boolean(),
|
|
1182
1182
|
can_run_thermostat_programs: zod.z.boolean(),
|
|
1183
|
+
can_program_thermostat_programs_as_weekday_weekend: zod.z.boolean(),
|
|
1184
|
+
can_program_thermostat_programs_as_different_each_day: zod.z.boolean(),
|
|
1185
|
+
can_program_thermostat_programs_as_same_each_day: zod.z.boolean(),
|
|
1183
1186
|
can_simulate_hub_connection: zod.z.boolean(),
|
|
1184
1187
|
can_simulate_hub_disconnection: zod.z.boolean(),
|
|
1185
1188
|
can_simulate_paid_subscription: zod.z.boolean()
|
|
@@ -13965,6 +13968,13 @@ var openapi_default = {
|
|
|
13965
13968
|
can_hvac_heat_cool: { type: "boolean" },
|
|
13966
13969
|
can_program_offline_access_codes: { type: "boolean" },
|
|
13967
13970
|
can_program_online_access_codes: { type: "boolean" },
|
|
13971
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
13972
|
+
type: "boolean"
|
|
13973
|
+
},
|
|
13974
|
+
can_program_thermostat_programs_as_same_each_day: { type: "boolean" },
|
|
13975
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
13976
|
+
type: "boolean"
|
|
13977
|
+
},
|
|
13968
13978
|
can_remotely_lock: { type: "boolean" },
|
|
13969
13979
|
can_remotely_unlock: { type: "boolean" },
|
|
13970
13980
|
can_run_thermostat_programs: { type: "boolean" },
|
|
@@ -16225,7 +16235,7 @@ var openapi_default = {
|
|
|
16225
16235
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be edited.",
|
|
16226
16236
|
type: "boolean"
|
|
16227
16237
|
},
|
|
16228
|
-
|
|
16238
|
+
can_use_with_thermostat_daily_programs: {
|
|
16229
16239
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program.",
|
|
16230
16240
|
type: "boolean"
|
|
16231
16241
|
},
|
|
@@ -16320,7 +16330,7 @@ var openapi_default = {
|
|
|
16320
16330
|
"climate_preset_key",
|
|
16321
16331
|
"can_edit",
|
|
16322
16332
|
"can_delete",
|
|
16323
|
-
"
|
|
16333
|
+
"can_use_with_thermostat_daily_programs",
|
|
16324
16334
|
"display_name",
|
|
16325
16335
|
"manual_override_allowed"
|
|
16326
16336
|
],
|
|
@@ -16358,7 +16368,7 @@ var openapi_default = {
|
|
|
16358
16368
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be edited.",
|
|
16359
16369
|
type: "boolean"
|
|
16360
16370
|
},
|
|
16361
|
-
|
|
16371
|
+
can_use_with_thermostat_daily_programs: {
|
|
16362
16372
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program.",
|
|
16363
16373
|
type: "boolean"
|
|
16364
16374
|
},
|
|
@@ -16459,7 +16469,7 @@ var openapi_default = {
|
|
|
16459
16469
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be edited.",
|
|
16460
16470
|
type: "boolean"
|
|
16461
16471
|
},
|
|
16462
|
-
|
|
16472
|
+
can_use_with_thermostat_daily_programs: {
|
|
16463
16473
|
description: "Indicates whether the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) key can be programmed in a thermostat daily program.",
|
|
16464
16474
|
type: "boolean"
|
|
16465
16475
|
},
|
|
@@ -17298,6 +17308,13 @@ var openapi_default = {
|
|
|
17298
17308
|
can_hvac_heat_cool: { type: "boolean" },
|
|
17299
17309
|
can_program_offline_access_codes: { type: "boolean" },
|
|
17300
17310
|
can_program_online_access_codes: { type: "boolean" },
|
|
17311
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
17312
|
+
type: "boolean"
|
|
17313
|
+
},
|
|
17314
|
+
can_program_thermostat_programs_as_same_each_day: { type: "boolean" },
|
|
17315
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
17316
|
+
type: "boolean"
|
|
17317
|
+
},
|
|
17301
17318
|
can_remotely_lock: { type: "boolean" },
|
|
17302
17319
|
can_remotely_unlock: { type: "boolean" },
|
|
17303
17320
|
can_run_thermostat_programs: { type: "boolean" },
|
|
@@ -27209,6 +27226,13 @@ var openapi_default = {
|
|
|
27209
27226
|
can_hvac_heat_cool: { type: "boolean" },
|
|
27210
27227
|
can_program_offline_access_codes: { type: "boolean" },
|
|
27211
27228
|
can_program_online_access_codes: { type: "boolean" },
|
|
27229
|
+
can_program_thermostat_programs_as_different_each_day: {
|
|
27230
|
+
type: "boolean"
|
|
27231
|
+
},
|
|
27232
|
+
can_program_thermostat_programs_as_same_each_day: { type: "boolean" },
|
|
27233
|
+
can_program_thermostat_programs_as_weekday_weekend: {
|
|
27234
|
+
type: "boolean"
|
|
27235
|
+
},
|
|
27212
27236
|
can_remotely_lock: { type: "boolean" },
|
|
27213
27237
|
can_remotely_unlock: { type: "boolean" },
|
|
27214
27238
|
can_run_thermostat_programs: { type: "boolean" },
|
|
@@ -43264,6 +43288,9 @@ var openapi_default = {
|
|
|
43264
43288
|
"can_simulate_disconnection",
|
|
43265
43289
|
"can_unlock_with_code",
|
|
43266
43290
|
"can_run_thermostat_programs",
|
|
43291
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
43292
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
43293
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
43267
43294
|
"can_simulate_hub_connection",
|
|
43268
43295
|
"can_simulate_hub_disconnection",
|
|
43269
43296
|
"can_simulate_paid_subscription"
|
|
@@ -43293,6 +43320,9 @@ var openapi_default = {
|
|
|
43293
43320
|
"can_simulate_disconnection",
|
|
43294
43321
|
"can_unlock_with_code",
|
|
43295
43322
|
"can_run_thermostat_programs",
|
|
43323
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
43324
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
43325
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
43296
43326
|
"can_simulate_hub_connection",
|
|
43297
43327
|
"can_simulate_hub_disconnection",
|
|
43298
43328
|
"can_simulate_paid_subscription"
|
|
@@ -43564,6 +43594,9 @@ var openapi_default = {
|
|
|
43564
43594
|
"can_simulate_disconnection",
|
|
43565
43595
|
"can_unlock_with_code",
|
|
43566
43596
|
"can_run_thermostat_programs",
|
|
43597
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
43598
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
43599
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
43567
43600
|
"can_simulate_hub_connection",
|
|
43568
43601
|
"can_simulate_hub_disconnection",
|
|
43569
43602
|
"can_simulate_paid_subscription"
|
|
@@ -43589,6 +43622,9 @@ var openapi_default = {
|
|
|
43589
43622
|
"can_simulate_disconnection",
|
|
43590
43623
|
"can_unlock_with_code",
|
|
43591
43624
|
"can_run_thermostat_programs",
|
|
43625
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
43626
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
43627
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
43592
43628
|
"can_simulate_hub_connection",
|
|
43593
43629
|
"can_simulate_hub_disconnection",
|
|
43594
43630
|
"can_simulate_paid_subscription"
|
|
@@ -44552,6 +44588,9 @@ var openapi_default = {
|
|
|
44552
44588
|
"can_simulate_disconnection",
|
|
44553
44589
|
"can_unlock_with_code",
|
|
44554
44590
|
"can_run_thermostat_programs",
|
|
44591
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
44592
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
44593
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
44555
44594
|
"can_simulate_hub_connection",
|
|
44556
44595
|
"can_simulate_hub_disconnection",
|
|
44557
44596
|
"can_simulate_paid_subscription"
|
|
@@ -44581,6 +44620,9 @@ var openapi_default = {
|
|
|
44581
44620
|
"can_simulate_disconnection",
|
|
44582
44621
|
"can_unlock_with_code",
|
|
44583
44622
|
"can_run_thermostat_programs",
|
|
44623
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
44624
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
44625
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
44584
44626
|
"can_simulate_hub_connection",
|
|
44585
44627
|
"can_simulate_hub_disconnection",
|
|
44586
44628
|
"can_simulate_paid_subscription"
|
|
@@ -44860,6 +44902,9 @@ var openapi_default = {
|
|
|
44860
44902
|
"can_simulate_disconnection",
|
|
44861
44903
|
"can_unlock_with_code",
|
|
44862
44904
|
"can_run_thermostat_programs",
|
|
44905
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
44906
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
44907
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
44863
44908
|
"can_simulate_hub_connection",
|
|
44864
44909
|
"can_simulate_hub_disconnection",
|
|
44865
44910
|
"can_simulate_paid_subscription"
|
|
@@ -44885,6 +44930,9 @@ var openapi_default = {
|
|
|
44885
44930
|
"can_simulate_disconnection",
|
|
44886
44931
|
"can_unlock_with_code",
|
|
44887
44932
|
"can_run_thermostat_programs",
|
|
44933
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
44934
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
44935
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
44888
44936
|
"can_simulate_hub_connection",
|
|
44889
44937
|
"can_simulate_hub_disconnection",
|
|
44890
44938
|
"can_simulate_paid_subscription"
|
|
@@ -46808,6 +46856,9 @@ var openapi_default = {
|
|
|
46808
46856
|
"can_simulate_disconnection",
|
|
46809
46857
|
"can_unlock_with_code",
|
|
46810
46858
|
"can_run_thermostat_programs",
|
|
46859
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
46860
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
46861
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
46811
46862
|
"can_simulate_hub_connection",
|
|
46812
46863
|
"can_simulate_hub_disconnection",
|
|
46813
46864
|
"can_simulate_paid_subscription"
|
|
@@ -46837,6 +46888,9 @@ var openapi_default = {
|
|
|
46837
46888
|
"can_simulate_disconnection",
|
|
46838
46889
|
"can_unlock_with_code",
|
|
46839
46890
|
"can_run_thermostat_programs",
|
|
46891
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
46892
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
46893
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
46840
46894
|
"can_simulate_hub_connection",
|
|
46841
46895
|
"can_simulate_hub_disconnection",
|
|
46842
46896
|
"can_simulate_paid_subscription"
|
|
@@ -47047,6 +47101,9 @@ var openapi_default = {
|
|
|
47047
47101
|
"can_simulate_disconnection",
|
|
47048
47102
|
"can_unlock_with_code",
|
|
47049
47103
|
"can_run_thermostat_programs",
|
|
47104
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47105
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47106
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47050
47107
|
"can_simulate_hub_connection",
|
|
47051
47108
|
"can_simulate_hub_disconnection",
|
|
47052
47109
|
"can_simulate_paid_subscription"
|
|
@@ -47072,6 +47129,9 @@ var openapi_default = {
|
|
|
47072
47129
|
"can_simulate_disconnection",
|
|
47073
47130
|
"can_unlock_with_code",
|
|
47074
47131
|
"can_run_thermostat_programs",
|
|
47132
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47133
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47134
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47075
47135
|
"can_simulate_hub_connection",
|
|
47076
47136
|
"can_simulate_hub_disconnection",
|
|
47077
47137
|
"can_simulate_paid_subscription"
|
|
@@ -47586,6 +47646,9 @@ var openapi_default = {
|
|
|
47586
47646
|
"can_simulate_disconnection",
|
|
47587
47647
|
"can_unlock_with_code",
|
|
47588
47648
|
"can_run_thermostat_programs",
|
|
47649
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47650
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47651
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47589
47652
|
"can_simulate_hub_connection",
|
|
47590
47653
|
"can_simulate_hub_disconnection",
|
|
47591
47654
|
"can_simulate_paid_subscription"
|
|
@@ -47615,6 +47678,9 @@ var openapi_default = {
|
|
|
47615
47678
|
"can_simulate_disconnection",
|
|
47616
47679
|
"can_unlock_with_code",
|
|
47617
47680
|
"can_run_thermostat_programs",
|
|
47681
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47682
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47683
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47618
47684
|
"can_simulate_hub_connection",
|
|
47619
47685
|
"can_simulate_hub_disconnection",
|
|
47620
47686
|
"can_simulate_paid_subscription"
|
|
@@ -47769,6 +47835,9 @@ var openapi_default = {
|
|
|
47769
47835
|
"can_simulate_disconnection",
|
|
47770
47836
|
"can_unlock_with_code",
|
|
47771
47837
|
"can_run_thermostat_programs",
|
|
47838
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47839
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47840
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47772
47841
|
"can_simulate_hub_connection",
|
|
47773
47842
|
"can_simulate_hub_disconnection",
|
|
47774
47843
|
"can_simulate_paid_subscription"
|
|
@@ -47794,6 +47863,9 @@ var openapi_default = {
|
|
|
47794
47863
|
"can_simulate_disconnection",
|
|
47795
47864
|
"can_unlock_with_code",
|
|
47796
47865
|
"can_run_thermostat_programs",
|
|
47866
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
47867
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
47868
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
47797
47869
|
"can_simulate_hub_connection",
|
|
47798
47870
|
"can_simulate_hub_disconnection",
|
|
47799
47871
|
"can_simulate_paid_subscription"
|
|
@@ -55648,6 +55720,9 @@ var openapi_default = {
|
|
|
55648
55720
|
"can_simulate_disconnection",
|
|
55649
55721
|
"can_unlock_with_code",
|
|
55650
55722
|
"can_run_thermostat_programs",
|
|
55723
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
55724
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
55725
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
55651
55726
|
"can_simulate_hub_connection",
|
|
55652
55727
|
"can_simulate_hub_disconnection",
|
|
55653
55728
|
"can_simulate_paid_subscription"
|
|
@@ -55677,6 +55752,9 @@ var openapi_default = {
|
|
|
55677
55752
|
"can_simulate_disconnection",
|
|
55678
55753
|
"can_unlock_with_code",
|
|
55679
55754
|
"can_run_thermostat_programs",
|
|
55755
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
55756
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
55757
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
55680
55758
|
"can_simulate_hub_connection",
|
|
55681
55759
|
"can_simulate_hub_disconnection",
|
|
55682
55760
|
"can_simulate_paid_subscription"
|
|
@@ -55845,6 +55923,9 @@ var openapi_default = {
|
|
|
55845
55923
|
"can_simulate_disconnection",
|
|
55846
55924
|
"can_unlock_with_code",
|
|
55847
55925
|
"can_run_thermostat_programs",
|
|
55926
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
55927
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
55928
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
55848
55929
|
"can_simulate_hub_connection",
|
|
55849
55930
|
"can_simulate_hub_disconnection",
|
|
55850
55931
|
"can_simulate_paid_subscription"
|
|
@@ -55870,6 +55951,9 @@ var openapi_default = {
|
|
|
55870
55951
|
"can_simulate_disconnection",
|
|
55871
55952
|
"can_unlock_with_code",
|
|
55872
55953
|
"can_run_thermostat_programs",
|
|
55954
|
+
"can_program_thermostat_programs_as_weekday_weekend",
|
|
55955
|
+
"can_program_thermostat_programs_as_different_each_day",
|
|
55956
|
+
"can_program_thermostat_programs_as_same_each_day",
|
|
55873
55957
|
"can_simulate_hub_connection",
|
|
55874
55958
|
"can_simulate_hub_disconnection",
|
|
55875
55959
|
"can_simulate_paid_subscription"
|