@seamapi/types 1.466.0 → 1.467.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 +70 -22
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +180 -10
- package/dist/index.cjs +70 -22
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +119 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +6 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +14 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device-provider.d.ts +3 -0
- package/lib/seam/connect/models/devices/device.d.ts +16 -0
- package/lib/seam/connect/models/devices/device.js +1 -0
- package/lib/seam/connect/models/devices/device.js.map +1 -1
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +10 -0
- package/lib/seam/connect/openapi.d.ts +23 -0
- package/lib/seam/connect/openapi.js +35 -0
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +100 -10
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +14 -0
- package/src/lib/seam/connect/models/devices/device.ts +1 -0
- package/src/lib/seam/connect/openapi.ts +37 -0
- package/src/lib/seam/connect/route-types.ts +168 -0
|
@@ -1997,6 +1997,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
1997
1997
|
upper_limit_celsius: number | null;
|
|
1998
1998
|
upper_limit_fahrenheit: number | null;
|
|
1999
1999
|
}>>>;
|
|
2000
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2001
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2000
2002
|
}, "strip", z.ZodTypeAny, {
|
|
2001
2003
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2002
2004
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -2127,6 +2129,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2127
2129
|
upper_limit_celsius: number | null;
|
|
2128
2130
|
upper_limit_fahrenheit: number | null;
|
|
2129
2131
|
} | undefined;
|
|
2132
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2133
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2130
2134
|
}, {
|
|
2131
2135
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
2132
2136
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -2257,6 +2261,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2257
2261
|
upper_limit_celsius: number | null;
|
|
2258
2262
|
upper_limit_fahrenheit: number | null;
|
|
2259
2263
|
} | undefined;
|
|
2264
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2265
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2260
2266
|
}>>>;
|
|
2261
2267
|
location: z.ZodNullable<z.ZodObject<{
|
|
2262
2268
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -2863,6 +2869,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2863
2869
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
2864
2870
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
2865
2871
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
2872
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
2866
2873
|
}, "strip", z.ZodTypeAny, {
|
|
2867
2874
|
display_name: string;
|
|
2868
2875
|
device_id: string;
|
|
@@ -3497,6 +3504,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3497
3504
|
upper_limit_celsius: number | null;
|
|
3498
3505
|
upper_limit_fahrenheit: number | null;
|
|
3499
3506
|
} | undefined;
|
|
3507
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
3508
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
3500
3509
|
};
|
|
3501
3510
|
location: {
|
|
3502
3511
|
location_name?: string | undefined;
|
|
@@ -3515,6 +3524,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3515
3524
|
can_simulate_connection?: boolean | undefined;
|
|
3516
3525
|
can_simulate_disconnection?: boolean | undefined;
|
|
3517
3526
|
can_unlock_with_code?: boolean | undefined;
|
|
3527
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
3518
3528
|
nickname?: string | undefined;
|
|
3519
3529
|
}, {
|
|
3520
3530
|
display_name: string;
|
|
@@ -4150,6 +4160,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4150
4160
|
upper_limit_celsius: number | null;
|
|
4151
4161
|
upper_limit_fahrenheit: number | null;
|
|
4152
4162
|
} | undefined;
|
|
4163
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
4164
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
4153
4165
|
};
|
|
4154
4166
|
location: {
|
|
4155
4167
|
location_name?: string | undefined;
|
|
@@ -4168,6 +4180,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4168
4180
|
can_simulate_connection?: boolean | undefined;
|
|
4169
4181
|
can_simulate_disconnection?: boolean | undefined;
|
|
4170
4182
|
can_unlock_with_code?: boolean | undefined;
|
|
4183
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
4171
4184
|
nickname?: string | undefined;
|
|
4172
4185
|
}>, "many">>;
|
|
4173
4186
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -5742,6 +5755,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5742
5755
|
upper_limit_celsius: number | null;
|
|
5743
5756
|
upper_limit_fahrenheit: number | null;
|
|
5744
5757
|
} | undefined;
|
|
5758
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
5759
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
5745
5760
|
};
|
|
5746
5761
|
location: {
|
|
5747
5762
|
location_name?: string | undefined;
|
|
@@ -5760,6 +5775,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5760
5775
|
can_simulate_connection?: boolean | undefined;
|
|
5761
5776
|
can_simulate_disconnection?: boolean | undefined;
|
|
5762
5777
|
can_unlock_with_code?: boolean | undefined;
|
|
5778
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
5763
5779
|
nickname?: string | undefined;
|
|
5764
5780
|
}[] | undefined;
|
|
5765
5781
|
acs_entrances?: {
|
|
@@ -6601,6 +6617,8 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6601
6617
|
upper_limit_celsius: number | null;
|
|
6602
6618
|
upper_limit_fahrenheit: number | null;
|
|
6603
6619
|
} | undefined;
|
|
6620
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
6621
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
6604
6622
|
};
|
|
6605
6623
|
location: {
|
|
6606
6624
|
location_name?: string | undefined;
|
|
@@ -6619,6 +6637,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6619
6637
|
can_simulate_connection?: boolean | undefined;
|
|
6620
6638
|
can_simulate_disconnection?: boolean | undefined;
|
|
6621
6639
|
can_unlock_with_code?: boolean | undefined;
|
|
6640
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
6622
6641
|
nickname?: string | undefined;
|
|
6623
6642
|
}[] | undefined;
|
|
6624
6643
|
acs_entrances?: {
|
|
@@ -8813,6 +8832,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8813
8832
|
upper_limit_celsius: number | null;
|
|
8814
8833
|
upper_limit_fahrenheit: number | null;
|
|
8815
8834
|
}>>>;
|
|
8835
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8836
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8816
8837
|
}, "strip", z.ZodTypeAny, {
|
|
8817
8838
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
8818
8839
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -8943,6 +8964,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8943
8964
|
upper_limit_celsius: number | null;
|
|
8944
8965
|
upper_limit_fahrenheit: number | null;
|
|
8945
8966
|
} | undefined;
|
|
8967
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
8968
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
8946
8969
|
}, {
|
|
8947
8970
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
8948
8971
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -9073,6 +9096,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9073
9096
|
upper_limit_celsius: number | null;
|
|
9074
9097
|
upper_limit_fahrenheit: number | null;
|
|
9075
9098
|
} | undefined;
|
|
9099
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
9100
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
9076
9101
|
}>>>;
|
|
9077
9102
|
location: z.ZodNullable<z.ZodObject<{
|
|
9078
9103
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -9679,6 +9704,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9679
9704
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
9680
9705
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
9681
9706
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
9707
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
9682
9708
|
}, "strip", z.ZodTypeAny, {
|
|
9683
9709
|
display_name: string;
|
|
9684
9710
|
device_id: string;
|
|
@@ -10313,6 +10339,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10313
10339
|
upper_limit_celsius: number | null;
|
|
10314
10340
|
upper_limit_fahrenheit: number | null;
|
|
10315
10341
|
} | undefined;
|
|
10342
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
10343
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
10316
10344
|
};
|
|
10317
10345
|
location: {
|
|
10318
10346
|
location_name?: string | undefined;
|
|
@@ -10331,6 +10359,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10331
10359
|
can_simulate_connection?: boolean | undefined;
|
|
10332
10360
|
can_simulate_disconnection?: boolean | undefined;
|
|
10333
10361
|
can_unlock_with_code?: boolean | undefined;
|
|
10362
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
10334
10363
|
nickname?: string | undefined;
|
|
10335
10364
|
}, {
|
|
10336
10365
|
display_name: string;
|
|
@@ -10966,6 +10995,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10966
10995
|
upper_limit_celsius: number | null;
|
|
10967
10996
|
upper_limit_fahrenheit: number | null;
|
|
10968
10997
|
} | undefined;
|
|
10998
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
10999
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
10969
11000
|
};
|
|
10970
11001
|
location: {
|
|
10971
11002
|
location_name?: string | undefined;
|
|
@@ -10984,6 +11015,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10984
11015
|
can_simulate_connection?: boolean | undefined;
|
|
10985
11016
|
can_simulate_disconnection?: boolean | undefined;
|
|
10986
11017
|
can_unlock_with_code?: boolean | undefined;
|
|
11018
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
10987
11019
|
nickname?: string | undefined;
|
|
10988
11020
|
}>, "many">>;
|
|
10989
11021
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -12668,6 +12700,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12668
12700
|
upper_limit_celsius: number | null;
|
|
12669
12701
|
upper_limit_fahrenheit: number | null;
|
|
12670
12702
|
} | undefined;
|
|
12703
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12704
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12671
12705
|
};
|
|
12672
12706
|
location: {
|
|
12673
12707
|
location_name?: string | undefined;
|
|
@@ -12686,6 +12720,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12686
12720
|
can_simulate_connection?: boolean | undefined;
|
|
12687
12721
|
can_simulate_disconnection?: boolean | undefined;
|
|
12688
12722
|
can_unlock_with_code?: boolean | undefined;
|
|
12723
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
12689
12724
|
nickname?: string | undefined;
|
|
12690
12725
|
}[] | undefined;
|
|
12691
12726
|
acs_entrances?: {
|
|
@@ -13554,6 +13589,8 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13554
13589
|
upper_limit_celsius: number | null;
|
|
13555
13590
|
upper_limit_fahrenheit: number | null;
|
|
13556
13591
|
} | undefined;
|
|
13592
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
13593
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
13557
13594
|
};
|
|
13558
13595
|
location: {
|
|
13559
13596
|
location_name?: string | undefined;
|
|
@@ -13572,6 +13609,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13572
13609
|
can_simulate_connection?: boolean | undefined;
|
|
13573
13610
|
can_simulate_disconnection?: boolean | undefined;
|
|
13574
13611
|
can_unlock_with_code?: boolean | undefined;
|
|
13612
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
13575
13613
|
nickname?: string | undefined;
|
|
13576
13614
|
}[] | undefined;
|
|
13577
13615
|
acs_entrances?: {
|
|
@@ -15793,6 +15831,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15793
15831
|
upper_limit_celsius: number | null;
|
|
15794
15832
|
upper_limit_fahrenheit: number | null;
|
|
15795
15833
|
}>>>;
|
|
15834
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15835
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
15796
15836
|
}, "strip", z.ZodTypeAny, {
|
|
15797
15837
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
15798
15838
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -15923,6 +15963,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15923
15963
|
upper_limit_celsius: number | null;
|
|
15924
15964
|
upper_limit_fahrenheit: number | null;
|
|
15925
15965
|
} | undefined;
|
|
15966
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
15967
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
15926
15968
|
}, {
|
|
15927
15969
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
15928
15970
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -16053,6 +16095,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16053
16095
|
upper_limit_celsius: number | null;
|
|
16054
16096
|
upper_limit_fahrenheit: number | null;
|
|
16055
16097
|
} | undefined;
|
|
16098
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
16099
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16056
16100
|
}>>>;
|
|
16057
16101
|
location: z.ZodNullable<z.ZodObject<{
|
|
16058
16102
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -16659,6 +16703,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16659
16703
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
16660
16704
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
16661
16705
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
16706
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
16662
16707
|
}, "strip", z.ZodTypeAny, {
|
|
16663
16708
|
display_name: string;
|
|
16664
16709
|
device_id: string;
|
|
@@ -17293,6 +17338,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17293
17338
|
upper_limit_celsius: number | null;
|
|
17294
17339
|
upper_limit_fahrenheit: number | null;
|
|
17295
17340
|
} | undefined;
|
|
17341
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
17342
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
17296
17343
|
};
|
|
17297
17344
|
location: {
|
|
17298
17345
|
location_name?: string | undefined;
|
|
@@ -17311,6 +17358,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17311
17358
|
can_simulate_connection?: boolean | undefined;
|
|
17312
17359
|
can_simulate_disconnection?: boolean | undefined;
|
|
17313
17360
|
can_unlock_with_code?: boolean | undefined;
|
|
17361
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
17314
17362
|
nickname?: string | undefined;
|
|
17315
17363
|
}, {
|
|
17316
17364
|
display_name: string;
|
|
@@ -17946,6 +17994,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17946
17994
|
upper_limit_celsius: number | null;
|
|
17947
17995
|
upper_limit_fahrenheit: number | null;
|
|
17948
17996
|
} | undefined;
|
|
17997
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
17998
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
17949
17999
|
};
|
|
17950
18000
|
location: {
|
|
17951
18001
|
location_name?: string | undefined;
|
|
@@ -17964,6 +18014,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17964
18014
|
can_simulate_connection?: boolean | undefined;
|
|
17965
18015
|
can_simulate_disconnection?: boolean | undefined;
|
|
17966
18016
|
can_unlock_with_code?: boolean | undefined;
|
|
18017
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
17967
18018
|
nickname?: string | undefined;
|
|
17968
18019
|
}>, "many">>;
|
|
17969
18020
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -18863,6 +18914,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18863
18914
|
upper_limit_celsius: number | null;
|
|
18864
18915
|
upper_limit_fahrenheit: number | null;
|
|
18865
18916
|
} | undefined;
|
|
18917
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
18918
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
18866
18919
|
};
|
|
18867
18920
|
location: {
|
|
18868
18921
|
location_name?: string | undefined;
|
|
@@ -18881,6 +18934,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18881
18934
|
can_simulate_connection?: boolean | undefined;
|
|
18882
18935
|
can_simulate_disconnection?: boolean | undefined;
|
|
18883
18936
|
can_unlock_with_code?: boolean | undefined;
|
|
18937
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
18884
18938
|
nickname?: string | undefined;
|
|
18885
18939
|
}[] | undefined;
|
|
18886
18940
|
acs_entrances?: {
|
|
@@ -19585,6 +19639,8 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19585
19639
|
upper_limit_celsius: number | null;
|
|
19586
19640
|
upper_limit_fahrenheit: number | null;
|
|
19587
19641
|
} | undefined;
|
|
19642
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
19643
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
19588
19644
|
};
|
|
19589
19645
|
location: {
|
|
19590
19646
|
location_name?: string | undefined;
|
|
@@ -19603,6 +19659,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19603
19659
|
can_simulate_connection?: boolean | undefined;
|
|
19604
19660
|
can_simulate_disconnection?: boolean | undefined;
|
|
19605
19661
|
can_unlock_with_code?: boolean | undefined;
|
|
19662
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
19606
19663
|
nickname?: string | undefined;
|
|
19607
19664
|
}[] | undefined;
|
|
19608
19665
|
acs_entrances?: {
|
|
@@ -21825,6 +21882,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21825
21882
|
upper_limit_celsius: number | null;
|
|
21826
21883
|
upper_limit_fahrenheit: number | null;
|
|
21827
21884
|
}>>>;
|
|
21885
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21886
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
21828
21887
|
}, "strip", z.ZodTypeAny, {
|
|
21829
21888
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
21830
21889
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -21955,6 +22014,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
21955
22014
|
upper_limit_celsius: number | null;
|
|
21956
22015
|
upper_limit_fahrenheit: number | null;
|
|
21957
22016
|
} | undefined;
|
|
22017
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22018
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
21958
22019
|
}, {
|
|
21959
22020
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
21960
22021
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -22085,6 +22146,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22085
22146
|
upper_limit_celsius: number | null;
|
|
22086
22147
|
upper_limit_fahrenheit: number | null;
|
|
22087
22148
|
} | undefined;
|
|
22149
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22150
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22088
22151
|
}>>>;
|
|
22089
22152
|
location: z.ZodNullable<z.ZodObject<{
|
|
22090
22153
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -22691,6 +22754,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22691
22754
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
22692
22755
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
22693
22756
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
22757
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
22694
22758
|
}, "strip", z.ZodTypeAny, {
|
|
22695
22759
|
display_name: string;
|
|
22696
22760
|
device_id: string;
|
|
@@ -23325,6 +23389,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23325
23389
|
upper_limit_celsius: number | null;
|
|
23326
23390
|
upper_limit_fahrenheit: number | null;
|
|
23327
23391
|
} | undefined;
|
|
23392
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
23393
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
23328
23394
|
};
|
|
23329
23395
|
location: {
|
|
23330
23396
|
location_name?: string | undefined;
|
|
@@ -23343,6 +23409,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23343
23409
|
can_simulate_connection?: boolean | undefined;
|
|
23344
23410
|
can_simulate_disconnection?: boolean | undefined;
|
|
23345
23411
|
can_unlock_with_code?: boolean | undefined;
|
|
23412
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
23346
23413
|
nickname?: string | undefined;
|
|
23347
23414
|
}, {
|
|
23348
23415
|
display_name: string;
|
|
@@ -23978,6 +24045,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23978
24045
|
upper_limit_celsius: number | null;
|
|
23979
24046
|
upper_limit_fahrenheit: number | null;
|
|
23980
24047
|
} | undefined;
|
|
24048
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24049
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
23981
24050
|
};
|
|
23982
24051
|
location: {
|
|
23983
24052
|
location_name?: string | undefined;
|
|
@@ -23996,6 +24065,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
23996
24065
|
can_simulate_connection?: boolean | undefined;
|
|
23997
24066
|
can_simulate_disconnection?: boolean | undefined;
|
|
23998
24067
|
can_unlock_with_code?: boolean | undefined;
|
|
24068
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
23999
24069
|
nickname?: string | undefined;
|
|
24000
24070
|
}>, "many">>;
|
|
24001
24071
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -31760,6 +31830,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31760
31830
|
upper_limit_celsius: number | null;
|
|
31761
31831
|
upper_limit_fahrenheit: number | null;
|
|
31762
31832
|
}>>>;
|
|
31833
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
31834
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
31763
31835
|
}, "strip", z.ZodTypeAny, {
|
|
31764
31836
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
31765
31837
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -31890,6 +31962,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
31890
31962
|
upper_limit_celsius: number | null;
|
|
31891
31963
|
upper_limit_fahrenheit: number | null;
|
|
31892
31964
|
} | undefined;
|
|
31965
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
31966
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
31893
31967
|
}, {
|
|
31894
31968
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
31895
31969
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -32020,6 +32094,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32020
32094
|
upper_limit_celsius: number | null;
|
|
32021
32095
|
upper_limit_fahrenheit: number | null;
|
|
32022
32096
|
} | undefined;
|
|
32097
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
32098
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
32023
32099
|
}>>>;
|
|
32024
32100
|
location: z.ZodNullable<z.ZodObject<{
|
|
32025
32101
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -32626,6 +32702,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32626
32702
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
32627
32703
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
32628
32704
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
32705
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32629
32706
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
32630
32707
|
is_managed: z.ZodLiteral<false>;
|
|
32631
32708
|
properties: z.ZodObject<Pick<{
|
|
@@ -32775,6 +32852,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
32775
32852
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
32776
32853
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
32777
32854
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
32855
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
32778
32856
|
}, "strip", z.ZodTypeAny, {
|
|
32779
32857
|
device_id: string;
|
|
32780
32858
|
workspace_id: string;
|
|
@@ -33002,6 +33080,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33002
33080
|
can_simulate_connection?: boolean | undefined;
|
|
33003
33081
|
can_simulate_disconnection?: boolean | undefined;
|
|
33004
33082
|
can_unlock_with_code?: boolean | undefined;
|
|
33083
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33005
33084
|
}, {
|
|
33006
33085
|
device_id: string;
|
|
33007
33086
|
workspace_id: string;
|
|
@@ -33229,6 +33308,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33229
33308
|
can_simulate_connection?: boolean | undefined;
|
|
33230
33309
|
can_simulate_disconnection?: boolean | undefined;
|
|
33231
33310
|
can_unlock_with_code?: boolean | undefined;
|
|
33311
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33232
33312
|
}>, "many">>;
|
|
33233
33313
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
33234
33314
|
connect_webview_id: z.ZodString;
|
|
@@ -33943,6 +34023,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33943
34023
|
upper_limit_celsius: number | null;
|
|
33944
34024
|
upper_limit_fahrenheit: number | null;
|
|
33945
34025
|
} | undefined;
|
|
34026
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
34027
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33946
34028
|
};
|
|
33947
34029
|
location: {
|
|
33948
34030
|
location_name?: string | undefined;
|
|
@@ -33961,6 +34043,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33961
34043
|
can_simulate_connection?: boolean | undefined;
|
|
33962
34044
|
can_simulate_disconnection?: boolean | undefined;
|
|
33963
34045
|
can_unlock_with_code?: boolean | undefined;
|
|
34046
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
33964
34047
|
nickname?: string | undefined;
|
|
33965
34048
|
}[] | undefined;
|
|
33966
34049
|
acs_entrances?: {
|
|
@@ -35385,6 +35468,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
35385
35468
|
can_simulate_connection?: boolean | undefined;
|
|
35386
35469
|
can_simulate_disconnection?: boolean | undefined;
|
|
35387
35470
|
can_unlock_with_code?: boolean | undefined;
|
|
35471
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
35388
35472
|
}[] | undefined;
|
|
35389
35473
|
connect_webviews?: {
|
|
35390
35474
|
status: "pending" | "failed" | "authorized";
|
|
@@ -36055,6 +36139,8 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
36055
36139
|
upper_limit_celsius: number | null;
|
|
36056
36140
|
upper_limit_fahrenheit: number | null;
|
|
36057
36141
|
} | undefined;
|
|
36142
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
36143
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
36058
36144
|
};
|
|
36059
36145
|
location: {
|
|
36060
36146
|
location_name?: string | undefined;
|
|
@@ -36073,6 +36159,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
36073
36159
|
can_simulate_connection?: boolean | undefined;
|
|
36074
36160
|
can_simulate_disconnection?: boolean | undefined;
|
|
36075
36161
|
can_unlock_with_code?: boolean | undefined;
|
|
36162
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
36076
36163
|
nickname?: string | undefined;
|
|
36077
36164
|
}[] | undefined;
|
|
36078
36165
|
acs_entrances?: {
|
|
@@ -37497,6 +37584,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
37497
37584
|
can_simulate_connection?: boolean | undefined;
|
|
37498
37585
|
can_simulate_disconnection?: boolean | undefined;
|
|
37499
37586
|
can_unlock_with_code?: boolean | undefined;
|
|
37587
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
37500
37588
|
}[] | undefined;
|
|
37501
37589
|
connect_webviews?: {
|
|
37502
37590
|
status: "pending" | "failed" | "authorized";
|
|
@@ -39685,6 +39773,8 @@ export declare const batch: z.ZodObject<{
|
|
|
39685
39773
|
upper_limit_celsius: number | null;
|
|
39686
39774
|
upper_limit_fahrenheit: number | null;
|
|
39687
39775
|
}>>>;
|
|
39776
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
39777
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
39688
39778
|
}, "strip", z.ZodTypeAny, {
|
|
39689
39779
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
39690
39780
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -39815,6 +39905,8 @@ export declare const batch: z.ZodObject<{
|
|
|
39815
39905
|
upper_limit_celsius: number | null;
|
|
39816
39906
|
upper_limit_fahrenheit: number | null;
|
|
39817
39907
|
} | undefined;
|
|
39908
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
39909
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
39818
39910
|
}, {
|
|
39819
39911
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
39820
39912
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -39945,6 +40037,8 @@ export declare const batch: z.ZodObject<{
|
|
|
39945
40037
|
upper_limit_celsius: number | null;
|
|
39946
40038
|
upper_limit_fahrenheit: number | null;
|
|
39947
40039
|
} | undefined;
|
|
40040
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
40041
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
39948
40042
|
}>>>;
|
|
39949
40043
|
location: z.ZodNullable<z.ZodObject<{
|
|
39950
40044
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -40551,6 +40645,7 @@ export declare const batch: z.ZodObject<{
|
|
|
40551
40645
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
40552
40646
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
40553
40647
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
40648
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
40554
40649
|
}, "strip", z.ZodTypeAny, {
|
|
40555
40650
|
display_name: string;
|
|
40556
40651
|
device_id: string;
|
|
@@ -41185,6 +41280,8 @@ export declare const batch: z.ZodObject<{
|
|
|
41185
41280
|
upper_limit_celsius: number | null;
|
|
41186
41281
|
upper_limit_fahrenheit: number | null;
|
|
41187
41282
|
} | undefined;
|
|
41283
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
41284
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
41188
41285
|
};
|
|
41189
41286
|
location: {
|
|
41190
41287
|
location_name?: string | undefined;
|
|
@@ -41203,6 +41300,7 @@ export declare const batch: z.ZodObject<{
|
|
|
41203
41300
|
can_simulate_connection?: boolean | undefined;
|
|
41204
41301
|
can_simulate_disconnection?: boolean | undefined;
|
|
41205
41302
|
can_unlock_with_code?: boolean | undefined;
|
|
41303
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
41206
41304
|
nickname?: string | undefined;
|
|
41207
41305
|
}, {
|
|
41208
41306
|
display_name: string;
|
|
@@ -41838,6 +41936,8 @@ export declare const batch: z.ZodObject<{
|
|
|
41838
41936
|
upper_limit_celsius: number | null;
|
|
41839
41937
|
upper_limit_fahrenheit: number | null;
|
|
41840
41938
|
} | undefined;
|
|
41939
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
41940
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
41841
41941
|
};
|
|
41842
41942
|
location: {
|
|
41843
41943
|
location_name?: string | undefined;
|
|
@@ -41856,6 +41956,7 @@ export declare const batch: z.ZodObject<{
|
|
|
41856
41956
|
can_simulate_connection?: boolean | undefined;
|
|
41857
41957
|
can_simulate_disconnection?: boolean | undefined;
|
|
41858
41958
|
can_unlock_with_code?: boolean | undefined;
|
|
41959
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
41859
41960
|
nickname?: string | undefined;
|
|
41860
41961
|
}>, "many">>;
|
|
41861
41962
|
acs_entrances: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
@@ -49620,6 +49721,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49620
49721
|
upper_limit_celsius: number | null;
|
|
49621
49722
|
upper_limit_fahrenheit: number | null;
|
|
49622
49723
|
}>>>;
|
|
49724
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
49725
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
49623
49726
|
}, "strip", z.ZodTypeAny, {
|
|
49624
49727
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
49625
49728
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -49750,6 +49853,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49750
49853
|
upper_limit_celsius: number | null;
|
|
49751
49854
|
upper_limit_fahrenheit: number | null;
|
|
49752
49855
|
} | undefined;
|
|
49856
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
49857
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
49753
49858
|
}, {
|
|
49754
49859
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
49755
49860
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -49880,6 +49985,8 @@ export declare const batch: z.ZodObject<{
|
|
|
49880
49985
|
upper_limit_celsius: number | null;
|
|
49881
49986
|
upper_limit_fahrenheit: number | null;
|
|
49882
49987
|
} | undefined;
|
|
49988
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
49989
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
49883
49990
|
}>>>;
|
|
49884
49991
|
location: z.ZodNullable<z.ZodObject<{
|
|
49885
49992
|
location_name: z.ZodOptional<z.ZodString>;
|
|
@@ -50486,6 +50593,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50486
50593
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
50487
50594
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
50488
50595
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
50596
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
50489
50597
|
}, "device_id" | "workspace_id" | "created_at" | "errors" | "connected_account_id" | "warnings" | "device_type" | "capabilities_supported" | "location"> & {
|
|
50490
50598
|
is_managed: z.ZodLiteral<false>;
|
|
50491
50599
|
properties: z.ZodObject<Pick<{
|
|
@@ -50635,6 +50743,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50635
50743
|
can_simulate_connection: z.ZodOptional<z.ZodBoolean>;
|
|
50636
50744
|
can_simulate_disconnection: z.ZodOptional<z.ZodBoolean>;
|
|
50637
50745
|
can_unlock_with_code: z.ZodOptional<z.ZodBoolean>;
|
|
50746
|
+
can_run_thermostat_programs: z.ZodOptional<z.ZodBoolean>;
|
|
50638
50747
|
}, "strip", z.ZodTypeAny, {
|
|
50639
50748
|
device_id: string;
|
|
50640
50749
|
workspace_id: string;
|
|
@@ -50862,6 +50971,7 @@ export declare const batch: z.ZodObject<{
|
|
|
50862
50971
|
can_simulate_connection?: boolean | undefined;
|
|
50863
50972
|
can_simulate_disconnection?: boolean | undefined;
|
|
50864
50973
|
can_unlock_with_code?: boolean | undefined;
|
|
50974
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
50865
50975
|
}, {
|
|
50866
50976
|
device_id: string;
|
|
50867
50977
|
workspace_id: string;
|
|
@@ -51089,6 +51199,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51089
51199
|
can_simulate_connection?: boolean | undefined;
|
|
51090
51200
|
can_simulate_disconnection?: boolean | undefined;
|
|
51091
51201
|
can_unlock_with_code?: boolean | undefined;
|
|
51202
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
51092
51203
|
}>, "many">>;
|
|
51093
51204
|
connect_webviews: z.ZodOptional<z.ZodArray<z.ZodObject<{
|
|
51094
51205
|
connect_webview_id: z.ZodString;
|
|
@@ -51803,6 +51914,8 @@ export declare const batch: z.ZodObject<{
|
|
|
51803
51914
|
upper_limit_celsius: number | null;
|
|
51804
51915
|
upper_limit_fahrenheit: number | null;
|
|
51805
51916
|
} | undefined;
|
|
51917
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
51918
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
51806
51919
|
};
|
|
51807
51920
|
location: {
|
|
51808
51921
|
location_name?: string | undefined;
|
|
@@ -51821,6 +51934,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51821
51934
|
can_simulate_connection?: boolean | undefined;
|
|
51822
51935
|
can_simulate_disconnection?: boolean | undefined;
|
|
51823
51936
|
can_unlock_with_code?: boolean | undefined;
|
|
51937
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
51824
51938
|
nickname?: string | undefined;
|
|
51825
51939
|
}[] | undefined;
|
|
51826
51940
|
acs_entrances?: {
|
|
@@ -53245,6 +53359,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53245
53359
|
can_simulate_connection?: boolean | undefined;
|
|
53246
53360
|
can_simulate_disconnection?: boolean | undefined;
|
|
53247
53361
|
can_unlock_with_code?: boolean | undefined;
|
|
53362
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
53248
53363
|
}[] | undefined;
|
|
53249
53364
|
connect_webviews?: {
|
|
53250
53365
|
status: "pending" | "failed" | "authorized";
|
|
@@ -53915,6 +54030,8 @@ export declare const batch: z.ZodObject<{
|
|
|
53915
54030
|
upper_limit_celsius: number | null;
|
|
53916
54031
|
upper_limit_fahrenheit: number | null;
|
|
53917
54032
|
} | undefined;
|
|
54033
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
54034
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53918
54035
|
};
|
|
53919
54036
|
location: {
|
|
53920
54037
|
location_name?: string | undefined;
|
|
@@ -53933,6 +54050,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53933
54050
|
can_simulate_connection?: boolean | undefined;
|
|
53934
54051
|
can_simulate_disconnection?: boolean | undefined;
|
|
53935
54052
|
can_unlock_with_code?: boolean | undefined;
|
|
54053
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
53936
54054
|
nickname?: string | undefined;
|
|
53937
54055
|
}[] | undefined;
|
|
53938
54056
|
acs_entrances?: {
|
|
@@ -55357,6 +55475,7 @@ export declare const batch: z.ZodObject<{
|
|
|
55357
55475
|
can_simulate_connection?: boolean | undefined;
|
|
55358
55476
|
can_simulate_disconnection?: boolean | undefined;
|
|
55359
55477
|
can_unlock_with_code?: boolean | undefined;
|
|
55478
|
+
can_run_thermostat_programs?: boolean | undefined;
|
|
55360
55479
|
}[] | undefined;
|
|
55361
55480
|
connect_webviews?: {
|
|
55362
55481
|
status: "pending" | "failed" | "authorized";
|
|
@@ -438,6 +438,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
438
438
|
upper_limit_celsius: number | null;
|
|
439
439
|
upper_limit_fahrenheit: number | null;
|
|
440
440
|
}>>>;
|
|
441
|
+
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
442
|
+
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
441
443
|
}, "strip", z.ZodTypeAny, {
|
|
442
444
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
443
445
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -568,6 +570,8 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
568
570
|
upper_limit_celsius: number | null;
|
|
569
571
|
upper_limit_fahrenheit: number | null;
|
|
570
572
|
} | undefined;
|
|
573
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
574
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
571
575
|
}, {
|
|
572
576
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
573
577
|
temperature_fahrenheit?: number | undefined;
|
|
@@ -698,5 +702,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
698
702
|
upper_limit_celsius: number | null;
|
|
699
703
|
upper_limit_fahrenheit: number | null;
|
|
700
704
|
} | undefined;
|
|
705
|
+
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
706
|
+
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
701
707
|
}>>;
|
|
702
708
|
export type { AccessCodeConstraint } from './access-code.js';
|