@seamapi/types 1.434.0 → 1.435.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 +134 -1
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +836 -24
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +99 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +99 -0
- package/lib/seam/connect/models/devices/device-metadata.d.ts +8 -8
- package/lib/seam/connect/models/devices/device.d.ts +145 -16
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +107 -8
- package/lib/seam/connect/models/events/devices.d.ts +26 -0
- package/lib/seam/connect/models/events/seam-event.d.ts +13 -0
- package/lib/seam/connect/models/thermostats/climate-preset.d.ts +46 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js +15 -0
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +120 -0
- package/lib/seam/connect/openapi.js +124 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +451 -0
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +17 -0
- package/src/lib/seam/connect/openapi.ts +148 -0
- package/src/lib/seam/connect/route-types.ts +611 -0
|
@@ -2863,6 +2863,10 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
2863
2863
|
product_type: string;
|
|
2864
2864
|
}>>;
|
|
2865
2865
|
}, "strip", z.ZodTypeAny, {
|
|
2866
|
+
ecobee_metadata?: {
|
|
2867
|
+
device_name: string;
|
|
2868
|
+
ecobee_device_id: string;
|
|
2869
|
+
} | undefined;
|
|
2866
2870
|
salto_ks_metadata?: {
|
|
2867
2871
|
lock_type: string;
|
|
2868
2872
|
lock_id: string;
|
|
@@ -3020,10 +3024,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3020
3024
|
device_custom_name: string;
|
|
3021
3025
|
display_name?: string | undefined;
|
|
3022
3026
|
} | undefined;
|
|
3023
|
-
ecobee_metadata?: {
|
|
3024
|
-
device_name: string;
|
|
3025
|
-
ecobee_device_id: string;
|
|
3026
|
-
} | undefined;
|
|
3027
3027
|
honeywell_resideo_metadata?: {
|
|
3028
3028
|
device_name: string;
|
|
3029
3029
|
honeywell_resideo_device_id: string;
|
|
@@ -3095,6 +3095,10 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3095
3095
|
product_type: string;
|
|
3096
3096
|
} | undefined;
|
|
3097
3097
|
}, {
|
|
3098
|
+
ecobee_metadata?: {
|
|
3099
|
+
device_name: string;
|
|
3100
|
+
ecobee_device_id: string;
|
|
3101
|
+
} | undefined;
|
|
3098
3102
|
salto_ks_metadata?: {
|
|
3099
3103
|
lock_type: string;
|
|
3100
3104
|
lock_id: string;
|
|
@@ -3252,10 +3256,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3252
3256
|
device_custom_name: string;
|
|
3253
3257
|
display_name?: string | undefined;
|
|
3254
3258
|
} | undefined;
|
|
3255
|
-
ecobee_metadata?: {
|
|
3256
|
-
device_name: string;
|
|
3257
|
-
ecobee_device_id: string;
|
|
3258
|
-
} | undefined;
|
|
3259
3259
|
honeywell_resideo_metadata?: {
|
|
3260
3260
|
device_name: string;
|
|
3261
3261
|
honeywell_resideo_device_id: string;
|
|
@@ -3424,6 +3424,19 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3424
3424
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3425
3425
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3426
3426
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
3427
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
3428
|
+
climate_ref: z.ZodString;
|
|
3429
|
+
is_optimized: z.ZodBoolean;
|
|
3430
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
3431
|
+
}, "strip", z.ZodTypeAny, {
|
|
3432
|
+
climate_ref: string;
|
|
3433
|
+
is_optimized: boolean;
|
|
3434
|
+
owner: "user" | "system";
|
|
3435
|
+
}, {
|
|
3436
|
+
climate_ref: string;
|
|
3437
|
+
is_optimized: boolean;
|
|
3438
|
+
owner: "user" | "system";
|
|
3439
|
+
}>>>;
|
|
3427
3440
|
}, "strip", z.ZodTypeAny, {
|
|
3428
3441
|
name?: string | null | undefined;
|
|
3429
3442
|
climate_preset_key?: string | undefined;
|
|
@@ -3439,6 +3452,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3439
3452
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3440
3453
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3441
3454
|
manual_override_allowed?: boolean | undefined;
|
|
3455
|
+
ecobee_metadata?: {
|
|
3456
|
+
climate_ref: string;
|
|
3457
|
+
is_optimized: boolean;
|
|
3458
|
+
owner: "user" | "system";
|
|
3459
|
+
} | undefined;
|
|
3442
3460
|
}, {
|
|
3443
3461
|
name?: string | null | undefined;
|
|
3444
3462
|
climate_preset_key?: string | undefined;
|
|
@@ -3454,6 +3472,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3454
3472
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3455
3473
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3456
3474
|
manual_override_allowed?: boolean | undefined;
|
|
3475
|
+
ecobee_metadata?: {
|
|
3476
|
+
climate_ref: string;
|
|
3477
|
+
is_optimized: boolean;
|
|
3478
|
+
owner: "user" | "system";
|
|
3479
|
+
} | undefined;
|
|
3457
3480
|
}>>;
|
|
3458
3481
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
3459
3482
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -3470,6 +3493,19 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3470
3493
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3471
3494
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3472
3495
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
3496
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
3497
|
+
climate_ref: z.ZodString;
|
|
3498
|
+
is_optimized: z.ZodBoolean;
|
|
3499
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
3500
|
+
}, "strip", z.ZodTypeAny, {
|
|
3501
|
+
climate_ref: string;
|
|
3502
|
+
is_optimized: boolean;
|
|
3503
|
+
owner: "user" | "system";
|
|
3504
|
+
}, {
|
|
3505
|
+
climate_ref: string;
|
|
3506
|
+
is_optimized: boolean;
|
|
3507
|
+
owner: "user" | "system";
|
|
3508
|
+
}>>>;
|
|
3473
3509
|
}, "strip", z.ZodTypeAny, {
|
|
3474
3510
|
name?: string | null | undefined;
|
|
3475
3511
|
climate_preset_key?: string | undefined;
|
|
@@ -3485,6 +3521,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3485
3521
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3486
3522
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3487
3523
|
manual_override_allowed?: boolean | undefined;
|
|
3524
|
+
ecobee_metadata?: {
|
|
3525
|
+
climate_ref: string;
|
|
3526
|
+
is_optimized: boolean;
|
|
3527
|
+
owner: "user" | "system";
|
|
3528
|
+
} | undefined;
|
|
3488
3529
|
}, {
|
|
3489
3530
|
name?: string | null | undefined;
|
|
3490
3531
|
climate_preset_key?: string | undefined;
|
|
@@ -3500,6 +3541,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3500
3541
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3501
3542
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3502
3543
|
manual_override_allowed?: boolean | undefined;
|
|
3544
|
+
ecobee_metadata?: {
|
|
3545
|
+
climate_ref: string;
|
|
3546
|
+
is_optimized: boolean;
|
|
3547
|
+
owner: "user" | "system";
|
|
3548
|
+
} | undefined;
|
|
3503
3549
|
}>>;
|
|
3504
3550
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
3505
3551
|
climate_preset_key: z.ZodString;
|
|
@@ -3516,6 +3562,19 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3516
3562
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
3517
3563
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
3518
3564
|
manual_override_allowed: z.ZodBoolean;
|
|
3565
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
3566
|
+
climate_ref: z.ZodString;
|
|
3567
|
+
is_optimized: z.ZodBoolean;
|
|
3568
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
3569
|
+
}, "strip", z.ZodTypeAny, {
|
|
3570
|
+
climate_ref: string;
|
|
3571
|
+
is_optimized: boolean;
|
|
3572
|
+
owner: "user" | "system";
|
|
3573
|
+
}, {
|
|
3574
|
+
climate_ref: string;
|
|
3575
|
+
is_optimized: boolean;
|
|
3576
|
+
owner: "user" | "system";
|
|
3577
|
+
}>>;
|
|
3519
3578
|
}, "strip", z.ZodTypeAny, {
|
|
3520
3579
|
climate_preset_key: string;
|
|
3521
3580
|
can_edit: boolean;
|
|
@@ -3531,6 +3590,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3531
3590
|
heating_set_point_celsius?: number | undefined;
|
|
3532
3591
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3533
3592
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3593
|
+
ecobee_metadata?: {
|
|
3594
|
+
climate_ref: string;
|
|
3595
|
+
is_optimized: boolean;
|
|
3596
|
+
owner: "user" | "system";
|
|
3597
|
+
} | undefined;
|
|
3534
3598
|
}, {
|
|
3535
3599
|
climate_preset_key: string;
|
|
3536
3600
|
can_edit: boolean;
|
|
@@ -3546,6 +3610,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3546
3610
|
heating_set_point_celsius?: number | undefined;
|
|
3547
3611
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3548
3612
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3613
|
+
ecobee_metadata?: {
|
|
3614
|
+
climate_ref: string;
|
|
3615
|
+
is_optimized: boolean;
|
|
3616
|
+
owner: "user" | "system";
|
|
3617
|
+
} | undefined;
|
|
3549
3618
|
}>, "many">>;
|
|
3550
3619
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3551
3620
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3719,6 +3788,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3719
3788
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3720
3789
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3721
3790
|
manual_override_allowed?: boolean | undefined;
|
|
3791
|
+
ecobee_metadata?: {
|
|
3792
|
+
climate_ref: string;
|
|
3793
|
+
is_optimized: boolean;
|
|
3794
|
+
owner: "user" | "system";
|
|
3795
|
+
} | undefined;
|
|
3722
3796
|
} | undefined;
|
|
3723
3797
|
default_climate_setting?: {
|
|
3724
3798
|
name?: string | null | undefined;
|
|
@@ -3735,6 +3809,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3735
3809
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3736
3810
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3737
3811
|
manual_override_allowed?: boolean | undefined;
|
|
3812
|
+
ecobee_metadata?: {
|
|
3813
|
+
climate_ref: string;
|
|
3814
|
+
is_optimized: boolean;
|
|
3815
|
+
owner: "user" | "system";
|
|
3816
|
+
} | undefined;
|
|
3738
3817
|
} | undefined;
|
|
3739
3818
|
available_climate_presets?: {
|
|
3740
3819
|
climate_preset_key: string;
|
|
@@ -3751,6 +3830,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3751
3830
|
heating_set_point_celsius?: number | undefined;
|
|
3752
3831
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3753
3832
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3833
|
+
ecobee_metadata?: {
|
|
3834
|
+
climate_ref: string;
|
|
3835
|
+
is_optimized: boolean;
|
|
3836
|
+
owner: "user" | "system";
|
|
3837
|
+
} | undefined;
|
|
3754
3838
|
}[] | undefined;
|
|
3755
3839
|
fallback_climate_preset_key?: string | null | undefined;
|
|
3756
3840
|
active_thermostat_schedule?: {
|
|
@@ -3834,6 +3918,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3834
3918
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3835
3919
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3836
3920
|
manual_override_allowed?: boolean | undefined;
|
|
3921
|
+
ecobee_metadata?: {
|
|
3922
|
+
climate_ref: string;
|
|
3923
|
+
is_optimized: boolean;
|
|
3924
|
+
owner: "user" | "system";
|
|
3925
|
+
} | undefined;
|
|
3837
3926
|
} | undefined;
|
|
3838
3927
|
default_climate_setting?: {
|
|
3839
3928
|
name?: string | null | undefined;
|
|
@@ -3850,6 +3939,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3850
3939
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3851
3940
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3852
3941
|
manual_override_allowed?: boolean | undefined;
|
|
3942
|
+
ecobee_metadata?: {
|
|
3943
|
+
climate_ref: string;
|
|
3944
|
+
is_optimized: boolean;
|
|
3945
|
+
owner: "user" | "system";
|
|
3946
|
+
} | undefined;
|
|
3853
3947
|
} | undefined;
|
|
3854
3948
|
available_climate_presets?: {
|
|
3855
3949
|
climate_preset_key: string;
|
|
@@ -3866,6 +3960,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3866
3960
|
heating_set_point_celsius?: number | undefined;
|
|
3867
3961
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
3868
3962
|
heating_set_point_fahrenheit?: number | undefined;
|
|
3963
|
+
ecobee_metadata?: {
|
|
3964
|
+
climate_ref: string;
|
|
3965
|
+
is_optimized: boolean;
|
|
3966
|
+
owner: "user" | "system";
|
|
3967
|
+
} | undefined;
|
|
3869
3968
|
}[] | undefined;
|
|
3870
3969
|
fallback_climate_preset_key?: string | null | undefined;
|
|
3871
3970
|
active_thermostat_schedule?: {
|
|
@@ -4784,6 +4883,10 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4784
4883
|
has_active_phone: boolean;
|
|
4785
4884
|
} | undefined;
|
|
4786
4885
|
} & {
|
|
4886
|
+
ecobee_metadata?: {
|
|
4887
|
+
device_name: string;
|
|
4888
|
+
ecobee_device_id: string;
|
|
4889
|
+
} | undefined;
|
|
4787
4890
|
salto_ks_metadata?: {
|
|
4788
4891
|
lock_type: string;
|
|
4789
4892
|
lock_id: string;
|
|
@@ -4941,10 +5044,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4941
5044
|
device_custom_name: string;
|
|
4942
5045
|
display_name?: string | undefined;
|
|
4943
5046
|
} | undefined;
|
|
4944
|
-
ecobee_metadata?: {
|
|
4945
|
-
device_name: string;
|
|
4946
|
-
ecobee_device_id: string;
|
|
4947
|
-
} | undefined;
|
|
4948
5047
|
honeywell_resideo_metadata?: {
|
|
4949
5048
|
device_name: string;
|
|
4950
5049
|
honeywell_resideo_device_id: string;
|
|
@@ -5060,6 +5159,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5060
5159
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5061
5160
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5062
5161
|
manual_override_allowed?: boolean | undefined;
|
|
5162
|
+
ecobee_metadata?: {
|
|
5163
|
+
climate_ref: string;
|
|
5164
|
+
is_optimized: boolean;
|
|
5165
|
+
owner: "user" | "system";
|
|
5166
|
+
} | undefined;
|
|
5063
5167
|
} | undefined;
|
|
5064
5168
|
default_climate_setting?: {
|
|
5065
5169
|
name?: string | null | undefined;
|
|
@@ -5076,6 +5180,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5076
5180
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5077
5181
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5078
5182
|
manual_override_allowed?: boolean | undefined;
|
|
5183
|
+
ecobee_metadata?: {
|
|
5184
|
+
climate_ref: string;
|
|
5185
|
+
is_optimized: boolean;
|
|
5186
|
+
owner: "user" | "system";
|
|
5187
|
+
} | undefined;
|
|
5079
5188
|
} | undefined;
|
|
5080
5189
|
available_climate_presets?: {
|
|
5081
5190
|
climate_preset_key: string;
|
|
@@ -5092,6 +5201,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5092
5201
|
heating_set_point_celsius?: number | undefined;
|
|
5093
5202
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5094
5203
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5204
|
+
ecobee_metadata?: {
|
|
5205
|
+
climate_ref: string;
|
|
5206
|
+
is_optimized: boolean;
|
|
5207
|
+
owner: "user" | "system";
|
|
5208
|
+
} | undefined;
|
|
5095
5209
|
}[] | undefined;
|
|
5096
5210
|
fallback_climate_preset_key?: string | null | undefined;
|
|
5097
5211
|
active_thermostat_schedule?: {
|
|
@@ -5403,6 +5517,10 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5403
5517
|
has_active_phone: boolean;
|
|
5404
5518
|
} | undefined;
|
|
5405
5519
|
} & {
|
|
5520
|
+
ecobee_metadata?: {
|
|
5521
|
+
device_name: string;
|
|
5522
|
+
ecobee_device_id: string;
|
|
5523
|
+
} | undefined;
|
|
5406
5524
|
salto_ks_metadata?: {
|
|
5407
5525
|
lock_type: string;
|
|
5408
5526
|
lock_id: string;
|
|
@@ -5560,10 +5678,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5560
5678
|
device_custom_name: string;
|
|
5561
5679
|
display_name?: string | undefined;
|
|
5562
5680
|
} | undefined;
|
|
5563
|
-
ecobee_metadata?: {
|
|
5564
|
-
device_name: string;
|
|
5565
|
-
ecobee_device_id: string;
|
|
5566
|
-
} | undefined;
|
|
5567
5681
|
honeywell_resideo_metadata?: {
|
|
5568
5682
|
device_name: string;
|
|
5569
5683
|
honeywell_resideo_device_id: string;
|
|
@@ -5679,6 +5793,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5679
5793
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5680
5794
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5681
5795
|
manual_override_allowed?: boolean | undefined;
|
|
5796
|
+
ecobee_metadata?: {
|
|
5797
|
+
climate_ref: string;
|
|
5798
|
+
is_optimized: boolean;
|
|
5799
|
+
owner: "user" | "system";
|
|
5800
|
+
} | undefined;
|
|
5682
5801
|
} | undefined;
|
|
5683
5802
|
default_climate_setting?: {
|
|
5684
5803
|
name?: string | null | undefined;
|
|
@@ -5695,6 +5814,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5695
5814
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5696
5815
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5697
5816
|
manual_override_allowed?: boolean | undefined;
|
|
5817
|
+
ecobee_metadata?: {
|
|
5818
|
+
climate_ref: string;
|
|
5819
|
+
is_optimized: boolean;
|
|
5820
|
+
owner: "user" | "system";
|
|
5821
|
+
} | undefined;
|
|
5698
5822
|
} | undefined;
|
|
5699
5823
|
available_climate_presets?: {
|
|
5700
5824
|
climate_preset_key: string;
|
|
@@ -5711,6 +5835,11 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5711
5835
|
heating_set_point_celsius?: number | undefined;
|
|
5712
5836
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
5713
5837
|
heating_set_point_fahrenheit?: number | undefined;
|
|
5838
|
+
ecobee_metadata?: {
|
|
5839
|
+
climate_ref: string;
|
|
5840
|
+
is_optimized: boolean;
|
|
5841
|
+
owner: "user" | "system";
|
|
5842
|
+
} | undefined;
|
|
5714
5843
|
}[] | undefined;
|
|
5715
5844
|
fallback_climate_preset_key?: string | null | undefined;
|
|
5716
5845
|
active_thermostat_schedule?: {
|
|
@@ -956,6 +956,10 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
956
956
|
product_type: string;
|
|
957
957
|
}>>;
|
|
958
958
|
}, "strip", z.ZodTypeAny, {
|
|
959
|
+
ecobee_metadata?: {
|
|
960
|
+
device_name: string;
|
|
961
|
+
ecobee_device_id: string;
|
|
962
|
+
} | undefined;
|
|
959
963
|
salto_ks_metadata?: {
|
|
960
964
|
lock_type: string;
|
|
961
965
|
lock_id: string;
|
|
@@ -1113,10 +1117,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1113
1117
|
device_custom_name: string;
|
|
1114
1118
|
display_name?: string | undefined;
|
|
1115
1119
|
} | undefined;
|
|
1116
|
-
ecobee_metadata?: {
|
|
1117
|
-
device_name: string;
|
|
1118
|
-
ecobee_device_id: string;
|
|
1119
|
-
} | undefined;
|
|
1120
1120
|
honeywell_resideo_metadata?: {
|
|
1121
1121
|
device_name: string;
|
|
1122
1122
|
honeywell_resideo_device_id: string;
|
|
@@ -1188,6 +1188,10 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1188
1188
|
product_type: string;
|
|
1189
1189
|
} | undefined;
|
|
1190
1190
|
}, {
|
|
1191
|
+
ecobee_metadata?: {
|
|
1192
|
+
device_name: string;
|
|
1193
|
+
ecobee_device_id: string;
|
|
1194
|
+
} | undefined;
|
|
1191
1195
|
salto_ks_metadata?: {
|
|
1192
1196
|
lock_type: string;
|
|
1193
1197
|
lock_id: string;
|
|
@@ -1345,10 +1349,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1345
1349
|
device_custom_name: string;
|
|
1346
1350
|
display_name?: string | undefined;
|
|
1347
1351
|
} | undefined;
|
|
1348
|
-
ecobee_metadata?: {
|
|
1349
|
-
device_name: string;
|
|
1350
|
-
ecobee_device_id: string;
|
|
1351
|
-
} | undefined;
|
|
1352
1352
|
honeywell_resideo_metadata?: {
|
|
1353
1353
|
device_name: string;
|
|
1354
1354
|
honeywell_resideo_device_id: string;
|
|
@@ -1517,6 +1517,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1517
1517
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1518
1518
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1519
1519
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1520
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1521
|
+
climate_ref: z.ZodString;
|
|
1522
|
+
is_optimized: z.ZodBoolean;
|
|
1523
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1524
|
+
}, "strip", z.ZodTypeAny, {
|
|
1525
|
+
climate_ref: string;
|
|
1526
|
+
is_optimized: boolean;
|
|
1527
|
+
owner: "user" | "system";
|
|
1528
|
+
}, {
|
|
1529
|
+
climate_ref: string;
|
|
1530
|
+
is_optimized: boolean;
|
|
1531
|
+
owner: "user" | "system";
|
|
1532
|
+
}>>>;
|
|
1520
1533
|
}, "strip", z.ZodTypeAny, {
|
|
1521
1534
|
name?: string | null | undefined;
|
|
1522
1535
|
climate_preset_key?: string | undefined;
|
|
@@ -1532,6 +1545,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1532
1545
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1533
1546
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1534
1547
|
manual_override_allowed?: boolean | undefined;
|
|
1548
|
+
ecobee_metadata?: {
|
|
1549
|
+
climate_ref: string;
|
|
1550
|
+
is_optimized: boolean;
|
|
1551
|
+
owner: "user" | "system";
|
|
1552
|
+
} | undefined;
|
|
1535
1553
|
}, {
|
|
1536
1554
|
name?: string | null | undefined;
|
|
1537
1555
|
climate_preset_key?: string | undefined;
|
|
@@ -1547,6 +1565,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1547
1565
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1548
1566
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1549
1567
|
manual_override_allowed?: boolean | undefined;
|
|
1568
|
+
ecobee_metadata?: {
|
|
1569
|
+
climate_ref: string;
|
|
1570
|
+
is_optimized: boolean;
|
|
1571
|
+
owner: "user" | "system";
|
|
1572
|
+
} | undefined;
|
|
1550
1573
|
}>>;
|
|
1551
1574
|
default_climate_setting: z.ZodOptional<z.ZodObject<{
|
|
1552
1575
|
climate_preset_key: z.ZodOptional<z.ZodString>;
|
|
@@ -1563,6 +1586,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1563
1586
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1564
1587
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1565
1588
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1589
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1590
|
+
climate_ref: z.ZodString;
|
|
1591
|
+
is_optimized: z.ZodBoolean;
|
|
1592
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1593
|
+
}, "strip", z.ZodTypeAny, {
|
|
1594
|
+
climate_ref: string;
|
|
1595
|
+
is_optimized: boolean;
|
|
1596
|
+
owner: "user" | "system";
|
|
1597
|
+
}, {
|
|
1598
|
+
climate_ref: string;
|
|
1599
|
+
is_optimized: boolean;
|
|
1600
|
+
owner: "user" | "system";
|
|
1601
|
+
}>>>;
|
|
1566
1602
|
}, "strip", z.ZodTypeAny, {
|
|
1567
1603
|
name?: string | null | undefined;
|
|
1568
1604
|
climate_preset_key?: string | undefined;
|
|
@@ -1578,6 +1614,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1578
1614
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1579
1615
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1580
1616
|
manual_override_allowed?: boolean | undefined;
|
|
1617
|
+
ecobee_metadata?: {
|
|
1618
|
+
climate_ref: string;
|
|
1619
|
+
is_optimized: boolean;
|
|
1620
|
+
owner: "user" | "system";
|
|
1621
|
+
} | undefined;
|
|
1581
1622
|
}, {
|
|
1582
1623
|
name?: string | null | undefined;
|
|
1583
1624
|
climate_preset_key?: string | undefined;
|
|
@@ -1593,6 +1634,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1593
1634
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1594
1635
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1595
1636
|
manual_override_allowed?: boolean | undefined;
|
|
1637
|
+
ecobee_metadata?: {
|
|
1638
|
+
climate_ref: string;
|
|
1639
|
+
is_optimized: boolean;
|
|
1640
|
+
owner: "user" | "system";
|
|
1641
|
+
} | undefined;
|
|
1596
1642
|
}>>;
|
|
1597
1643
|
available_climate_presets: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
1598
1644
|
climate_preset_key: z.ZodString;
|
|
@@ -1609,6 +1655,19 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1609
1655
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1610
1656
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodNumber>;
|
|
1611
1657
|
manual_override_allowed: z.ZodBoolean;
|
|
1658
|
+
ecobee_metadata: z.ZodOptional<z.ZodObject<{
|
|
1659
|
+
climate_ref: z.ZodString;
|
|
1660
|
+
is_optimized: z.ZodBoolean;
|
|
1661
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1662
|
+
}, "strip", z.ZodTypeAny, {
|
|
1663
|
+
climate_ref: string;
|
|
1664
|
+
is_optimized: boolean;
|
|
1665
|
+
owner: "user" | "system";
|
|
1666
|
+
}, {
|
|
1667
|
+
climate_ref: string;
|
|
1668
|
+
is_optimized: boolean;
|
|
1669
|
+
owner: "user" | "system";
|
|
1670
|
+
}>>;
|
|
1612
1671
|
}, "strip", z.ZodTypeAny, {
|
|
1613
1672
|
climate_preset_key: string;
|
|
1614
1673
|
can_edit: boolean;
|
|
@@ -1624,6 +1683,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1624
1683
|
heating_set_point_celsius?: number | undefined;
|
|
1625
1684
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1626
1685
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1686
|
+
ecobee_metadata?: {
|
|
1687
|
+
climate_ref: string;
|
|
1688
|
+
is_optimized: boolean;
|
|
1689
|
+
owner: "user" | "system";
|
|
1690
|
+
} | undefined;
|
|
1627
1691
|
}, {
|
|
1628
1692
|
climate_preset_key: string;
|
|
1629
1693
|
can_edit: boolean;
|
|
@@ -1639,6 +1703,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1639
1703
|
heating_set_point_celsius?: number | undefined;
|
|
1640
1704
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1641
1705
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1706
|
+
ecobee_metadata?: {
|
|
1707
|
+
climate_ref: string;
|
|
1708
|
+
is_optimized: boolean;
|
|
1709
|
+
owner: "user" | "system";
|
|
1710
|
+
} | undefined;
|
|
1642
1711
|
}>, "many">>;
|
|
1643
1712
|
fallback_climate_preset_key: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1644
1713
|
active_thermostat_schedule: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -1812,6 +1881,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1812
1881
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1813
1882
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1814
1883
|
manual_override_allowed?: boolean | undefined;
|
|
1884
|
+
ecobee_metadata?: {
|
|
1885
|
+
climate_ref: string;
|
|
1886
|
+
is_optimized: boolean;
|
|
1887
|
+
owner: "user" | "system";
|
|
1888
|
+
} | undefined;
|
|
1815
1889
|
} | undefined;
|
|
1816
1890
|
default_climate_setting?: {
|
|
1817
1891
|
name?: string | null | undefined;
|
|
@@ -1828,6 +1902,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1828
1902
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1829
1903
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1830
1904
|
manual_override_allowed?: boolean | undefined;
|
|
1905
|
+
ecobee_metadata?: {
|
|
1906
|
+
climate_ref: string;
|
|
1907
|
+
is_optimized: boolean;
|
|
1908
|
+
owner: "user" | "system";
|
|
1909
|
+
} | undefined;
|
|
1831
1910
|
} | undefined;
|
|
1832
1911
|
available_climate_presets?: {
|
|
1833
1912
|
climate_preset_key: string;
|
|
@@ -1844,6 +1923,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1844
1923
|
heating_set_point_celsius?: number | undefined;
|
|
1845
1924
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1846
1925
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1926
|
+
ecobee_metadata?: {
|
|
1927
|
+
climate_ref: string;
|
|
1928
|
+
is_optimized: boolean;
|
|
1929
|
+
owner: "user" | "system";
|
|
1930
|
+
} | undefined;
|
|
1847
1931
|
}[] | undefined;
|
|
1848
1932
|
fallback_climate_preset_key?: string | null | undefined;
|
|
1849
1933
|
active_thermostat_schedule?: {
|
|
@@ -1927,6 +2011,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1927
2011
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1928
2012
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1929
2013
|
manual_override_allowed?: boolean | undefined;
|
|
2014
|
+
ecobee_metadata?: {
|
|
2015
|
+
climate_ref: string;
|
|
2016
|
+
is_optimized: boolean;
|
|
2017
|
+
owner: "user" | "system";
|
|
2018
|
+
} | undefined;
|
|
1930
2019
|
} | undefined;
|
|
1931
2020
|
default_climate_setting?: {
|
|
1932
2021
|
name?: string | null | undefined;
|
|
@@ -1943,6 +2032,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1943
2032
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1944
2033
|
heating_set_point_fahrenheit?: number | undefined;
|
|
1945
2034
|
manual_override_allowed?: boolean | undefined;
|
|
2035
|
+
ecobee_metadata?: {
|
|
2036
|
+
climate_ref: string;
|
|
2037
|
+
is_optimized: boolean;
|
|
2038
|
+
owner: "user" | "system";
|
|
2039
|
+
} | undefined;
|
|
1946
2040
|
} | undefined;
|
|
1947
2041
|
available_climate_presets?: {
|
|
1948
2042
|
climate_preset_key: string;
|
|
@@ -1959,6 +2053,11 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1959
2053
|
heating_set_point_celsius?: number | undefined;
|
|
1960
2054
|
cooling_set_point_fahrenheit?: number | undefined;
|
|
1961
2055
|
heating_set_point_fahrenheit?: number | undefined;
|
|
2056
|
+
ecobee_metadata?: {
|
|
2057
|
+
climate_ref: string;
|
|
2058
|
+
is_optimized: boolean;
|
|
2059
|
+
owner: "user" | "system";
|
|
2060
|
+
} | undefined;
|
|
1962
2061
|
}[] | undefined;
|
|
1963
2062
|
fallback_climate_preset_key?: string | null | undefined;
|
|
1964
2063
|
active_thermostat_schedule?: {
|
|
@@ -847,6 +847,19 @@ export declare const thermostat_manually_adjusted_event: z.ZodObject<z.objectUti
|
|
|
847
847
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
848
848
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
849
849
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
850
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
851
|
+
climate_ref: z.ZodString;
|
|
852
|
+
is_optimized: z.ZodBoolean;
|
|
853
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
854
|
+
}, "strip", z.ZodTypeAny, {
|
|
855
|
+
climate_ref: string;
|
|
856
|
+
is_optimized: boolean;
|
|
857
|
+
owner: "user" | "system";
|
|
858
|
+
}, {
|
|
859
|
+
climate_ref: string;
|
|
860
|
+
is_optimized: boolean;
|
|
861
|
+
owner: "user" | "system";
|
|
862
|
+
}>>>;
|
|
850
863
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
851
864
|
method: "external" | "seam";
|
|
852
865
|
device_id: string;
|
|
@@ -1867,6 +1880,19 @@ export declare const device_events: readonly [z.ZodObject<z.objectUtil.extendSha
|
|
|
1867
1880
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1868
1881
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1869
1882
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1883
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
1884
|
+
climate_ref: z.ZodString;
|
|
1885
|
+
is_optimized: z.ZodBoolean;
|
|
1886
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
1887
|
+
}, "strip", z.ZodTypeAny, {
|
|
1888
|
+
climate_ref: string;
|
|
1889
|
+
is_optimized: boolean;
|
|
1890
|
+
owner: "user" | "system";
|
|
1891
|
+
}, {
|
|
1892
|
+
climate_ref: string;
|
|
1893
|
+
is_optimized: boolean;
|
|
1894
|
+
owner: "user" | "system";
|
|
1895
|
+
}>>>;
|
|
1870
1896
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
1871
1897
|
method: "external" | "seam";
|
|
1872
1898
|
device_id: string;
|
|
@@ -2297,6 +2297,19 @@ export declare const seam_event: z.ZodDiscriminatedUnion<"event_type", [z.ZodObj
|
|
|
2297
2297
|
cooling_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2298
2298
|
heating_set_point_fahrenheit: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2299
2299
|
manual_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
2300
|
+
ecobee_metadata: z.ZodOptional<z.ZodOptional<z.ZodObject<{
|
|
2301
|
+
climate_ref: z.ZodString;
|
|
2302
|
+
is_optimized: z.ZodBoolean;
|
|
2303
|
+
owner: z.ZodEnum<["user", "system"]>;
|
|
2304
|
+
}, "strip", z.ZodTypeAny, {
|
|
2305
|
+
climate_ref: string;
|
|
2306
|
+
is_optimized: boolean;
|
|
2307
|
+
owner: "user" | "system";
|
|
2308
|
+
}, {
|
|
2309
|
+
climate_ref: string;
|
|
2310
|
+
is_optimized: boolean;
|
|
2311
|
+
owner: "user" | "system";
|
|
2312
|
+
}>>>;
|
|
2300
2313
|
}, "fan_mode_setting" | "hvac_mode_setting" | "cooling_set_point_celsius" | "heating_set_point_celsius" | "cooling_set_point_fahrenheit" | "heating_set_point_fahrenheit">>, "strip", z.ZodTypeAny, {
|
|
2301
2314
|
method: "external" | "seam";
|
|
2302
2315
|
device_id: string;
|