@seamapi/types 1.224.0 → 1.226.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 +1 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +5 -48
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +0 -6
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +0 -6
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +0 -2
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +0 -10
- package/lib/seam/connect/models/devices/phone.d.ts +0 -6
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -6
- package/lib/seam/connect/openapi.d.ts +4 -8
- package/lib/seam/connect/openapi.js +1 -2
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +1 -24
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +1 -2
- package/src/lib/seam/connect/route-types.ts +1 -24
package/dist/connect.d.cts
CHANGED
|
@@ -3534,8 +3534,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3534
3534
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
3535
3535
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
3536
3536
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
3537
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
3538
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
3539
3537
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
3540
3538
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
3541
3539
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -3666,8 +3664,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3666
3664
|
temperature_fahrenheit?: number | undefined;
|
|
3667
3665
|
temperature_celsius?: number | undefined;
|
|
3668
3666
|
relative_humidity?: number | undefined;
|
|
3669
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
3670
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
3671
3667
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
3672
3668
|
is_heating?: boolean | undefined;
|
|
3673
3669
|
is_cooling?: boolean | undefined;
|
|
@@ -3727,8 +3723,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3727
3723
|
temperature_fahrenheit?: number | undefined;
|
|
3728
3724
|
temperature_celsius?: number | undefined;
|
|
3729
3725
|
relative_humidity?: number | undefined;
|
|
3730
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
3731
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
3732
3726
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
3733
3727
|
is_heating?: boolean | undefined;
|
|
3734
3728
|
is_cooling?: boolean | undefined;
|
|
@@ -4129,8 +4123,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4129
4123
|
temperature_fahrenheit?: number | undefined;
|
|
4130
4124
|
temperature_celsius?: number | undefined;
|
|
4131
4125
|
relative_humidity?: number | undefined;
|
|
4132
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
4133
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
4134
4126
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
4135
4127
|
is_heating?: boolean | undefined;
|
|
4136
4128
|
is_cooling?: boolean | undefined;
|
|
@@ -4483,8 +4475,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4483
4475
|
temperature_fahrenheit?: number | undefined;
|
|
4484
4476
|
temperature_celsius?: number | undefined;
|
|
4485
4477
|
relative_humidity?: number | undefined;
|
|
4486
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
4487
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
4488
4478
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
4489
4479
|
is_heating?: boolean | undefined;
|
|
4490
4480
|
is_cooling?: boolean | undefined;
|
|
@@ -5919,8 +5909,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5919
5909
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
5920
5910
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5921
5911
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
5922
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
5923
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
5924
5912
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
5925
5913
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
5926
5914
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -6051,8 +6039,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6051
6039
|
temperature_fahrenheit?: number | undefined;
|
|
6052
6040
|
temperature_celsius?: number | undefined;
|
|
6053
6041
|
relative_humidity?: number | undefined;
|
|
6054
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
6055
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
6056
6042
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
6057
6043
|
is_heating?: boolean | undefined;
|
|
6058
6044
|
is_cooling?: boolean | undefined;
|
|
@@ -6112,8 +6098,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6112
6098
|
temperature_fahrenheit?: number | undefined;
|
|
6113
6099
|
temperature_celsius?: number | undefined;
|
|
6114
6100
|
relative_humidity?: number | undefined;
|
|
6115
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
6116
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
6117
6101
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
6118
6102
|
is_heating?: boolean | undefined;
|
|
6119
6103
|
is_cooling?: boolean | undefined;
|
|
@@ -10577,8 +10561,6 @@ declare const _default: {
|
|
|
10577
10561
|
};
|
|
10578
10562
|
active_climate_setting_schedule?: never;
|
|
10579
10563
|
available_hvac_mode_settings?: never;
|
|
10580
|
-
can_enable_automatic_cooling?: never;
|
|
10581
|
-
can_enable_automatic_heating?: never;
|
|
10582
10564
|
current_climate_setting?: never;
|
|
10583
10565
|
default_climate_setting?: never;
|
|
10584
10566
|
fan_mode_setting?: never;
|
|
@@ -10674,12 +10656,6 @@ declare const _default: {
|
|
|
10674
10656
|
};
|
|
10675
10657
|
type: string;
|
|
10676
10658
|
};
|
|
10677
|
-
can_enable_automatic_cooling: {
|
|
10678
|
-
type: string;
|
|
10679
|
-
};
|
|
10680
|
-
can_enable_automatic_heating: {
|
|
10681
|
-
type: string;
|
|
10682
|
-
};
|
|
10683
10659
|
current_climate_setting: {
|
|
10684
10660
|
properties: {
|
|
10685
10661
|
automatic_cooling_enabled: {
|
|
@@ -19244,6 +19220,10 @@ declare const _default: {
|
|
|
19244
19220
|
minItems: number;
|
|
19245
19221
|
type: string;
|
|
19246
19222
|
};
|
|
19223
|
+
connect_webview_id: {
|
|
19224
|
+
format: string;
|
|
19225
|
+
type: string;
|
|
19226
|
+
};
|
|
19247
19227
|
connected_account_id: {
|
|
19248
19228
|
format: string;
|
|
19249
19229
|
type: string;
|
|
@@ -29517,8 +29497,6 @@ interface Routes {
|
|
|
29517
29497
|
temperature_fahrenheit?: number | undefined;
|
|
29518
29498
|
temperature_celsius?: number | undefined;
|
|
29519
29499
|
relative_humidity?: number | undefined;
|
|
29520
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
29521
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
29522
29500
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
29523
29501
|
is_heating?: boolean | undefined;
|
|
29524
29502
|
is_cooling?: boolean | undefined;
|
|
@@ -29940,8 +29918,6 @@ interface Routes {
|
|
|
29940
29918
|
temperature_fahrenheit?: number | undefined;
|
|
29941
29919
|
temperature_celsius?: number | undefined;
|
|
29942
29920
|
relative_humidity?: number | undefined;
|
|
29943
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
29944
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
29945
29921
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
29946
29922
|
is_heating?: boolean | undefined;
|
|
29947
29923
|
is_cooling?: boolean | undefined;
|
|
@@ -30398,6 +30374,7 @@ interface Routes {
|
|
|
30398
30374
|
event_type?: ('device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed') | undefined;
|
|
30399
30375
|
event_types?: Array<'device.accessory_keypad_connected' | 'device.accessory_keypad_disconnected' | 'device.connected' | 'device.unmanaged.connected' | 'device.disconnected' | 'device.unmanaged.disconnected' | 'device.converted_to_unmanaged' | 'device.unmanaged.converted_to_managed' | 'device.removed' | 'device.deleted' | 'device.tampered' | 'device.low_battery' | 'device.battery_status_changed' | 'device.third_party_integration_detected' | 'device.third_party_integration_no_longer_detected' | 'device.salto.privacy_mode_activated' | 'device.salto.privacy_mode_deactivated' | 'device.connection_became_flaky' | 'device.connection_stabilized' | 'device.error.subscription_required' | 'device.error.subscription_required.resolved' | 'access_code.created' | 'access_code.changed' | 'access_code.scheduled_on_device' | 'access_code.set_on_device' | 'access_code.deleted' | 'access_code.removed_from_device' | 'access_code.failed_to_set_on_device' | 'access_code.delay_in_setting_on_device' | 'access_code.failed_to_remove_from_device' | 'access_code.delay_in_removing_from_device' | 'access_code.deleted_external_to_seam' | 'access_code.modified_external_to_seam' | 'access_code.unmanaged.converted_to_managed' | 'access_code.unmanaged.failed_to_convert_to_managed' | 'access_code.unmanaged.created' | 'access_code.unmanaged.removed' | 'lock.locked' | 'lock.unlocked' | 'lock.access_denied' | 'phone.deactivated' | 'connected_account.connected' | 'connected_account.successful_login' | 'connected_account.created' | 'connected_account.deleted' | 'connected_account.disconnected' | 'connected_account.completed_first_sync' | 'connected_account.completed_first_sync_after_reconnection' | 'connect_webview.login_succeeded' | 'connect_webview.login_failed' | 'noise_sensor.noise_threshold_triggered' | 'access_code.backup_access_code_pulled' | 'acs_system.connected' | 'acs_user.deleted' | 'acs_credential.deleted' | 'enrollment_automation.deleted' | 'client_session.deleted' | 'action_attempt.lock_door.succeeded' | 'action_attempt.lock_door.failed' | 'action_attempt.unlock_door.succeeded' | 'action_attempt.unlock_door.failed'> | undefined;
|
|
30400
30376
|
connected_account_id?: string | undefined;
|
|
30377
|
+
connect_webview_id?: string | undefined;
|
|
30401
30378
|
limit?: number;
|
|
30402
30379
|
};
|
|
30403
30380
|
formData: {};
|
|
@@ -30730,8 +30707,6 @@ interface Routes {
|
|
|
30730
30707
|
temperature_fahrenheit?: number | undefined;
|
|
30731
30708
|
temperature_celsius?: number | undefined;
|
|
30732
30709
|
relative_humidity?: number | undefined;
|
|
30733
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
30734
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
30735
30710
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
30736
30711
|
is_heating?: boolean | undefined;
|
|
30737
30712
|
is_cooling?: boolean | undefined;
|
|
@@ -31128,8 +31103,6 @@ interface Routes {
|
|
|
31128
31103
|
temperature_fahrenheit?: number | undefined;
|
|
31129
31104
|
temperature_celsius?: number | undefined;
|
|
31130
31105
|
relative_humidity?: number | undefined;
|
|
31131
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
31132
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
31133
31106
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31134
31107
|
is_heating?: boolean | undefined;
|
|
31135
31108
|
is_cooling?: boolean | undefined;
|
|
@@ -31551,8 +31524,6 @@ interface Routes {
|
|
|
31551
31524
|
temperature_fahrenheit?: number | undefined;
|
|
31552
31525
|
temperature_celsius?: number | undefined;
|
|
31553
31526
|
relative_humidity?: number | undefined;
|
|
31554
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
31555
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
31556
31527
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31557
31528
|
is_heating?: boolean | undefined;
|
|
31558
31529
|
is_cooling?: boolean | undefined;
|
|
@@ -31949,8 +31920,6 @@ interface Routes {
|
|
|
31949
31920
|
temperature_fahrenheit?: number | undefined;
|
|
31950
31921
|
temperature_celsius?: number | undefined;
|
|
31951
31922
|
relative_humidity?: number | undefined;
|
|
31952
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
31953
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
31954
31923
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
31955
31924
|
is_heating?: boolean | undefined;
|
|
31956
31925
|
is_cooling?: boolean | undefined;
|
|
@@ -33154,8 +33123,6 @@ interface Routes {
|
|
|
33154
33123
|
temperature_fahrenheit?: number | undefined;
|
|
33155
33124
|
temperature_celsius?: number | undefined;
|
|
33156
33125
|
relative_humidity?: number | undefined;
|
|
33157
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
33158
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
33159
33126
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
33160
33127
|
is_heating?: boolean | undefined;
|
|
33161
33128
|
is_cooling?: boolean | undefined;
|
|
@@ -33552,8 +33519,6 @@ interface Routes {
|
|
|
33552
33519
|
temperature_fahrenheit?: number | undefined;
|
|
33553
33520
|
temperature_celsius?: number | undefined;
|
|
33554
33521
|
relative_humidity?: number | undefined;
|
|
33555
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
33556
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
33557
33522
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
33558
33523
|
is_heating?: boolean | undefined;
|
|
33559
33524
|
is_cooling?: boolean | undefined;
|
|
@@ -35860,8 +35825,6 @@ interface Routes {
|
|
|
35860
35825
|
temperature_fahrenheit?: number | undefined;
|
|
35861
35826
|
temperature_celsius?: number | undefined;
|
|
35862
35827
|
relative_humidity?: number | undefined;
|
|
35863
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
35864
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
35865
35828
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
35866
35829
|
is_heating?: boolean | undefined;
|
|
35867
35830
|
is_cooling?: boolean | undefined;
|
|
@@ -37037,8 +37000,6 @@ interface Routes {
|
|
|
37037
37000
|
temperature_fahrenheit?: number | undefined;
|
|
37038
37001
|
temperature_celsius?: number | undefined;
|
|
37039
37002
|
relative_humidity?: number | undefined;
|
|
37040
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
37041
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
37042
37003
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
37043
37004
|
is_heating?: boolean | undefined;
|
|
37044
37005
|
is_cooling?: boolean | undefined;
|
|
@@ -38397,8 +38358,6 @@ interface Routes {
|
|
|
38397
38358
|
temperature_fahrenheit?: number | undefined;
|
|
38398
38359
|
temperature_celsius?: number | undefined;
|
|
38399
38360
|
relative_humidity?: number | undefined;
|
|
38400
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
38401
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
38402
38361
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
38403
38362
|
is_heating?: boolean | undefined;
|
|
38404
38363
|
is_cooling?: boolean | undefined;
|
|
@@ -38797,8 +38756,6 @@ interface Routes {
|
|
|
38797
38756
|
temperature_fahrenheit?: number | undefined;
|
|
38798
38757
|
temperature_celsius?: number | undefined;
|
|
38799
38758
|
relative_humidity?: number | undefined;
|
|
38800
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
38801
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
38802
38759
|
available_hvac_mode_settings?: Array<'off' | 'heat' | 'cool' | 'heat_cool'> | undefined;
|
|
38803
38760
|
is_heating?: boolean | undefined;
|
|
38804
38761
|
is_cooling?: boolean | undefined;
|
|
@@ -78,8 +78,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
78
78
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
79
79
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
80
80
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
81
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
82
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
83
81
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
84
82
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
85
83
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -210,8 +208,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
210
208
|
temperature_fahrenheit?: number | undefined;
|
|
211
209
|
temperature_celsius?: number | undefined;
|
|
212
210
|
relative_humidity?: number | undefined;
|
|
213
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
214
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
215
211
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
216
212
|
is_heating?: boolean | undefined;
|
|
217
213
|
is_cooling?: boolean | undefined;
|
|
@@ -271,8 +267,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
271
267
|
temperature_fahrenheit?: number | undefined;
|
|
272
268
|
temperature_celsius?: number | undefined;
|
|
273
269
|
relative_humidity?: number | undefined;
|
|
274
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
275
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
276
270
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
277
271
|
is_heating?: boolean | undefined;
|
|
278
272
|
is_cooling?: boolean | undefined;
|
|
@@ -3,8 +3,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
3
3
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
4
4
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5
5
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
6
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
7
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
8
6
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
9
7
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
10
8
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -135,8 +133,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
135
133
|
temperature_fahrenheit?: number | undefined;
|
|
136
134
|
temperature_celsius?: number | undefined;
|
|
137
135
|
relative_humidity?: number | undefined;
|
|
138
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
139
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
140
136
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
141
137
|
is_heating?: boolean | undefined;
|
|
142
138
|
is_cooling?: boolean | undefined;
|
|
@@ -196,8 +192,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
196
192
|
temperature_fahrenheit?: number | undefined;
|
|
197
193
|
temperature_celsius?: number | undefined;
|
|
198
194
|
relative_humidity?: number | undefined;
|
|
199
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
200
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
201
195
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
202
196
|
is_heating?: boolean | undefined;
|
|
203
197
|
is_cooling?: boolean | undefined;
|
|
@@ -5,8 +5,6 @@ export const thermostat_capability_properties = z
|
|
|
5
5
|
temperature_fahrenheit: z.number(),
|
|
6
6
|
temperature_celsius: z.number(),
|
|
7
7
|
relative_humidity: z.number().min(0).max(1),
|
|
8
|
-
can_enable_automatic_heating: z.boolean(),
|
|
9
|
-
can_enable_automatic_cooling: z.boolean(),
|
|
10
8
|
available_hvac_mode_settings: z.array(hvac_mode_setting),
|
|
11
9
|
is_heating: z.boolean(),
|
|
12
10
|
is_cooling: z.boolean(),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,eAAe,EACf,wBAAwB,EACxB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3C,4BAA4B,EAAE,CAAC,CAAC,
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,OAAO,EACL,eAAe,EACf,wBAAwB,EACxB,gBAAgB,EAChB,iBAAiB,GAClB,MAAM,4BAA4B,CAAA;AAEnC,MAAM,CAAC,MAAM,gCAAgC,GAAG,CAAC;KAC9C,MAAM,CAAC;IACN,sBAAsB,EAAE,CAAC,CAAC,MAAM,EAAE;IAClC,mBAAmB,EAAE,CAAC,CAAC,MAAM,EAAE;IAC/B,iBAAiB,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC,CAAC;IAC3C,4BAA4B,EAAE,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC;IACxD,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,UAAU,EAAE,CAAC,CAAC,OAAO,EAAE;IACvB,cAAc,EAAE,CAAC,CAAC,OAAO,EAAE;IAC3B,gBAAgB;IAEhB;;OAEG;IACH,mCAAmC,EAAE,CAAC,CAAC,OAAO,EAAE;IAEhD;;OAEG;IACH,uBAAuB,EAAE,eAAe;IACxC,uBAAuB,EAAE,eAAe;IACxC,kCAAkC,EAAE,CAAC,CAAC,OAAO,EAAE;IAC/C,+BAA+B,EAAE,wBAAwB;IACzD,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,6BAA6B,EAAE,CAAC,CAAC,MAAM,EAAE;IACzC,gCAAgC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC5C,iCAAiC,EAAE,CAAC,CAAC,MAAM,EAAE;IAC7C,oCAAoC,EAAE,CAAC,CAAC,MAAM,EAAE;CACjD,CAAC;KACD,OAAO,EAAE,CAAA"}
|
|
@@ -1482,8 +1482,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1482
1482
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1483
1483
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1484
1484
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1485
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1486
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1487
1485
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1488
1486
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1489
1487
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1614,8 +1612,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1614
1612
|
temperature_fahrenheit?: number | undefined;
|
|
1615
1613
|
temperature_celsius?: number | undefined;
|
|
1616
1614
|
relative_humidity?: number | undefined;
|
|
1617
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1618
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1619
1615
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1620
1616
|
is_heating?: boolean | undefined;
|
|
1621
1617
|
is_cooling?: boolean | undefined;
|
|
@@ -1675,8 +1671,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
1675
1671
|
temperature_fahrenheit?: number | undefined;
|
|
1676
1672
|
temperature_celsius?: number | undefined;
|
|
1677
1673
|
relative_humidity?: number | undefined;
|
|
1678
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1679
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1680
1674
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1681
1675
|
is_heating?: boolean | undefined;
|
|
1682
1676
|
is_cooling?: boolean | undefined;
|
|
@@ -2081,8 +2075,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2081
2075
|
temperature_fahrenheit?: number | undefined;
|
|
2082
2076
|
temperature_celsius?: number | undefined;
|
|
2083
2077
|
relative_humidity?: number | undefined;
|
|
2084
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
2085
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
2086
2078
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2087
2079
|
is_heating?: boolean | undefined;
|
|
2088
2080
|
is_cooling?: boolean | undefined;
|
|
@@ -2435,8 +2427,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2435
2427
|
temperature_fahrenheit?: number | undefined;
|
|
2436
2428
|
temperature_celsius?: number | undefined;
|
|
2437
2429
|
relative_humidity?: number | undefined;
|
|
2438
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
2439
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
2440
2430
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
2441
2431
|
is_heating?: boolean | undefined;
|
|
2442
2432
|
is_cooling?: boolean | undefined;
|
|
@@ -1264,8 +1264,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1264
1264
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1265
1265
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1266
1266
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1267
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1268
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1269
1267
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1270
1268
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1271
1269
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1396,8 +1394,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1396
1394
|
temperature_fahrenheit?: number | undefined;
|
|
1397
1395
|
temperature_celsius?: number | undefined;
|
|
1398
1396
|
relative_humidity?: number | undefined;
|
|
1399
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1400
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1401
1397
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1402
1398
|
is_heating?: boolean | undefined;
|
|
1403
1399
|
is_cooling?: boolean | undefined;
|
|
@@ -1457,8 +1453,6 @@ export declare const phone: z.ZodObject<z.objectUtil.extendShape<z.objectUtil.ex
|
|
|
1457
1453
|
temperature_fahrenheit?: number | undefined;
|
|
1458
1454
|
temperature_celsius?: number | undefined;
|
|
1459
1455
|
relative_humidity?: number | undefined;
|
|
1460
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1461
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1462
1456
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1463
1457
|
is_heating?: boolean | undefined;
|
|
1464
1458
|
is_cooling?: boolean | undefined;
|
|
@@ -1263,8 +1263,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1263
1263
|
temperature_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1264
1264
|
temperature_celsius: z.ZodOptional<z.ZodNumber>;
|
|
1265
1265
|
relative_humidity: z.ZodOptional<z.ZodNumber>;
|
|
1266
|
-
can_enable_automatic_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1267
|
-
can_enable_automatic_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
1268
1266
|
available_hvac_mode_settings: z.ZodOptional<z.ZodArray<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>, "many">>;
|
|
1269
1267
|
is_heating: z.ZodOptional<z.ZodBoolean>;
|
|
1270
1268
|
is_cooling: z.ZodOptional<z.ZodBoolean>;
|
|
@@ -1395,8 +1393,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1395
1393
|
temperature_fahrenheit?: number | undefined;
|
|
1396
1394
|
temperature_celsius?: number | undefined;
|
|
1397
1395
|
relative_humidity?: number | undefined;
|
|
1398
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1399
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1400
1396
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1401
1397
|
is_heating?: boolean | undefined;
|
|
1402
1398
|
is_cooling?: boolean | undefined;
|
|
@@ -1456,8 +1452,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1456
1452
|
temperature_fahrenheit?: number | undefined;
|
|
1457
1453
|
temperature_celsius?: number | undefined;
|
|
1458
1454
|
relative_humidity?: number | undefined;
|
|
1459
|
-
can_enable_automatic_heating?: boolean | undefined;
|
|
1460
|
-
can_enable_automatic_cooling?: boolean | undefined;
|
|
1461
1455
|
available_hvac_mode_settings?: ("off" | "heat" | "cool" | "heat_cool")[] | undefined;
|
|
1462
1456
|
is_heating?: boolean | undefined;
|
|
1463
1457
|
is_cooling?: boolean | undefined;
|
|
@@ -2294,8 +2294,6 @@ declare const _default: {
|
|
|
2294
2294
|
};
|
|
2295
2295
|
active_climate_setting_schedule?: never;
|
|
2296
2296
|
available_hvac_mode_settings?: never;
|
|
2297
|
-
can_enable_automatic_cooling?: never;
|
|
2298
|
-
can_enable_automatic_heating?: never;
|
|
2299
2297
|
current_climate_setting?: never;
|
|
2300
2298
|
default_climate_setting?: never;
|
|
2301
2299
|
fan_mode_setting?: never;
|
|
@@ -2391,12 +2389,6 @@ declare const _default: {
|
|
|
2391
2389
|
};
|
|
2392
2390
|
type: string;
|
|
2393
2391
|
};
|
|
2394
|
-
can_enable_automatic_cooling: {
|
|
2395
|
-
type: string;
|
|
2396
|
-
};
|
|
2397
|
-
can_enable_automatic_heating: {
|
|
2398
|
-
type: string;
|
|
2399
|
-
};
|
|
2400
2392
|
current_climate_setting: {
|
|
2401
2393
|
properties: {
|
|
2402
2394
|
automatic_cooling_enabled: {
|
|
@@ -10961,6 +10953,10 @@ declare const _default: {
|
|
|
10961
10953
|
minItems: number;
|
|
10962
10954
|
type: string;
|
|
10963
10955
|
};
|
|
10956
|
+
connect_webview_id: {
|
|
10957
|
+
format: string;
|
|
10958
|
+
type: string;
|
|
10959
|
+
};
|
|
10964
10960
|
connected_account_id: {
|
|
10965
10961
|
format: string;
|
|
10966
10962
|
type: string;
|
|
@@ -2913,8 +2913,6 @@ export default {
|
|
|
2913
2913
|
},
|
|
2914
2914
|
type: 'array',
|
|
2915
2915
|
},
|
|
2916
|
-
can_enable_automatic_cooling: { type: 'boolean' },
|
|
2917
|
-
can_enable_automatic_heating: { type: 'boolean' },
|
|
2918
2916
|
current_climate_setting: {
|
|
2919
2917
|
properties: {
|
|
2920
2918
|
automatic_cooling_enabled: { type: 'boolean' },
|
|
@@ -9253,6 +9251,7 @@ export default {
|
|
|
9253
9251
|
minItems: 2,
|
|
9254
9252
|
type: 'array',
|
|
9255
9253
|
},
|
|
9254
|
+
connect_webview_id: { format: 'uuid', type: 'string' },
|
|
9256
9255
|
connected_account_id: { format: 'uuid', type: 'string' },
|
|
9257
9256
|
device_id: { format: 'uuid', type: 'string' },
|
|
9258
9257
|
device_ids: {
|