@seamapi/types 1.577.0 → 1.579.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 +29 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +104 -30
- package/dist/index.cjs +29 -15
- package/dist/index.cjs.map +1 -1
- package/lib/seam/connect/models/batch.d.ts +41 -0
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +3 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js +8 -0
- package/lib/seam/connect/models/devices/capability-properties/thermostat.js.map +1 -1
- package/lib/seam/connect/models/devices/device.d.ts +5 -0
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +3 -0
- package/lib/seam/connect/openapi.d.ts +41 -28
- package/lib/seam/connect/openapi.js +21 -13
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +45 -2
- package/package.json +1 -1
- package/src/lib/seam/connect/models/devices/capability-properties/thermostat.ts +8 -0
- package/src/lib/seam/connect/openapi.ts +24 -14
- package/src/lib/seam/connect/route-types.ts +79 -2
|
@@ -2004,6 +2004,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2004
2004
|
upper_limit_fahrenheit: number | null;
|
|
2005
2005
|
}>>>;
|
|
2006
2006
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2007
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2007
2008
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2008
2009
|
}, "strip", z.ZodTypeAny, {
|
|
2009
2010
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2136,6 +2137,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2136
2137
|
upper_limit_fahrenheit: number | null;
|
|
2137
2138
|
} | undefined;
|
|
2138
2139
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2140
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2139
2141
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2140
2142
|
}, {
|
|
2141
2143
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2268,6 +2270,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
2268
2270
|
upper_limit_fahrenheit: number | null;
|
|
2269
2271
|
} | undefined;
|
|
2270
2272
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2273
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2271
2274
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2272
2275
|
}>>>;
|
|
2273
2276
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -3491,6 +3494,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
3491
3494
|
upper_limit_fahrenheit: number | null;
|
|
3492
3495
|
} | undefined;
|
|
3493
3496
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
3497
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
3494
3498
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
3495
3499
|
};
|
|
3496
3500
|
location: {
|
|
@@ -4146,6 +4150,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
4146
4150
|
upper_limit_fahrenheit: number | null;
|
|
4147
4151
|
} | undefined;
|
|
4148
4152
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
4153
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
4149
4154
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
4150
4155
|
};
|
|
4151
4156
|
location: {
|
|
@@ -5769,6 +5774,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
5769
5774
|
upper_limit_fahrenheit: number | null;
|
|
5770
5775
|
} | undefined;
|
|
5771
5776
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
5777
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
5772
5778
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
5773
5779
|
};
|
|
5774
5780
|
location: {
|
|
@@ -6637,6 +6643,7 @@ export declare const spaces_batch: z.ZodObject<{
|
|
|
6637
6643
|
upper_limit_fahrenheit: number | null;
|
|
6638
6644
|
} | undefined;
|
|
6639
6645
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
6646
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
6640
6647
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
6641
6648
|
};
|
|
6642
6649
|
location: {
|
|
@@ -8868,6 +8875,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
8868
8875
|
upper_limit_fahrenheit: number | null;
|
|
8869
8876
|
}>>>;
|
|
8870
8877
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8878
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8871
8879
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
8872
8880
|
}, "strip", z.ZodTypeAny, {
|
|
8873
8881
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -9000,6 +9008,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9000
9008
|
upper_limit_fahrenheit: number | null;
|
|
9001
9009
|
} | undefined;
|
|
9002
9010
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
9011
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
9003
9012
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
9004
9013
|
}, {
|
|
9005
9014
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -9132,6 +9141,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
9132
9141
|
upper_limit_fahrenheit: number | null;
|
|
9133
9142
|
} | undefined;
|
|
9134
9143
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
9144
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
9135
9145
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
9136
9146
|
}>>>;
|
|
9137
9147
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -10355,6 +10365,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
10355
10365
|
upper_limit_fahrenheit: number | null;
|
|
10356
10366
|
} | undefined;
|
|
10357
10367
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
10368
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
10358
10369
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
10359
10370
|
};
|
|
10360
10371
|
location: {
|
|
@@ -11010,6 +11021,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
11010
11021
|
upper_limit_fahrenheit: number | null;
|
|
11011
11022
|
} | undefined;
|
|
11012
11023
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
11024
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
11013
11025
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
11014
11026
|
};
|
|
11015
11027
|
location: {
|
|
@@ -12808,6 +12820,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
12808
12820
|
upper_limit_fahrenheit: number | null;
|
|
12809
12821
|
} | undefined;
|
|
12810
12822
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
12823
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
12811
12824
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
12812
12825
|
};
|
|
12813
12826
|
location: {
|
|
@@ -13722,6 +13735,7 @@ export declare const access_grants_batch: z.ZodObject<{
|
|
|
13722
13735
|
upper_limit_fahrenheit: number | null;
|
|
13723
13736
|
} | undefined;
|
|
13724
13737
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
13738
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
13725
13739
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
13726
13740
|
};
|
|
13727
13741
|
location: {
|
|
@@ -15999,6 +16013,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
15999
16013
|
upper_limit_fahrenheit: number | null;
|
|
16000
16014
|
}>>>;
|
|
16001
16015
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16016
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16002
16017
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
16003
16018
|
}, "strip", z.ZodTypeAny, {
|
|
16004
16019
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -16131,6 +16146,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16131
16146
|
upper_limit_fahrenheit: number | null;
|
|
16132
16147
|
} | undefined;
|
|
16133
16148
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
16149
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
16134
16150
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16135
16151
|
}, {
|
|
16136
16152
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -16263,6 +16279,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
16263
16279
|
upper_limit_fahrenheit: number | null;
|
|
16264
16280
|
} | undefined;
|
|
16265
16281
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
16282
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
16266
16283
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
16267
16284
|
}>>>;
|
|
16268
16285
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -17486,6 +17503,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
17486
17503
|
upper_limit_fahrenheit: number | null;
|
|
17487
17504
|
} | undefined;
|
|
17488
17505
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
17506
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
17489
17507
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
17490
17508
|
};
|
|
17491
17509
|
location: {
|
|
@@ -18141,6 +18159,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
18141
18159
|
upper_limit_fahrenheit: number | null;
|
|
18142
18160
|
} | undefined;
|
|
18143
18161
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
18162
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
18144
18163
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
18145
18164
|
};
|
|
18146
18165
|
location: {
|
|
@@ -19360,6 +19379,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
19360
19379
|
upper_limit_fahrenheit: number | null;
|
|
19361
19380
|
} | undefined;
|
|
19362
19381
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
19382
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
19363
19383
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
19364
19384
|
};
|
|
19365
19385
|
location: {
|
|
@@ -20170,6 +20190,7 @@ export declare const access_methods_batch: z.ZodObject<{
|
|
|
20170
20190
|
upper_limit_fahrenheit: number | null;
|
|
20171
20191
|
} | undefined;
|
|
20172
20192
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
20193
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
20173
20194
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
20174
20195
|
};
|
|
20175
20196
|
location: {
|
|
@@ -22514,6 +22535,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22514
22535
|
upper_limit_fahrenheit: number | null;
|
|
22515
22536
|
}>>>;
|
|
22516
22537
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22538
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22517
22539
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
22518
22540
|
}, "strip", z.ZodTypeAny, {
|
|
22519
22541
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -22646,6 +22668,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22646
22668
|
upper_limit_fahrenheit: number | null;
|
|
22647
22669
|
} | undefined;
|
|
22648
22670
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22671
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
22649
22672
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22650
22673
|
}, {
|
|
22651
22674
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -22778,6 +22801,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
22778
22801
|
upper_limit_fahrenheit: number | null;
|
|
22779
22802
|
} | undefined;
|
|
22780
22803
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
22804
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
22781
22805
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
22782
22806
|
}>>>;
|
|
22783
22807
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -24001,6 +24025,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24001
24025
|
upper_limit_fahrenheit: number | null;
|
|
24002
24026
|
} | undefined;
|
|
24003
24027
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24028
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
24004
24029
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
24005
24030
|
};
|
|
24006
24031
|
location: {
|
|
@@ -24656,6 +24681,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
24656
24681
|
upper_limit_fahrenheit: number | null;
|
|
24657
24682
|
} | undefined;
|
|
24658
24683
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
24684
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
24659
24685
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
24660
24686
|
};
|
|
24661
24687
|
location: {
|
|
@@ -33109,6 +33135,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33109
33135
|
upper_limit_fahrenheit: number | null;
|
|
33110
33136
|
}>>>;
|
|
33111
33137
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33138
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33112
33139
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
33113
33140
|
}, "strip", z.ZodTypeAny, {
|
|
33114
33141
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -33241,6 +33268,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33241
33268
|
upper_limit_fahrenheit: number | null;
|
|
33242
33269
|
} | undefined;
|
|
33243
33270
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
33271
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
33244
33272
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33245
33273
|
}, {
|
|
33246
33274
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -33373,6 +33401,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
33373
33401
|
upper_limit_fahrenheit: number | null;
|
|
33374
33402
|
} | undefined;
|
|
33375
33403
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
33404
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
33376
33405
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
33377
33406
|
}>>>;
|
|
33378
33407
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -42063,6 +42092,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
42063
42092
|
upper_limit_fahrenheit: number | null;
|
|
42064
42093
|
} | undefined;
|
|
42065
42094
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
42095
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
42066
42096
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
42067
42097
|
};
|
|
42068
42098
|
location: {
|
|
@@ -46032,6 +46062,7 @@ export declare const workspaces_batch: z.ZodObject<{
|
|
|
46032
46062
|
upper_limit_fahrenheit: number | null;
|
|
46033
46063
|
} | undefined;
|
|
46034
46064
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
46065
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
46035
46066
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
46036
46067
|
};
|
|
46037
46068
|
location: {
|
|
@@ -51524,6 +51555,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51524
51555
|
upper_limit_fahrenheit: number | null;
|
|
51525
51556
|
}>>>;
|
|
51526
51557
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51558
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51527
51559
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
51528
51560
|
}, "strip", z.ZodTypeAny, {
|
|
51529
51561
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -51656,6 +51688,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51656
51688
|
upper_limit_fahrenheit: number | null;
|
|
51657
51689
|
} | undefined;
|
|
51658
51690
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
51691
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
51659
51692
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
51660
51693
|
}, {
|
|
51661
51694
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -51788,6 +51821,7 @@ export declare const batch: z.ZodObject<{
|
|
|
51788
51821
|
upper_limit_fahrenheit: number | null;
|
|
51789
51822
|
} | undefined;
|
|
51790
51823
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
51824
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
51791
51825
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
51792
51826
|
}>>>;
|
|
51793
51827
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -53011,6 +53045,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53011
53045
|
upper_limit_fahrenheit: number | null;
|
|
53012
53046
|
} | undefined;
|
|
53013
53047
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
53048
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
53014
53049
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53015
53050
|
};
|
|
53016
53051
|
location: {
|
|
@@ -53666,6 +53701,7 @@ export declare const batch: z.ZodObject<{
|
|
|
53666
53701
|
upper_limit_fahrenheit: number | null;
|
|
53667
53702
|
} | undefined;
|
|
53668
53703
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
53704
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
53669
53705
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
53670
53706
|
};
|
|
53671
53707
|
location: {
|
|
@@ -62119,6 +62155,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62119
62155
|
upper_limit_fahrenheit: number | null;
|
|
62120
62156
|
}>>>;
|
|
62121
62157
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62158
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62122
62159
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
62123
62160
|
}, "strip", z.ZodTypeAny, {
|
|
62124
62161
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -62251,6 +62288,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62251
62288
|
upper_limit_fahrenheit: number | null;
|
|
62252
62289
|
} | undefined;
|
|
62253
62290
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
62291
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
62254
62292
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
62255
62293
|
}, {
|
|
62256
62294
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -62383,6 +62421,7 @@ export declare const batch: z.ZodObject<{
|
|
|
62383
62421
|
upper_limit_fahrenheit: number | null;
|
|
62384
62422
|
} | undefined;
|
|
62385
62423
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
62424
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
62386
62425
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
62387
62426
|
}>>>;
|
|
62388
62427
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -70701,6 +70740,7 @@ export declare const batch: z.ZodObject<{
|
|
|
70701
70740
|
upper_limit_fahrenheit: number | null;
|
|
70702
70741
|
} | undefined;
|
|
70703
70742
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
70743
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
70704
70744
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
70705
70745
|
};
|
|
70706
70746
|
location: {
|
|
@@ -74601,6 +74641,7 @@ export declare const batch: z.ZodObject<{
|
|
|
74601
74641
|
upper_limit_fahrenheit: number | null;
|
|
74602
74642
|
} | undefined;
|
|
74603
74643
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
74644
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
74604
74645
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
74605
74646
|
};
|
|
74606
74647
|
location: {
|
|
@@ -439,6 +439,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
439
439
|
upper_limit_fahrenheit: number | null;
|
|
440
440
|
}>>>;
|
|
441
441
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
442
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
442
443
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
443
444
|
}, "strip", z.ZodTypeAny, {
|
|
444
445
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -571,6 +572,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
571
572
|
upper_limit_fahrenheit: number | null;
|
|
572
573
|
} | undefined;
|
|
573
574
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
575
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
574
576
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
575
577
|
}, {
|
|
576
578
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -703,6 +705,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<{
|
|
|
703
705
|
upper_limit_fahrenheit: number | null;
|
|
704
706
|
} | undefined;
|
|
705
707
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
708
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
706
709
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
707
710
|
}>>;
|
|
708
711
|
export type { AccessCodeConstraint } from './access-code.js';
|
|
@@ -364,6 +364,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
364
364
|
upper_limit_fahrenheit: number | null;
|
|
365
365
|
}>>>;
|
|
366
366
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
367
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
367
368
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
368
369
|
}, "strip", z.ZodTypeAny, {
|
|
369
370
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -496,6 +497,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
496
497
|
upper_limit_fahrenheit: number | null;
|
|
497
498
|
} | undefined;
|
|
498
499
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
500
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
499
501
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
500
502
|
}, {
|
|
501
503
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -628,5 +630,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
628
630
|
upper_limit_fahrenheit: number | null;
|
|
629
631
|
} | undefined;
|
|
630
632
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
633
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
631
634
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
632
635
|
}>;
|
|
@@ -214,6 +214,14 @@ export const thermostat_capability_properties = z
|
|
|
214
214
|
---
|
|
215
215
|
Precision of the thermostat's period in minutes. For example, if the thermostat supports 15-minute periods, this value is 15. All values are relative to the top of the hour, so for 15 minutes, the periods would be 0, 15, 30, and 45 minutes past the hour.
|
|
216
216
|
`),
|
|
217
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z
|
|
218
|
+
.number()
|
|
219
|
+
.optional().describe(`
|
|
220
|
+
---
|
|
221
|
+
property_group_key: thermostats
|
|
222
|
+
---
|
|
223
|
+
Maximum number of climate presets that the thermostat can support for weekly programming.
|
|
224
|
+
`),
|
|
217
225
|
max_thermostat_daily_program_periods_per_day: z.number().optional()
|
|
218
226
|
.describe(`
|
|
219
227
|
---
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"thermostat.js","sourceRoot":"","sources":["../../../../../../src/lib/seam/connect/models/devices/capability-properties/thermostat.ts"],"names":[],"mappings":"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"}
|
|
@@ -3830,6 +3830,7 @@ export declare const device: z.ZodObject<{
|
|
|
3830
3830
|
upper_limit_fahrenheit: number | null;
|
|
3831
3831
|
}>>>;
|
|
3832
3832
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3833
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3833
3834
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
3834
3835
|
}, "strip", z.ZodTypeAny, {
|
|
3835
3836
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -3962,6 +3963,7 @@ export declare const device: z.ZodObject<{
|
|
|
3962
3963
|
upper_limit_fahrenheit: number | null;
|
|
3963
3964
|
} | undefined;
|
|
3964
3965
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
3966
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
3965
3967
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
3966
3968
|
}, {
|
|
3967
3969
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -4094,6 +4096,7 @@ export declare const device: z.ZodObject<{
|
|
|
4094
4096
|
upper_limit_fahrenheit: number | null;
|
|
4095
4097
|
} | undefined;
|
|
4096
4098
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
4099
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
4097
4100
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
4098
4101
|
}>>>;
|
|
4099
4102
|
location: z.ZodNullable<z.ZodObject<{
|
|
@@ -5317,6 +5320,7 @@ export declare const device: z.ZodObject<{
|
|
|
5317
5320
|
upper_limit_fahrenheit: number | null;
|
|
5318
5321
|
} | undefined;
|
|
5319
5322
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
5323
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
5320
5324
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
5321
5325
|
};
|
|
5322
5326
|
location: {
|
|
@@ -5972,6 +5976,7 @@ export declare const device: z.ZodObject<{
|
|
|
5972
5976
|
upper_limit_fahrenheit: number | null;
|
|
5973
5977
|
} | undefined;
|
|
5974
5978
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
5979
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
5975
5980
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
5976
5981
|
};
|
|
5977
5982
|
location: {
|
|
@@ -1974,6 +1974,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
1974
1974
|
upper_limit_fahrenheit: number | null;
|
|
1975
1975
|
}>>>;
|
|
1976
1976
|
thermostat_daily_program_period_precision_minutes: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1977
|
+
max_unique_climate_presets_per_thermostat_weekly_program: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1977
1978
|
max_thermostat_daily_program_periods_per_day: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
1978
1979
|
}, "strip", z.ZodTypeAny, {
|
|
1979
1980
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2106,6 +2107,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
2106
2107
|
upper_limit_fahrenheit: number | null;
|
|
2107
2108
|
} | undefined;
|
|
2108
2109
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2110
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2109
2111
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2110
2112
|
}, {
|
|
2111
2113
|
fan_mode_setting?: "auto" | "on" | "circulate" | undefined;
|
|
@@ -2238,6 +2240,7 @@ export declare const unmanaged_device: z.ZodObject<Pick<{
|
|
|
2238
2240
|
upper_limit_fahrenheit: number | null;
|
|
2239
2241
|
} | undefined;
|
|
2240
2242
|
thermostat_daily_program_period_precision_minutes?: number | undefined;
|
|
2243
|
+
max_unique_climate_presets_per_thermostat_weekly_program?: number | undefined;
|
|
2241
2244
|
max_thermostat_daily_program_periods_per_day?: number | undefined;
|
|
2242
2245
|
}>>>;
|
|
2243
2246
|
location: z.ZodNullable<z.ZodObject<{
|