@seamapi/types 1.226.0 → 1.228.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 +50 -26
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +105 -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 +69 -60
- package/lib/seam/connect/openapi.js +50 -24
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +36 -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 +50 -24
- package/src/lib/seam/connect/route-types.ts +47 -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;
|
|
@@ -13837,6 +13735,75 @@ declare const _default: {
|
|
|
13837
13735
|
'x-fern-sdk-return-value': string;
|
|
13838
13736
|
};
|
|
13839
13737
|
};
|
|
13738
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
13739
|
+
post: {
|
|
13740
|
+
operationId: string;
|
|
13741
|
+
requestBody: {
|
|
13742
|
+
content: {
|
|
13743
|
+
'application/json': {
|
|
13744
|
+
schema: {
|
|
13745
|
+
properties: {
|
|
13746
|
+
acs_access_group_id: {
|
|
13747
|
+
format: string;
|
|
13748
|
+
type: string;
|
|
13749
|
+
};
|
|
13750
|
+
};
|
|
13751
|
+
required: string[];
|
|
13752
|
+
type: string;
|
|
13753
|
+
};
|
|
13754
|
+
};
|
|
13755
|
+
};
|
|
13756
|
+
};
|
|
13757
|
+
responses: {
|
|
13758
|
+
200: {
|
|
13759
|
+
content: {
|
|
13760
|
+
'application/json': {
|
|
13761
|
+
schema: {
|
|
13762
|
+
properties: {
|
|
13763
|
+
acs_entrances: {
|
|
13764
|
+
items: {
|
|
13765
|
+
$ref: string;
|
|
13766
|
+
};
|
|
13767
|
+
type: string;
|
|
13768
|
+
};
|
|
13769
|
+
ok: {
|
|
13770
|
+
type: string;
|
|
13771
|
+
};
|
|
13772
|
+
};
|
|
13773
|
+
required: string[];
|
|
13774
|
+
type: string;
|
|
13775
|
+
};
|
|
13776
|
+
};
|
|
13777
|
+
};
|
|
13778
|
+
description: string;
|
|
13779
|
+
};
|
|
13780
|
+
400: {
|
|
13781
|
+
description: string;
|
|
13782
|
+
};
|
|
13783
|
+
401: {
|
|
13784
|
+
description: string;
|
|
13785
|
+
};
|
|
13786
|
+
};
|
|
13787
|
+
security: ({
|
|
13788
|
+
api_key: never[];
|
|
13789
|
+
pat_with_workspace?: never;
|
|
13790
|
+
console_session?: never;
|
|
13791
|
+
} | {
|
|
13792
|
+
pat_with_workspace: never[];
|
|
13793
|
+
api_key?: never;
|
|
13794
|
+
console_session?: never;
|
|
13795
|
+
} | {
|
|
13796
|
+
console_session: never[];
|
|
13797
|
+
api_key?: never;
|
|
13798
|
+
pat_with_workspace?: never;
|
|
13799
|
+
})[];
|
|
13800
|
+
summary: string;
|
|
13801
|
+
tags: string[];
|
|
13802
|
+
'x-fern-sdk-group-name': string[];
|
|
13803
|
+
'x-fern-sdk-method-name': string;
|
|
13804
|
+
'x-fern-sdk-return-value': string;
|
|
13805
|
+
};
|
|
13806
|
+
};
|
|
13840
13807
|
'/acs/access_groups/list_users': {
|
|
13841
13808
|
post: {
|
|
13842
13809
|
operationId: string;
|
|
@@ -20901,12 +20868,6 @@ declare const _default: {
|
|
|
20901
20868
|
'application/json': {
|
|
20902
20869
|
schema: {
|
|
20903
20870
|
properties: {
|
|
20904
|
-
automatic_cooling_enabled: {
|
|
20905
|
-
type: string;
|
|
20906
|
-
};
|
|
20907
|
-
automatic_heating_enabled: {
|
|
20908
|
-
type: string;
|
|
20909
|
-
};
|
|
20910
20871
|
cooling_set_point_celsius: {
|
|
20911
20872
|
format: string;
|
|
20912
20873
|
type: string;
|
|
@@ -21311,12 +21272,6 @@ declare const _default: {
|
|
|
21311
21272
|
'application/json': {
|
|
21312
21273
|
schema: {
|
|
21313
21274
|
properties: {
|
|
21314
|
-
automatic_cooling_enabled: {
|
|
21315
|
-
type: string;
|
|
21316
|
-
};
|
|
21317
|
-
automatic_heating_enabled: {
|
|
21318
|
-
type: string;
|
|
21319
|
-
};
|
|
21320
21275
|
climate_setting_schedule_id: {
|
|
21321
21276
|
format: string;
|
|
21322
21277
|
type: string;
|
|
@@ -21424,12 +21379,6 @@ declare const _default: {
|
|
|
21424
21379
|
'application/json': {
|
|
21425
21380
|
schema: {
|
|
21426
21381
|
properties: {
|
|
21427
|
-
automatic_cooling_enabled: {
|
|
21428
|
-
type: string;
|
|
21429
|
-
};
|
|
21430
|
-
automatic_heating_enabled: {
|
|
21431
|
-
type: string;
|
|
21432
|
-
};
|
|
21433
21382
|
climate_setting_schedule_id: {
|
|
21434
21383
|
format: string;
|
|
21435
21384
|
type: string;
|
|
@@ -21538,12 +21487,6 @@ declare const _default: {
|
|
|
21538
21487
|
'application/json': {
|
|
21539
21488
|
schema: {
|
|
21540
21489
|
properties: {
|
|
21541
|
-
automatic_cooling_enabled: {
|
|
21542
|
-
type: string;
|
|
21543
|
-
};
|
|
21544
|
-
automatic_heating_enabled: {
|
|
21545
|
-
type: string;
|
|
21546
|
-
};
|
|
21547
21490
|
climate_setting_schedule_id: {
|
|
21548
21491
|
format: string;
|
|
21549
21492
|
type: string;
|
|
@@ -22309,12 +22252,6 @@ declare const _default: {
|
|
|
22309
22252
|
properties: {
|
|
22310
22253
|
default_climate_setting: {
|
|
22311
22254
|
properties: {
|
|
22312
|
-
automatic_cooling_enabled: {
|
|
22313
|
-
type: string;
|
|
22314
|
-
};
|
|
22315
|
-
automatic_heating_enabled: {
|
|
22316
|
-
type: string;
|
|
22317
|
-
};
|
|
22318
22255
|
cooling_set_point_celsius: {
|
|
22319
22256
|
format: string;
|
|
22320
22257
|
type: string;
|
|
@@ -22410,12 +22347,6 @@ declare const _default: {
|
|
|
22410
22347
|
properties: {
|
|
22411
22348
|
default_climate_setting: {
|
|
22412
22349
|
properties: {
|
|
22413
|
-
automatic_cooling_enabled: {
|
|
22414
|
-
type: string;
|
|
22415
|
-
};
|
|
22416
|
-
automatic_heating_enabled: {
|
|
22417
|
-
type: string;
|
|
22418
|
-
};
|
|
22419
22350
|
cooling_set_point_celsius: {
|
|
22420
22351
|
format: string;
|
|
22421
22352
|
type: string;
|
|
@@ -26907,6 +26838,42 @@ interface Routes {
|
|
|
26907
26838
|
}>;
|
|
26908
26839
|
};
|
|
26909
26840
|
};
|
|
26841
|
+
'/acs/access_groups/list_accessible_entrances': {
|
|
26842
|
+
route: '/acs/access_groups/list_accessible_entrances';
|
|
26843
|
+
method: 'GET' | 'POST';
|
|
26844
|
+
queryParams: {};
|
|
26845
|
+
jsonBody: {};
|
|
26846
|
+
commonParams: {
|
|
26847
|
+
acs_access_group_id: string;
|
|
26848
|
+
};
|
|
26849
|
+
formData: {};
|
|
26850
|
+
jsonResponse: {
|
|
26851
|
+
acs_entrances: Array<{
|
|
26852
|
+
acs_system_id: string;
|
|
26853
|
+
acs_entrance_id: string;
|
|
26854
|
+
created_at: string;
|
|
26855
|
+
display_name: string;
|
|
26856
|
+
errors: Array<{
|
|
26857
|
+
error_code: string;
|
|
26858
|
+
message: string;
|
|
26859
|
+
}>;
|
|
26860
|
+
latch_metadata?: {
|
|
26861
|
+
accessibility_type: string;
|
|
26862
|
+
door_name: string;
|
|
26863
|
+
door_type: string;
|
|
26864
|
+
is_connected: boolean;
|
|
26865
|
+
} | undefined;
|
|
26866
|
+
visionline_metadata?: {
|
|
26867
|
+
door_name: string;
|
|
26868
|
+
door_category: 'entrance' | 'guest' | 'elevator reader' | 'common' | 'common (PMS)';
|
|
26869
|
+
profiles?: Array<{
|
|
26870
|
+
visionline_door_profile_id: string;
|
|
26871
|
+
visionline_door_profile_type: 'BLE' | 'commonDoor' | 'touch';
|
|
26872
|
+
}> | undefined;
|
|
26873
|
+
} | undefined;
|
|
26874
|
+
}>;
|
|
26875
|
+
};
|
|
26876
|
+
};
|
|
26910
26877
|
'/acs/access_groups/list_users': {
|
|
26911
26878
|
route: '/acs/access_groups/list_users';
|
|
26912
26879
|
method: 'GET' | 'POST';
|
|
@@ -29504,8 +29471,6 @@ interface Routes {
|
|
|
29504
29471
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
29505
29472
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
29506
29473
|
current_climate_setting?: {
|
|
29507
|
-
automatic_heating_enabled: boolean;
|
|
29508
|
-
automatic_cooling_enabled: boolean;
|
|
29509
29474
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29510
29475
|
cooling_set_point_celsius?: number | undefined;
|
|
29511
29476
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29514,8 +29479,6 @@ interface Routes {
|
|
|
29514
29479
|
manual_override_allowed: boolean;
|
|
29515
29480
|
} | undefined;
|
|
29516
29481
|
default_climate_setting?: {
|
|
29517
|
-
automatic_heating_enabled: boolean;
|
|
29518
|
-
automatic_cooling_enabled: boolean;
|
|
29519
29482
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29520
29483
|
cooling_set_point_celsius?: number | undefined;
|
|
29521
29484
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29534,8 +29497,6 @@ interface Routes {
|
|
|
29534
29497
|
created_at: string;
|
|
29535
29498
|
/** 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. */
|
|
29536
29499
|
errors?: any;
|
|
29537
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
29538
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
29539
29500
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
29540
29501
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29541
29502
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -29925,8 +29886,6 @@ interface Routes {
|
|
|
29925
29886
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
29926
29887
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
29927
29888
|
current_climate_setting?: {
|
|
29928
|
-
automatic_heating_enabled: boolean;
|
|
29929
|
-
automatic_cooling_enabled: boolean;
|
|
29930
29889
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29931
29890
|
cooling_set_point_celsius?: number | undefined;
|
|
29932
29891
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29935,8 +29894,6 @@ interface Routes {
|
|
|
29935
29894
|
manual_override_allowed: boolean;
|
|
29936
29895
|
} | undefined;
|
|
29937
29896
|
default_climate_setting?: {
|
|
29938
|
-
automatic_heating_enabled: boolean;
|
|
29939
|
-
automatic_cooling_enabled: boolean;
|
|
29940
29897
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
29941
29898
|
cooling_set_point_celsius?: number | undefined;
|
|
29942
29899
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -29955,8 +29912,6 @@ interface Routes {
|
|
|
29955
29912
|
created_at: string;
|
|
29956
29913
|
/** 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. */
|
|
29957
29914
|
errors?: any;
|
|
29958
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
29959
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
29960
29915
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
29961
29916
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
29962
29917
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -30714,8 +30669,6 @@ interface Routes {
|
|
|
30714
30669
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
30715
30670
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
30716
30671
|
current_climate_setting?: {
|
|
30717
|
-
automatic_heating_enabled: boolean;
|
|
30718
|
-
automatic_cooling_enabled: boolean;
|
|
30719
30672
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30720
30673
|
cooling_set_point_celsius?: number | undefined;
|
|
30721
30674
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30724,8 +30677,6 @@ interface Routes {
|
|
|
30724
30677
|
manual_override_allowed: boolean;
|
|
30725
30678
|
} | undefined;
|
|
30726
30679
|
default_climate_setting?: {
|
|
30727
|
-
automatic_heating_enabled: boolean;
|
|
30728
|
-
automatic_cooling_enabled: boolean;
|
|
30729
30680
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
30730
30681
|
cooling_set_point_celsius?: number | undefined;
|
|
30731
30682
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -30744,8 +30695,6 @@ interface Routes {
|
|
|
30744
30695
|
created_at: string;
|
|
30745
30696
|
/** 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. */
|
|
30746
30697
|
errors?: any;
|
|
30747
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
30748
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
30749
30698
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
30750
30699
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
30751
30700
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -31110,8 +31059,6 @@ interface Routes {
|
|
|
31110
31059
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
31111
31060
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
31112
31061
|
current_climate_setting?: {
|
|
31113
|
-
automatic_heating_enabled: boolean;
|
|
31114
|
-
automatic_cooling_enabled: boolean;
|
|
31115
31062
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31116
31063
|
cooling_set_point_celsius?: number | undefined;
|
|
31117
31064
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31120,8 +31067,6 @@ interface Routes {
|
|
|
31120
31067
|
manual_override_allowed: boolean;
|
|
31121
31068
|
} | undefined;
|
|
31122
31069
|
default_climate_setting?: {
|
|
31123
|
-
automatic_heating_enabled: boolean;
|
|
31124
|
-
automatic_cooling_enabled: boolean;
|
|
31125
31070
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31126
31071
|
cooling_set_point_celsius?: number | undefined;
|
|
31127
31072
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31140,8 +31085,6 @@ interface Routes {
|
|
|
31140
31085
|
created_at: string;
|
|
31141
31086
|
/** 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. */
|
|
31142
31087
|
errors?: any;
|
|
31143
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
31144
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31145
31088
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31146
31089
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31147
31090
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -31531,8 +31474,6 @@ interface Routes {
|
|
|
31531
31474
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
31532
31475
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
31533
31476
|
current_climate_setting?: {
|
|
31534
|
-
automatic_heating_enabled: boolean;
|
|
31535
|
-
automatic_cooling_enabled: boolean;
|
|
31536
31477
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31537
31478
|
cooling_set_point_celsius?: number | undefined;
|
|
31538
31479
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31541,8 +31482,6 @@ interface Routes {
|
|
|
31541
31482
|
manual_override_allowed: boolean;
|
|
31542
31483
|
} | undefined;
|
|
31543
31484
|
default_climate_setting?: {
|
|
31544
|
-
automatic_heating_enabled: boolean;
|
|
31545
|
-
automatic_cooling_enabled: boolean;
|
|
31546
31485
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31547
31486
|
cooling_set_point_celsius?: number | undefined;
|
|
31548
31487
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31561,8 +31500,6 @@ interface Routes {
|
|
|
31561
31500
|
created_at: string;
|
|
31562
31501
|
/** 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. */
|
|
31563
31502
|
errors?: any;
|
|
31564
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
31565
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31566
31503
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31567
31504
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31568
31505
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -31927,8 +31864,6 @@ interface Routes {
|
|
|
31927
31864
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
31928
31865
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
31929
31866
|
current_climate_setting?: {
|
|
31930
|
-
automatic_heating_enabled: boolean;
|
|
31931
|
-
automatic_cooling_enabled: boolean;
|
|
31932
31867
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31933
31868
|
cooling_set_point_celsius?: number | undefined;
|
|
31934
31869
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31937,8 +31872,6 @@ interface Routes {
|
|
|
31937
31872
|
manual_override_allowed: boolean;
|
|
31938
31873
|
} | undefined;
|
|
31939
31874
|
default_climate_setting?: {
|
|
31940
|
-
automatic_heating_enabled: boolean;
|
|
31941
|
-
automatic_cooling_enabled: boolean;
|
|
31942
31875
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
31943
31876
|
cooling_set_point_celsius?: number | undefined;
|
|
31944
31877
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -31957,8 +31890,6 @@ interface Routes {
|
|
|
31957
31890
|
created_at: string;
|
|
31958
31891
|
/** 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. */
|
|
31959
31892
|
errors?: any;
|
|
31960
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
31961
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
31962
31893
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
31963
31894
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
31964
31895
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -33130,8 +33061,6 @@ interface Routes {
|
|
|
33130
33061
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
33131
33062
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
33132
33063
|
current_climate_setting?: {
|
|
33133
|
-
automatic_heating_enabled: boolean;
|
|
33134
|
-
automatic_cooling_enabled: boolean;
|
|
33135
33064
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33136
33065
|
cooling_set_point_celsius?: number | undefined;
|
|
33137
33066
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33140,8 +33069,6 @@ interface Routes {
|
|
|
33140
33069
|
manual_override_allowed: boolean;
|
|
33141
33070
|
} | undefined;
|
|
33142
33071
|
default_climate_setting?: {
|
|
33143
|
-
automatic_heating_enabled: boolean;
|
|
33144
|
-
automatic_cooling_enabled: boolean;
|
|
33145
33072
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33146
33073
|
cooling_set_point_celsius?: number | undefined;
|
|
33147
33074
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33160,8 +33087,6 @@ interface Routes {
|
|
|
33160
33087
|
created_at: string;
|
|
33161
33088
|
/** 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. */
|
|
33162
33089
|
errors?: any;
|
|
33163
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
33164
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
33165
33090
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
33166
33091
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33167
33092
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -33526,8 +33451,6 @@ interface Routes {
|
|
|
33526
33451
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
33527
33452
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
33528
33453
|
current_climate_setting?: {
|
|
33529
|
-
automatic_heating_enabled: boolean;
|
|
33530
|
-
automatic_cooling_enabled: boolean;
|
|
33531
33454
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33532
33455
|
cooling_set_point_celsius?: number | undefined;
|
|
33533
33456
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33536,8 +33459,6 @@ interface Routes {
|
|
|
33536
33459
|
manual_override_allowed: boolean;
|
|
33537
33460
|
} | undefined;
|
|
33538
33461
|
default_climate_setting?: {
|
|
33539
|
-
automatic_heating_enabled: boolean;
|
|
33540
|
-
automatic_cooling_enabled: boolean;
|
|
33541
33462
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
33542
33463
|
cooling_set_point_celsius?: number | undefined;
|
|
33543
33464
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -33556,8 +33477,6 @@ interface Routes {
|
|
|
33556
33477
|
created_at: string;
|
|
33557
33478
|
/** 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. */
|
|
33558
33479
|
errors?: any;
|
|
33559
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
33560
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
33561
33480
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
33562
33481
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
33563
33482
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -34987,8 +34906,6 @@ interface Routes {
|
|
|
34987
34906
|
name?: string | undefined;
|
|
34988
34907
|
schedule_starts_at: string;
|
|
34989
34908
|
schedule_ends_at: string;
|
|
34990
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
34991
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
34992
34909
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
34993
34910
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
34994
34911
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35009,8 +34926,6 @@ interface Routes {
|
|
|
35009
34926
|
created_at: string;
|
|
35010
34927
|
/** 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. */
|
|
35011
34928
|
errors?: any;
|
|
35012
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35013
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35014
34929
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35015
34930
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35016
34931
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35052,8 +34967,6 @@ interface Routes {
|
|
|
35052
34967
|
created_at: string;
|
|
35053
34968
|
/** 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. */
|
|
35054
34969
|
errors?: any;
|
|
35055
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35056
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35057
34970
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35058
34971
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35059
34972
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35084,8 +34997,6 @@ interface Routes {
|
|
|
35084
34997
|
created_at: string;
|
|
35085
34998
|
/** 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. */
|
|
35086
34999
|
errors?: any;
|
|
35087
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35088
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35089
35000
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35090
35001
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35091
35002
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35105,8 +35016,6 @@ interface Routes {
|
|
|
35105
35016
|
name?: string | undefined;
|
|
35106
35017
|
schedule_starts_at?: string | undefined;
|
|
35107
35018
|
schedule_ends_at?: string | undefined;
|
|
35108
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35109
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35110
35019
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35111
35020
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35112
35021
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35127,8 +35036,6 @@ interface Routes {
|
|
|
35127
35036
|
created_at: string;
|
|
35128
35037
|
/** 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. */
|
|
35129
35038
|
errors?: any;
|
|
35130
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35131
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35132
35039
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35133
35040
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35134
35041
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -35832,8 +35739,6 @@ interface Routes {
|
|
|
35832
35739
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
35833
35740
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
35834
35741
|
current_climate_setting?: {
|
|
35835
|
-
automatic_heating_enabled: boolean;
|
|
35836
|
-
automatic_cooling_enabled: boolean;
|
|
35837
35742
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
35838
35743
|
cooling_set_point_celsius?: number | undefined;
|
|
35839
35744
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -35842,8 +35747,6 @@ interface Routes {
|
|
|
35842
35747
|
manual_override_allowed: boolean;
|
|
35843
35748
|
} | undefined;
|
|
35844
35749
|
default_climate_setting?: {
|
|
35845
|
-
automatic_heating_enabled: boolean;
|
|
35846
|
-
automatic_cooling_enabled: boolean;
|
|
35847
35750
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
35848
35751
|
cooling_set_point_celsius?: number | undefined;
|
|
35849
35752
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -35862,8 +35765,6 @@ interface Routes {
|
|
|
35862
35765
|
created_at: string;
|
|
35863
35766
|
/** 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. */
|
|
35864
35767
|
errors?: any;
|
|
35865
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
35866
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
35867
35768
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
35868
35769
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
35869
35770
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -37007,8 +36908,6 @@ interface Routes {
|
|
|
37007
36908
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
37008
36909
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
37009
36910
|
current_climate_setting?: {
|
|
37010
|
-
automatic_heating_enabled: boolean;
|
|
37011
|
-
automatic_cooling_enabled: boolean;
|
|
37012
36911
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
37013
36912
|
cooling_set_point_celsius?: number | undefined;
|
|
37014
36913
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -37017,8 +36916,6 @@ interface Routes {
|
|
|
37017
36916
|
manual_override_allowed: boolean;
|
|
37018
36917
|
} | undefined;
|
|
37019
36918
|
default_climate_setting?: {
|
|
37020
|
-
automatic_heating_enabled: boolean;
|
|
37021
|
-
automatic_cooling_enabled: boolean;
|
|
37022
36919
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
37023
36920
|
cooling_set_point_celsius?: number | undefined;
|
|
37024
36921
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -37037,8 +36934,6 @@ interface Routes {
|
|
|
37037
36934
|
created_at: string;
|
|
37038
36935
|
/** 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. */
|
|
37039
36936
|
errors?: any;
|
|
37040
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
37041
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
37042
36937
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
37043
36938
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
37044
36939
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -37855,8 +37750,6 @@ interface Routes {
|
|
|
37855
37750
|
jsonBody: {
|
|
37856
37751
|
device_id: string;
|
|
37857
37752
|
default_climate_setting: {
|
|
37858
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
37859
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
37860
37753
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
37861
37754
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
37862
37755
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -38365,8 +38258,6 @@ interface Routes {
|
|
|
38365
38258
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
38366
38259
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
38367
38260
|
current_climate_setting?: {
|
|
38368
|
-
automatic_heating_enabled: boolean;
|
|
38369
|
-
automatic_cooling_enabled: boolean;
|
|
38370
38261
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38371
38262
|
cooling_set_point_celsius?: number | undefined;
|
|
38372
38263
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38375,8 +38266,6 @@ interface Routes {
|
|
|
38375
38266
|
manual_override_allowed: boolean;
|
|
38376
38267
|
} | undefined;
|
|
38377
38268
|
default_climate_setting?: {
|
|
38378
|
-
automatic_heating_enabled: boolean;
|
|
38379
|
-
automatic_cooling_enabled: boolean;
|
|
38380
38269
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38381
38270
|
cooling_set_point_celsius?: number | undefined;
|
|
38382
38271
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38395,8 +38284,6 @@ interface Routes {
|
|
|
38395
38284
|
created_at: string;
|
|
38396
38285
|
/** 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. */
|
|
38397
38286
|
errors?: any;
|
|
38398
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
38399
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
38400
38287
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
38401
38288
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
38402
38289
|
heating_set_point_celsius?: (number | undefined) | undefined;
|
|
@@ -38763,8 +38650,6 @@ interface Routes {
|
|
|
38763
38650
|
fan_mode_setting?: ('auto' | 'on') | undefined;
|
|
38764
38651
|
is_temporary_manual_override_active?: boolean | undefined;
|
|
38765
38652
|
current_climate_setting?: {
|
|
38766
|
-
automatic_heating_enabled: boolean;
|
|
38767
|
-
automatic_cooling_enabled: boolean;
|
|
38768
38653
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38769
38654
|
cooling_set_point_celsius?: number | undefined;
|
|
38770
38655
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38773,8 +38658,6 @@ interface Routes {
|
|
|
38773
38658
|
manual_override_allowed: boolean;
|
|
38774
38659
|
} | undefined;
|
|
38775
38660
|
default_climate_setting?: {
|
|
38776
|
-
automatic_heating_enabled: boolean;
|
|
38777
|
-
automatic_cooling_enabled: boolean;
|
|
38778
38661
|
hvac_mode_setting: 'off' | 'heat' | 'cool' | 'heat_cool';
|
|
38779
38662
|
cooling_set_point_celsius?: number | undefined;
|
|
38780
38663
|
heating_set_point_celsius?: number | undefined;
|
|
@@ -38793,8 +38676,6 @@ interface Routes {
|
|
|
38793
38676
|
created_at: string;
|
|
38794
38677
|
/** 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. */
|
|
38795
38678
|
errors?: any;
|
|
38796
|
-
automatic_heating_enabled?: boolean | undefined;
|
|
38797
|
-
automatic_cooling_enabled?: boolean | undefined;
|
|
38798
38679
|
hvac_mode_setting?: ('off' | 'heat' | 'cool' | 'heat_cool') | undefined;
|
|
38799
38680
|
cooling_set_point_celsius?: (number | undefined) | undefined;
|
|
38800
38681
|
heating_set_point_celsius?: (number | undefined) | undefined;
|