@seamapi/types 1.227.0 → 1.229.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 +2 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +2 -224
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +0 -30
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +0 -30
- package/lib/seam/connect/models/devices/device.d.ts +0 -42
- package/lib/seam/connect/models/devices/phone.d.ts +0 -30
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +0 -30
- package/lib/seam/connect/models/thermostats/climate-setting-schedule.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.d.ts +0 -6
- package/lib/seam/connect/models/thermostats/climate-setting.js +0 -2
- package/lib/seam/connect/models/thermostats/climate-setting.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +2 -60
- package/lib/seam/connect/openapi.js +2 -24
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +0 -86
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-setting.ts +0 -2
- package/src/lib/seam/connect/openapi.ts +2 -24
- package/src/lib/seam/connect/route-types.ts +0 -86
package/dist/connect.d.cts
CHANGED
|
@@ -3541,8 +3541,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3541
3541
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
3542
3542
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
3543
3543
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
3544
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
3545
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
3546
3544
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
3547
3545
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
3548
3546
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3550,8 +3548,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3550
3548
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
3551
3549
|
manual_override_allowed: z.ZodBoolean;
|
|
3552
3550
|
}, "strip", z.ZodTypeAny, {
|
|
3553
|
-
automatic_heating_enabled: boolean;
|
|
3554
|
-
automatic_cooling_enabled: boolean;
|
|
3555
3551
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3556
3552
|
manual_override_allowed: boolean;
|
|
3557
3553
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3559,8 +3555,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3559
3555
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3560
3556
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3561
3557
|
}, {
|
|
3562
|
-
automatic_heating_enabled: boolean;
|
|
3563
|
-
automatic_cooling_enabled: boolean;
|
|
3564
3558
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3565
3559
|
manual_override_allowed: boolean;
|
|
3566
3560
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3569,8 +3563,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3569
3563
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3570
3564
|
}>>;
|
|
3571
3565
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
3572
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
3573
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
3574
3566
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
3575
3567
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
3576
3568
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3578,8 +3570,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3578
3570
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
3579
3571
|
manual_override_allowed: z.ZodBoolean;
|
|
3580
3572
|
}, "strip", z.ZodTypeAny, {
|
|
3581
|
-
automatic_heating_enabled: boolean;
|
|
3582
|
-
automatic_cooling_enabled: boolean;
|
|
3583
3573
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3584
3574
|
manual_override_allowed: boolean;
|
|
3585
3575
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3587,8 +3577,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3587
3577
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3588
3578
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3589
3579
|
}, {
|
|
3590
|
-
automatic_heating_enabled: boolean;
|
|
3591
|
-
automatic_cooling_enabled: boolean;
|
|
3592
3580
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3593
3581
|
manual_override_allowed: boolean;
|
|
3594
3582
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3607,8 +3595,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3607
3595
|
created_at: z.ZodString;
|
|
3608
3596
|
errors: z.ZodAny;
|
|
3609
3597
|
}, {
|
|
3610
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3611
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
3612
3598
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
3613
3599
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3614
3600
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -3623,8 +3609,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3623
3609
|
schedule_starts_at: string;
|
|
3624
3610
|
schedule_ends_at: string;
|
|
3625
3611
|
errors?: any;
|
|
3626
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
3627
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
3628
3612
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
3629
3613
|
cooling_set_point_celsius?: number | undefined;
|
|
3630
3614
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3640,8 +3624,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3640
3624
|
schedule_starts_at: string;
|
|
3641
3625
|
schedule_ends_at: string;
|
|
3642
3626
|
errors?: any;
|
|
3643
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
3644
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
3645
3627
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
3646
3628
|
cooling_set_point_celsius?: number | undefined;
|
|
3647
3629
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3671,8 +3653,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3671
3653
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
3672
3654
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
3673
3655
|
current_climate_setting?: {
|
|
3674
|
-
automatic_heating_enabled: boolean;
|
|
3675
|
-
automatic_cooling_enabled: boolean;
|
|
3676
3656
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3677
3657
|
manual_override_allowed: boolean;
|
|
3678
3658
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3681,8 +3661,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3681
3661
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3682
3662
|
} | undefined;
|
|
3683
3663
|
default_climate_setting?: {
|
|
3684
|
-
automatic_heating_enabled: boolean;
|
|
3685
|
-
automatic_cooling_enabled: boolean;
|
|
3686
3664
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3687
3665
|
manual_override_allowed: boolean;
|
|
3688
3666
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3699,8 +3677,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3699
3677
|
schedule_starts_at: string;
|
|
3700
3678
|
schedule_ends_at: string;
|
|
3701
3679
|
errors?: any;
|
|
3702
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
3703
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
3704
3680
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
3705
3681
|
cooling_set_point_celsius?: number | undefined;
|
|
3706
3682
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -3730,8 +3706,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3730
3706
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
3731
3707
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
3732
3708
|
current_climate_setting?: {
|
|
3733
|
-
automatic_heating_enabled: boolean;
|
|
3734
|
-
automatic_cooling_enabled: boolean;
|
|
3735
3709
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3736
3710
|
manual_override_allowed: boolean;
|
|
3737
3711
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3740,8 +3714,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3740
3714
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3741
3715
|
} | undefined;
|
|
3742
3716
|
default_climate_setting?: {
|
|
3743
|
-
automatic_heating_enabled: boolean;
|
|
3744
|
-
automatic_cooling_enabled: boolean;
|
|
3745
3717
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
3746
3718
|
manual_override_allowed: boolean;
|
|
3747
3719
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -3758,8 +3730,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3758
3730
|
schedule_starts_at: string;
|
|
3759
3731
|
schedule_ends_at: string;
|
|
3760
3732
|
errors?: any;
|
|
3761
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
3762
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
3763
3733
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
3764
3734
|
cooling_set_point_celsius?: number | undefined;
|
|
3765
3735
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4130,8 +4100,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4130
4100
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
4131
4101
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
4132
4102
|
current_climate_setting?: {
|
|
4133
|
-
automatic_heating_enabled: boolean;
|
|
4134
|
-
automatic_cooling_enabled: boolean;
|
|
4135
4103
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
4136
4104
|
manual_override_allowed: boolean;
|
|
4137
4105
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -4140,8 +4108,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4140
4108
|
heating_set_point_fahrenheit?: number | undefined;
|
|
4141
4109
|
} | undefined;
|
|
4142
4110
|
default_climate_setting?: {
|
|
4143
|
-
automatic_heating_enabled: boolean;
|
|
4144
|
-
automatic_cooling_enabled: boolean;
|
|
4145
4111
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
4146
4112
|
manual_override_allowed: boolean;
|
|
4147
4113
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -4158,8 +4124,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4158
4124
|
schedule_starts_at: string;
|
|
4159
4125
|
schedule_ends_at: string;
|
|
4160
4126
|
errors?: any;
|
|
4161
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
4162
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
4163
4127
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
4164
4128
|
cooling_set_point_celsius?: number | undefined;
|
|
4165
4129
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -4482,8 +4446,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4482
4446
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
4483
4447
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
4484
4448
|
current_climate_setting?: {
|
|
4485
|
-
automatic_heating_enabled: boolean;
|
|
4486
|
-
automatic_cooling_enabled: boolean;
|
|
4487
4449
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
4488
4450
|
manual_override_allowed: boolean;
|
|
4489
4451
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -4492,8 +4454,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4492
4454
|
heating_set_point_fahrenheit?: number | undefined;
|
|
4493
4455
|
} | undefined;
|
|
4494
4456
|
default_climate_setting?: {
|
|
4495
|
-
automatic_heating_enabled: boolean;
|
|
4496
|
-
automatic_cooling_enabled: boolean;
|
|
4497
4457
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
4498
4458
|
manual_override_allowed: boolean;
|
|
4499
4459
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -4510,8 +4470,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4510
4470
|
schedule_starts_at: string;
|
|
4511
4471
|
schedule_ends_at: string;
|
|
4512
4472
|
errors?: any;
|
|
4513
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
4514
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
4515
4473
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
4516
4474
|
cooling_set_point_celsius?: number | undefined;
|
|
4517
4475
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -5916,8 +5874,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5916
5874
|
fan_mode_setting: z.ZodOptional<z.ZodEnum<["auto", "on"]>>;
|
|
5917
5875
|
is_temporary_manual_override_active: z.ZodOptional<z.ZodBoolean>;
|
|
5918
5876
|
current_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
5919
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
5920
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
5921
5877
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
5922
5878
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5923
5879
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5925,8 +5881,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5925
5881
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
5926
5882
|
manual_override_allowed: z.ZodBoolean;
|
|
5927
5883
|
}, "strip", z.ZodTypeAny, {
|
|
5928
|
-
automatic_heating_enabled: boolean;
|
|
5929
|
-
automatic_cooling_enabled: boolean;
|
|
5930
5884
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
5931
5885
|
manual_override_allowed: boolean;
|
|
5932
5886
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -5934,8 +5888,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5934
5888
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5935
5889
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5936
5890
|
}, {
|
|
5937
|
-
automatic_heating_enabled: boolean;
|
|
5938
|
-
automatic_cooling_enabled: boolean;
|
|
5939
5891
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
5940
5892
|
manual_override_allowed: boolean;
|
|
5941
5893
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -5944,8 +5896,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5944
5896
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5945
5897
|
}>>;
|
|
5946
5898
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
5947
|
-
automatic_heating_enabled: z.ZodBoolean;
|
|
5948
|
-
automatic_cooling_enabled: z.ZodBoolean;
|
|
5949
5899
|
hvac_mode_setting: z.ZodEnum<["off", "heat", "cool", "heat_cool"]>;
|
|
5950
5900
|
cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
5951
5901
|
heating_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -5953,8 +5903,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5953
5903
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
5954
5904
|
manual_override_allowed: z.ZodBoolean;
|
|
5955
5905
|
}, "strip", z.ZodTypeAny, {
|
|
5956
|
-
automatic_heating_enabled: boolean;
|
|
5957
|
-
automatic_cooling_enabled: boolean;
|
|
5958
5906
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
5959
5907
|
manual_override_allowed: boolean;
|
|
5960
5908
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -5962,8 +5910,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5962
5910
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5963
5911
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5964
5912
|
}, {
|
|
5965
|
-
automatic_heating_enabled: boolean;
|
|
5966
|
-
automatic_cooling_enabled: boolean;
|
|
5967
5913
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
5968
5914
|
manual_override_allowed: boolean;
|
|
5969
5915
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -5982,8 +5928,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5982
5928
|
created_at: z.ZodString;
|
|
5983
5929
|
errors: z.ZodAny;
|
|
5984
5930
|
}, {
|
|
5985
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5986
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
5987
5931
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
5988
5932
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
5989
5933
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -5998,8 +5942,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
5998
5942
|
schedule_starts_at: string;
|
|
5999
5943
|
schedule_ends_at: string;
|
|
6000
5944
|
errors?: any;
|
|
6001
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6002
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6003
5945
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
6004
5946
|
cooling_set_point_celsius?: number | undefined;
|
|
6005
5947
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6015,8 +5957,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6015
5957
|
schedule_starts_at: string;
|
|
6016
5958
|
schedule_ends_at: string;
|
|
6017
5959
|
errors?: any;
|
|
6018
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6019
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6020
5960
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
6021
5961
|
cooling_set_point_celsius?: number | undefined;
|
|
6022
5962
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6046,8 +5986,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6046
5986
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
6047
5987
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
6048
5988
|
current_climate_setting?: {
|
|
6049
|
-
automatic_heating_enabled: boolean;
|
|
6050
|
-
automatic_cooling_enabled: boolean;
|
|
6051
5989
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
6052
5990
|
manual_override_allowed: boolean;
|
|
6053
5991
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -6056,8 +5994,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6056
5994
|
heating_set_point_fahrenheit?: number | undefined;
|
|
6057
5995
|
} | undefined;
|
|
6058
5996
|
default_climate_setting?: {
|
|
6059
|
-
automatic_heating_enabled: boolean;
|
|
6060
|
-
automatic_cooling_enabled: boolean;
|
|
6061
5997
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
6062
5998
|
manual_override_allowed: boolean;
|
|
6063
5999
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -6074,8 +6010,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6074
6010
|
schedule_starts_at: string;
|
|
6075
6011
|
schedule_ends_at: string;
|
|
6076
6012
|
errors?: any;
|
|
6077
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6078
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6079
6013
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
6080
6014
|
cooling_set_point_celsius?: number | undefined;
|
|
6081
6015
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -6105,8 +6039,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6105
6039
|
fan_mode_setting?: "auto" | "on" | undefined;
|
|
6106
6040
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
6107
6041
|
current_climate_setting?: {
|
|
6108
|
-
automatic_heating_enabled: boolean;
|
|
6109
|
-
automatic_cooling_enabled: boolean;
|
|
6110
6042
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
6111
6043
|
manual_override_allowed: boolean;
|
|
6112
6044
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -6115,8 +6047,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6115
6047
|
heating_set_point_fahrenheit?: number | undefined;
|
|
6116
6048
|
} | undefined;
|
|
6117
6049
|
default_climate_setting?: {
|
|
6118
|
-
automatic_heating_enabled: boolean;
|
|
6119
|
-
automatic_cooling_enabled: boolean;
|
|
6120
6050
|
hvac_mode_setting: "off" | "heat" | "cool" | "heat_cool";
|
|
6121
6051
|
manual_override_allowed: boolean;
|
|
6122
6052
|
cooling_set_point_celsius?: number | undefined;
|
|
@@ -6133,8 +6063,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
6133
6063
|
schedule_starts_at: string;
|
|
6134
6064
|
schedule_ends_at: string;
|
|
6135
6065
|
errors?: any;
|
|
6136
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
6137
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
6138
6066
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
6139
6067
|
cooling_set_point_celsius?: number | undefined;
|
|
6140
6068
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8126,8 +8054,6 @@ declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8126
8054
|
created_at: z.ZodString;
|
|
8127
8055
|
errors: z.ZodAny;
|
|
8128
8056
|
}, {
|
|
8129
|
-
automatic_heating_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8130
|
-
automatic_cooling_enabled: z.ZodOptional<z.ZodBoolean>;
|
|
8131
8057
|
hvac_mode_setting: z.ZodOptional<z.ZodEnum<["off", "heat", "cool", "heat_cool"]>>;
|
|
8132
8058
|
cooling_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8133
8059
|
heating_set_point_celsius: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
@@ -8142,8 +8068,6 @@ declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8142
8068
|
schedule_starts_at: string;
|
|
8143
8069
|
schedule_ends_at: string;
|
|
8144
8070
|
errors?: any;
|
|
8145
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
8146
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
8147
8071
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
8148
8072
|
cooling_set_point_celsius?: number | undefined;
|
|
8149
8073
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -8159,8 +8083,6 @@ declare const climate_setting_schedule: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
8159
8083
|
schedule_starts_at: string;
|
|
8160
8084
|
schedule_ends_at: string;
|
|
8161
8085
|
errors?: any;
|
|
8162
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
8163
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
8164
8086
|
hvac_mode_setting?: "off" | "heat" | "cool" | "heat_cool" | undefined;
|
|
8165
8087
|
cooling_set_point_celsius?: number | undefined;
|
|
8166
8088
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -9289,12 +9211,6 @@ declare const _default: {
|
|
|
9289
9211
|
};
|
|
9290
9212
|
climate_setting_schedule: {
|
|
9291
9213
|
properties: {
|
|
9292
|
-
automatic_cooling_enabled: {
|
|
9293
|
-
type: string;
|
|
9294
|
-
};
|
|
9295
|
-
automatic_heating_enabled: {
|
|
9296
|
-
type: string;
|
|
9297
|
-
};
|
|
9298
9214
|
climate_setting_schedule_id: {
|
|
9299
9215
|
format: string;
|
|
9300
9216
|
type: string;
|
|
@@ -10588,12 +10504,6 @@ declare const _default: {
|
|
|
10588
10504
|
properties: {
|
|
10589
10505
|
active_climate_setting_schedule: {
|
|
10590
10506
|
properties: {
|
|
10591
|
-
automatic_cooling_enabled: {
|
|
10592
|
-
type: string;
|
|
10593
|
-
};
|
|
10594
|
-
automatic_heating_enabled: {
|
|
10595
|
-
type: string;
|
|
10596
|
-
};
|
|
10597
10507
|
climate_setting_schedule_id: {
|
|
10598
10508
|
format: string;
|
|
10599
10509
|
type: string;
|
|
@@ -10658,12 +10568,6 @@ declare const _default: {
|
|
|
10658
10568
|
};
|
|
10659
10569
|
current_climate_setting: {
|
|
10660
10570
|
properties: {
|
|
10661
|
-
automatic_cooling_enabled: {
|
|
10662
|
-
type: string;
|
|
10663
|
-
};
|
|
10664
|
-
automatic_heating_enabled: {
|
|
10665
|
-
type: string;
|
|
10666
|
-
};
|
|
10667
10571
|
cooling_set_point_celsius: {
|
|
10668
10572
|
format: string;
|
|
10669
10573
|
type: string;
|
|
@@ -10693,12 +10597,6 @@ declare const _default: {
|
|
|
10693
10597
|
};
|
|
10694
10598
|
default_climate_setting: {
|
|
10695
10599
|
properties: {
|
|
10696
|
-
automatic_cooling_enabled: {
|
|
10697
|
-
type: string;
|
|
10698
|
-
};
|
|
10699
|
-
automatic_heating_enabled: {
|
|
10700
|
-
type: string;
|
|
10701
|
-
};
|
|
10702
10600
|
cooling_set_point_celsius: {
|
|
10703
10601
|
format: string;
|
|
10704
10602
|
type: string;
|
|
@@ -19465,6 +19363,7 @@ declare const _default: {
|
|
|
19465
19363
|
})[];
|
|
19466
19364
|
summary: string;
|
|
19467
19365
|
tags: string[];
|
|
19366
|
+
'x-deprecated': string;
|
|
19468
19367
|
'x-fern-sdk-group-name': string[];
|
|
19469
19368
|
'x-fern-sdk-method-name': string;
|
|
19470
19369
|
'x-fern-sdk-return-value': string;
|
|
@@ -20970,12 +20869,6 @@ declare const _default: {
|
|
|
20970
20869
|
'application/json': {
|
|
20971
20870
|
schema: {
|
|
20972
20871
|
properties: {
|
|
20973
|
-
automatic_cooling_enabled: {
|
|
20974
|
-
type: string;
|
|
20975
|
-
};
|
|
20976
|
-
automatic_heating_enabled: {
|
|
20977
|
-
type: string;
|
|
20978
|
-
};
|
|
20979
20872
|
cooling_set_point_celsius: {
|
|
20980
20873
|
format: string;
|
|
20981
20874
|
type: string;
|
|
@@ -21380,12 +21273,6 @@ declare const _default: {
|
|
|
21380
21273
|
'application/json': {
|
|
21381
21274
|
schema: {
|
|
21382
21275
|
properties: {
|
|
21383
|
-
automatic_cooling_enabled: {
|
|
21384
|
-
type: string;
|
|
21385
|
-
};
|
|
21386
|
-
automatic_heating_enabled: {
|
|
21387
|
-
type: string;
|
|
21388
|
-
};
|
|
21389
21276
|
climate_setting_schedule_id: {
|
|
21390
21277
|
format: string;
|
|
21391
21278
|
type: string;
|
|
@@ -21493,12 +21380,6 @@ declare const _default: {
|
|
|
21493
21380
|
'application/json': {
|
|
21494
21381
|
schema: {
|
|
21495
21382
|
properties: {
|
|
21496
|
-
automatic_cooling_enabled: {
|
|
21497
|
-
type: string;
|
|
21498
|
-
};
|
|
21499
|
-
automatic_heating_enabled: {
|
|
21500
|
-
type: string;
|
|
21501
|
-
};
|
|
21502
21383
|
climate_setting_schedule_id: {
|
|
21503
21384
|
format: string;
|
|
21504
21385
|
type: string;
|
|
@@ -21607,12 +21488,6 @@ declare const _default: {
|
|
|
21607
21488
|
'application/json': {
|
|
21608
21489
|
schema: {
|
|
21609
21490
|
properties: {
|
|
21610
|
-
automatic_cooling_enabled: {
|
|
21611
|
-
type: string;
|
|
21612
|
-
};
|
|
21613
|
-
automatic_heating_enabled: {
|
|
21614
|
-
type: string;
|
|
21615
|
-
};
|
|
21616
21491
|
climate_setting_schedule_id: {
|
|
21617
21492
|
format: string;
|
|
21618
21493
|
type: string;
|
|
@@ -21871,6 +21746,7 @@ declare const _default: {
|
|
|
21871
21746
|
})[];
|
|
21872
21747
|
summary: string;
|
|
21873
21748
|
tags: string[];
|
|
21749
|
+
'x-deprecated': string;
|
|
21874
21750
|
'x-fern-sdk-group-name': string[];
|
|
21875
21751
|
'x-fern-sdk-method-name': string;
|
|
21876
21752
|
'x-fern-sdk-return-value': string;
|
|
@@ -22378,12 +22254,6 @@ declare const _default: {
|
|
|
22378
22254
|
properties: {
|
|
22379
22255
|
default_climate_setting: {
|
|
22380
22256
|
properties: {
|
|
22381
|
-
automatic_cooling_enabled: {
|
|
22382
|
-
type: string;
|
|
22383
|
-
};
|
|
22384
|
-
automatic_heating_enabled: {
|
|
22385
|
-
type: string;
|
|
22386
|
-
};
|
|
22387
22257
|
cooling_set_point_celsius: {
|
|
22388
22258
|
format: string;
|
|
22389
22259
|
type: string;
|
|
@@ -22479,12 +22349,6 @@ declare const _default: {
|
|
|
22479
22349
|
properties: {
|
|
22480
22350
|
default_climate_setting: {
|
|
22481
22351
|
properties: {
|
|
22482
|
-
automatic_cooling_enabled: {
|
|
22483
|
-
type: string;
|
|
22484
|
-
};
|
|
22485
|
-
automatic_heating_enabled: {
|
|
22486
|
-
type: string;
|
|
22487
|
-
};
|
|
22488
22352
|
cooling_set_point_celsius: {
|
|
22489
22353
|
format: string;
|
|
22490
22354
|
type: string;
|
|
@@ -29609,8 +29473,6 @@ interface Routes {
|
|
|
29609
29473
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
29610
29474
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
29611
29475
|
current_climate_setting?: {
|
|
29612
|
-
automatic_heating_enabled: boolean;
|
|
29613
|
-
automatic_cooling_enabled: boolean;
|
|
29614
29476
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29615
29477
|
cooling_set_point_celsius?: number | undefined;
|
|
29616
29478
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29619,8 +29481,6 @@ interface Routes {
|
|
|
29619
29481
|
manual_override_allowed: boolean;
|
|
29620
29482
|
} | undefined;
|
|
29621
29483
|
default_climate_setting?: {
|
|
29622
|
-
automatic_heating_enabled: boolean;
|
|
29623
|
-
automatic_cooling_enabled: boolean;
|
|
29624
29484
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29625
29485
|
cooling_set_point_celsius?: number | undefined;
|
|
29626
29486
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29639,8 +29499,6 @@ interface Routes {
|
|
|
29639
29499
|
created_at: string;
|
|
29640
29500
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
29641
29501
|
errors?: any;
|
|
29642
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
29643
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
29644
29502
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
29645
29503
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29646
29504
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -30030,8 +29888,6 @@ interface Routes {
|
|
|
30030
29888
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
30031
29889
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
30032
29890
|
current_climate_setting?: {
|
|
30033
|
-
automatic_heating_enabled: boolean;
|
|
30034
|
-
automatic_cooling_enabled: boolean;
|
|
30035
29891
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30036
29892
|
cooling_set_point_celsius?: number | undefined;
|
|
30037
29893
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30040,8 +29896,6 @@ interface Routes {
|
|
|
30040
29896
|
manual_override_allowed: boolean;
|
|
30041
29897
|
} | undefined;
|
|
30042
29898
|
default_climate_setting?: {
|
|
30043
|
-
automatic_heating_enabled: boolean;
|
|
30044
|
-
automatic_cooling_enabled: boolean;
|
|
30045
29899
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30046
29900
|
cooling_set_point_celsius?: number | undefined;
|
|
30047
29901
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30060,8 +29914,6 @@ interface Routes {
|
|
|
30060
29914
|
created_at: string;
|
|
30061
29915
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
30062
29916
|
errors?: any;
|
|
30063
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
30064
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
30065
29917
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
30066
29918
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
30067
29919
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -30819,8 +30671,6 @@ interface Routes {
|
|
|
30819
30671
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
30820
30672
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
30821
30673
|
current_climate_setting?: {
|
|
30822
|
-
automatic_heating_enabled: boolean;
|
|
30823
|
-
automatic_cooling_enabled: boolean;
|
|
30824
30674
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30825
30675
|
cooling_set_point_celsius?: number | undefined;
|
|
30826
30676
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30829,8 +30679,6 @@ interface Routes {
|
|
|
30829
30679
|
manual_override_allowed: boolean;
|
|
30830
30680
|
} | undefined;
|
|
30831
30681
|
default_climate_setting?: {
|
|
30832
|
-
automatic_heating_enabled: boolean;
|
|
30833
|
-
automatic_cooling_enabled: boolean;
|
|
30834
30682
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30835
30683
|
cooling_set_point_celsius?: number | undefined;
|
|
30836
30684
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30849,8 +30697,6 @@ interface Routes {
|
|
|
30849
30697
|
created_at: string;
|
|
30850
30698
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
30851
30699
|
errors?: any;
|
|
30852
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
30853
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
30854
30700
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
30855
30701
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
30856
30702
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -31215,8 +31061,6 @@ interface Routes {
|
|
|
31215
31061
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
31216
31062
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
31217
31063
|
current_climate_setting?: {
|
|
31218
|
-
automatic_heating_enabled: boolean;
|
|
31219
|
-
automatic_cooling_enabled: boolean;
|
|
31220
31064
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31221
31065
|
cooling_set_point_celsius?: number | undefined;
|
|
31222
31066
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31225,8 +31069,6 @@ interface Routes {
|
|
|
31225
31069
|
manual_override_allowed: boolean;
|
|
31226
31070
|
} | undefined;
|
|
31227
31071
|
default_climate_setting?: {
|
|
31228
|
-
automatic_heating_enabled: boolean;
|
|
31229
|
-
automatic_cooling_enabled: boolean;
|
|
31230
31072
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31231
31073
|
cooling_set_point_celsius?: number | undefined;
|
|
31232
31074
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31245,8 +31087,6 @@ interface Routes {
|
|
|
31245
31087
|
created_at: string;
|
|
31246
31088
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
31247
31089
|
errors?: any;
|
|
31248
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
31249
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31250
31090
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31251
31091
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31252
31092
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -31636,8 +31476,6 @@ interface Routes {
|
|
|
31636
31476
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
31637
31477
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
31638
31478
|
current_climate_setting?: {
|
|
31639
|
-
automatic_heating_enabled: boolean;
|
|
31640
|
-
automatic_cooling_enabled: boolean;
|
|
31641
31479
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31642
31480
|
cooling_set_point_celsius?: number | undefined;
|
|
31643
31481
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31646,8 +31484,6 @@ interface Routes {
|
|
|
31646
31484
|
manual_override_allowed: boolean;
|
|
31647
31485
|
} | undefined;
|
|
31648
31486
|
default_climate_setting?: {
|
|
31649
|
-
automatic_heating_enabled: boolean;
|
|
31650
|
-
automatic_cooling_enabled: boolean;
|
|
31651
31487
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31652
31488
|
cooling_set_point_celsius?: number | undefined;
|
|
31653
31489
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31666,8 +31502,6 @@ interface Routes {
|
|
|
31666
31502
|
created_at: string;
|
|
31667
31503
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
31668
31504
|
errors?: any;
|
|
31669
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
31670
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31671
31505
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31672
31506
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31673
31507
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -32032,8 +31866,6 @@ interface Routes {
|
|
|
32032
31866
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
32033
31867
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
32034
31868
|
current_climate_setting?: {
|
|
32035
|
-
automatic_heating_enabled: boolean;
|
|
32036
|
-
automatic_cooling_enabled: boolean;
|
|
32037
31869
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
32038
31870
|
cooling_set_point_celsius?: number | undefined;
|
|
32039
31871
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -32042,8 +31874,6 @@ interface Routes {
|
|
|
32042
31874
|
manual_override_allowed: boolean;
|
|
32043
31875
|
} | undefined;
|
|
32044
31876
|
default_climate_setting?: {
|
|
32045
|
-
automatic_heating_enabled: boolean;
|
|
32046
|
-
automatic_cooling_enabled: boolean;
|
|
32047
31877
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
32048
31878
|
cooling_set_point_celsius?: number | undefined;
|
|
32049
31879
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -32062,8 +31892,6 @@ interface Routes {
|
|
|
32062
31892
|
created_at: string;
|
|
32063
31893
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
32064
31894
|
errors?: any;
|
|
32065
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
32066
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
32067
31895
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
32068
31896
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
32069
31897
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -33235,8 +33063,6 @@ interface Routes {
|
|
|
33235
33063
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
33236
33064
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
33237
33065
|
current_climate_setting?: {
|
|
33238
|
-
automatic_heating_enabled: boolean;
|
|
33239
|
-
automatic_cooling_enabled: boolean;
|
|
33240
33066
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33241
33067
|
cooling_set_point_celsius?: number | undefined;
|
|
33242
33068
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33245,8 +33071,6 @@ interface Routes {
|
|
|
33245
33071
|
manual_override_allowed: boolean;
|
|
33246
33072
|
} | undefined;
|
|
33247
33073
|
default_climate_setting?: {
|
|
33248
|
-
automatic_heating_enabled: boolean;
|
|
33249
|
-
automatic_cooling_enabled: boolean;
|
|
33250
33074
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33251
33075
|
cooling_set_point_celsius?: number | undefined;
|
|
33252
33076
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33265,8 +33089,6 @@ interface Routes {
|
|
|
33265
33089
|
created_at: string;
|
|
33266
33090
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
33267
33091
|
errors?: any;
|
|
33268
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
33269
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
33270
33092
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
33271
33093
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33272
33094
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -33631,8 +33453,6 @@ interface Routes {
|
|
|
33631
33453
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
33632
33454
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
33633
33455
|
current_climate_setting?: {
|
|
33634
|
-
automatic_heating_enabled: boolean;
|
|
33635
|
-
automatic_cooling_enabled: boolean;
|
|
33636
33456
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33637
33457
|
cooling_set_point_celsius?: number | undefined;
|
|
33638
33458
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33641,8 +33461,6 @@ interface Routes {
|
|
|
33641
33461
|
manual_override_allowed: boolean;
|
|
33642
33462
|
} | undefined;
|
|
33643
33463
|
default_climate_setting?: {
|
|
33644
|
-
automatic_heating_enabled: boolean;
|
|
33645
|
-
automatic_cooling_enabled: boolean;
|
|
33646
33464
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33647
33465
|
cooling_set_point_celsius?: number | undefined;
|
|
33648
33466
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33661,8 +33479,6 @@ interface Routes {
|
|
|
33661
33479
|
created_at: string;
|
|
33662
33480
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
33663
33481
|
errors?: any;
|
|
33664
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
33665
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
33666
33482
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
33667
33483
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33668
33484
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35092,8 +34908,6 @@ interface Routes {
|
|
|
35092
34908
|
name?: string | undefined;
|
|
35093
34909
|
schedule_starts_at: string;
|
|
35094
34910
|
schedule_ends_at: string;
|
|
35095
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35096
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35097
34911
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35098
34912
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35099
34913
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35114,8 +34928,6 @@ interface Routes {
|
|
|
35114
34928
|
created_at: string;
|
|
35115
34929
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35116
34930
|
errors?: any;
|
|
35117
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35118
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35119
34931
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35120
34932
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35121
34933
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35157,8 +34969,6 @@ interface Routes {
|
|
|
35157
34969
|
created_at: string;
|
|
35158
34970
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35159
34971
|
errors?: any;
|
|
35160
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35161
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35162
34972
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35163
34973
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35164
34974
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35189,8 +34999,6 @@ interface Routes {
|
|
|
35189
34999
|
created_at: string;
|
|
35190
35000
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35191
35001
|
errors?: any;
|
|
35192
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35193
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35194
35002
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35195
35003
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35196
35004
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35210,8 +35018,6 @@ interface Routes {
|
|
|
35210
35018
|
name?: string | undefined;
|
|
35211
35019
|
schedule_starts_at?: string | undefined;
|
|
35212
35020
|
schedule_ends_at?: string | undefined;
|
|
35213
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35214
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35215
35021
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35216
35022
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35217
35023
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35232,8 +35038,6 @@ interface Routes {
|
|
|
35232
35038
|
created_at: string;
|
|
35233
35039
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35234
35040
|
errors?: any;
|
|
35235
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35236
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35237
35041
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35238
35042
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35239
35043
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35937,8 +35741,6 @@ interface Routes {
|
|
|
35937
35741
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
35938
35742
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
35939
35743
|
current_climate_setting?: {
|
|
35940
|
-
automatic_heating_enabled: boolean;
|
|
35941
|
-
automatic_cooling_enabled: boolean;
|
|
35942
35744
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
35943
35745
|
cooling_set_point_celsius?: number | undefined;
|
|
35944
35746
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -35947,8 +35749,6 @@ interface Routes {
|
|
|
35947
35749
|
manual_override_allowed: boolean;
|
|
35948
35750
|
} | undefined;
|
|
35949
35751
|
default_climate_setting?: {
|
|
35950
|
-
automatic_heating_enabled: boolean;
|
|
35951
|
-
automatic_cooling_enabled: boolean;
|
|
35952
35752
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
35953
35753
|
cooling_set_point_celsius?: number | undefined;
|
|
35954
35754
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -35967,8 +35767,6 @@ interface Routes {
|
|
|
35967
35767
|
created_at: string;
|
|
35968
35768
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
35969
35769
|
errors?: any;
|
|
35970
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35971
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35972
35770
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35973
35771
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35974
35772
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -37112,8 +36910,6 @@ interface Routes {
|
|
|
37112
36910
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
37113
36911
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
37114
36912
|
current_climate_setting?: {
|
|
37115
|
-
automatic_heating_enabled: boolean;
|
|
37116
|
-
automatic_cooling_enabled: boolean;
|
|
37117
36913
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
37118
36914
|
cooling_set_point_celsius?: number | undefined;
|
|
37119
36915
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -37122,8 +36918,6 @@ interface Routes {
|
|
|
37122
36918
|
manual_override_allowed: boolean;
|
|
37123
36919
|
} | undefined;
|
|
37124
36920
|
default_climate_setting?: {
|
|
37125
|
-
automatic_heating_enabled: boolean;
|
|
37126
|
-
automatic_cooling_enabled: boolean;
|
|
37127
36921
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
37128
36922
|
cooling_set_point_celsius?: number | undefined;
|
|
37129
36923
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -37142,8 +36936,6 @@ interface Routes {
|
|
|
37142
36936
|
created_at: string;
|
|
37143
36937
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
37144
36938
|
errors?: any;
|
|
37145
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
37146
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
37147
36939
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
37148
36940
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
37149
36941
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -37960,8 +37752,6 @@ interface Routes {
|
|
|
37960
37752
|
jsonBody: {
|
|
37961
37753
|
device_id: string;
|
|
37962
37754
|
default_climate_setting: {
|
|
37963
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
37964
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
37965
37755
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
37966
37756
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
37967
37757
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -38470,8 +38260,6 @@ interface Routes {
|
|
|
38470
38260
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
38471
38261
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
38472
38262
|
current_climate_setting?: {
|
|
38473
|
-
automatic_heating_enabled: boolean;
|
|
38474
|
-
automatic_cooling_enabled: boolean;
|
|
38475
38263
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38476
38264
|
cooling_set_point_celsius?: number | undefined;
|
|
38477
38265
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38480,8 +38268,6 @@ interface Routes {
|
|
|
38480
38268
|
manual_override_allowed: boolean;
|
|
38481
38269
|
} | undefined;
|
|
38482
38270
|
default_climate_setting?: {
|
|
38483
|
-
automatic_heating_enabled: boolean;
|
|
38484
|
-
automatic_cooling_enabled: boolean;
|
|
38485
38271
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38486
38272
|
cooling_set_point_celsius?: number | undefined;
|
|
38487
38273
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38500,8 +38286,6 @@ interface Routes {
|
|
|
38500
38286
|
created_at: string;
|
|
38501
38287
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
38502
38288
|
errors?: any;
|
|
38503
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
38504
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
38505
38289
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
38506
38290
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
38507
38291
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -38868,8 +38652,6 @@ interface Routes {
|
|
|
38868
38652
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
38869
38653
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
38870
38654
|
current_climate_setting?: {
|
|
38871
|
-
automatic_heating_enabled: boolean;
|
|
38872
|
-
automatic_cooling_enabled: boolean;
|
|
38873
38655
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38874
38656
|
cooling_set_point_celsius?: number | undefined;
|
|
38875
38657
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38878,8 +38660,6 @@ interface Routes {
|
|
|
38878
38660
|
manual_override_allowed: boolean;
|
|
38879
38661
|
} | undefined;
|
|
38880
38662
|
default_climate_setting?: {
|
|
38881
|
-
automatic_heating_enabled: boolean;
|
|
38882
|
-
automatic_cooling_enabled: boolean;
|
|
38883
38663
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38884
38664
|
cooling_set_point_celsius?: number | undefined;
|
|
38885
38665
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38898,8 +38678,6 @@ interface Routes {
|
|
|
38898
38678
|
created_at: string;
|
|
38899
38679
|
/** Collection of errors associated with the access code, structured in a dictionary format. A unique "error_code" keys each error. Each error entry is an object containing two fields: "message" and "created_at." "message" is a string that describes the error. "created_at" is a date that indicates when the error was generated. This structure enables detailed tracking and timely response to critical issues. */
|
|
38900
38680
|
errors?: any;
|
|
38901
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
38902
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
38903
38681
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
38904
38682
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
38905
38683
|
heating_set_point_celsius?: (number | undefined) | undefined;
|