@seamapi/types 1.380.0 → 1.381.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 +56 -4
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +112 -35
- package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -5
- package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -5
- package/lib/seam/connect/models/devices/device.d.ts +7 -7
- package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -5
- package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -3
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js +2 -0
- package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +66 -1
- package/lib/seam/connect/openapi.js +55 -3
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +31 -19
- package/package.json +2 -2
- package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +2 -0
- package/src/lib/seam/connect/openapi.ts +55 -3
- package/src/lib/seam/connect/route-types.ts +31 -19
package/dist/connect.d.cts
CHANGED
|
@@ -12198,7 +12198,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12198
12198
|
device_id: z.ZodString;
|
|
12199
12199
|
name: z.ZodOptional<z.ZodString>;
|
|
12200
12200
|
climate_preset_key: z.ZodString;
|
|
12201
|
-
max_override_period_minutes: z.ZodNumber
|
|
12201
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
12202
12202
|
starts_at: z.ZodString;
|
|
12203
12203
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
12204
12204
|
ends_at: z.ZodString;
|
|
@@ -12217,7 +12217,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12217
12217
|
climate_preset_key: string;
|
|
12218
12218
|
thermostat_schedule_id: string;
|
|
12219
12219
|
device_id: string;
|
|
12220
|
-
max_override_period_minutes: number;
|
|
12221
12220
|
starts_at: string;
|
|
12222
12221
|
ends_at: string;
|
|
12223
12222
|
created_at: string;
|
|
@@ -12226,12 +12225,12 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12226
12225
|
error_code: string;
|
|
12227
12226
|
}[];
|
|
12228
12227
|
name?: string | undefined;
|
|
12228
|
+
max_override_period_minutes?: number | null | undefined;
|
|
12229
12229
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12230
12230
|
}, {
|
|
12231
12231
|
climate_preset_key: string;
|
|
12232
12232
|
thermostat_schedule_id: string;
|
|
12233
12233
|
device_id: string;
|
|
12234
|
-
max_override_period_minutes: number;
|
|
12235
12234
|
starts_at: string;
|
|
12236
12235
|
ends_at: string;
|
|
12237
12236
|
created_at: string;
|
|
@@ -12240,6 +12239,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12240
12239
|
error_code: string;
|
|
12241
12240
|
}[];
|
|
12242
12241
|
name?: string | undefined;
|
|
12242
|
+
max_override_period_minutes?: number | null | undefined;
|
|
12243
12243
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12244
12244
|
}>>>>;
|
|
12245
12245
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -12326,7 +12326,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12326
12326
|
climate_preset_key: string;
|
|
12327
12327
|
thermostat_schedule_id: string;
|
|
12328
12328
|
device_id: string;
|
|
12329
|
-
max_override_period_minutes: number;
|
|
12330
12329
|
starts_at: string;
|
|
12331
12330
|
ends_at: string;
|
|
12332
12331
|
created_at: string;
|
|
@@ -12335,6 +12334,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12335
12334
|
error_code: string;
|
|
12336
12335
|
}[];
|
|
12337
12336
|
name?: string | undefined;
|
|
12337
|
+
max_override_period_minutes?: number | null | undefined;
|
|
12338
12338
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12339
12339
|
} | null | undefined;
|
|
12340
12340
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -12411,7 +12411,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12411
12411
|
climate_preset_key: string;
|
|
12412
12412
|
thermostat_schedule_id: string;
|
|
12413
12413
|
device_id: string;
|
|
12414
|
-
max_override_period_minutes: number;
|
|
12415
12414
|
starts_at: string;
|
|
12416
12415
|
ends_at: string;
|
|
12417
12416
|
created_at: string;
|
|
@@ -12420,6 +12419,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
12420
12419
|
error_code: string;
|
|
12421
12420
|
}[];
|
|
12422
12421
|
name?: string | undefined;
|
|
12422
|
+
max_override_period_minutes?: number | null | undefined;
|
|
12423
12423
|
unstable_is_override_allowed?: boolean | undefined;
|
|
12424
12424
|
} | null | undefined;
|
|
12425
12425
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -13546,7 +13546,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13546
13546
|
climate_preset_key: string;
|
|
13547
13547
|
thermostat_schedule_id: string;
|
|
13548
13548
|
device_id: string;
|
|
13549
|
-
max_override_period_minutes: number;
|
|
13550
13549
|
starts_at: string;
|
|
13551
13550
|
ends_at: string;
|
|
13552
13551
|
created_at: string;
|
|
@@ -13555,6 +13554,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
13555
13554
|
error_code: string;
|
|
13556
13555
|
}[];
|
|
13557
13556
|
name?: string | undefined;
|
|
13557
|
+
max_override_period_minutes?: number | null | undefined;
|
|
13558
13558
|
unstable_is_override_allowed?: boolean | undefined;
|
|
13559
13559
|
} | null | undefined;
|
|
13560
13560
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -14121,7 +14121,6 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14121
14121
|
climate_preset_key: string;
|
|
14122
14122
|
thermostat_schedule_id: string;
|
|
14123
14123
|
device_id: string;
|
|
14124
|
-
max_override_period_minutes: number;
|
|
14125
14124
|
starts_at: string;
|
|
14126
14125
|
ends_at: string;
|
|
14127
14126
|
created_at: string;
|
|
@@ -14130,6 +14129,7 @@ declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
14130
14129
|
error_code: string;
|
|
14131
14130
|
}[];
|
|
14132
14131
|
name?: string | undefined;
|
|
14132
|
+
max_override_period_minutes?: number | null | undefined;
|
|
14133
14133
|
unstable_is_override_allowed?: boolean | undefined;
|
|
14134
14134
|
} | null | undefined;
|
|
14135
14135
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -15900,7 +15900,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15900
15900
|
device_id: z.ZodString;
|
|
15901
15901
|
name: z.ZodOptional<z.ZodString>;
|
|
15902
15902
|
climate_preset_key: z.ZodString;
|
|
15903
|
-
max_override_period_minutes: z.ZodNumber
|
|
15903
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
15904
15904
|
starts_at: z.ZodString;
|
|
15905
15905
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
15906
15906
|
ends_at: z.ZodString;
|
|
@@ -15919,7 +15919,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15919
15919
|
climate_preset_key: string;
|
|
15920
15920
|
thermostat_schedule_id: string;
|
|
15921
15921
|
device_id: string;
|
|
15922
|
-
max_override_period_minutes: number;
|
|
15923
15922
|
starts_at: string;
|
|
15924
15923
|
ends_at: string;
|
|
15925
15924
|
created_at: string;
|
|
@@ -15928,12 +15927,12 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15928
15927
|
error_code: string;
|
|
15929
15928
|
}[];
|
|
15930
15929
|
name?: string | undefined;
|
|
15930
|
+
max_override_period_minutes?: number | null | undefined;
|
|
15931
15931
|
unstable_is_override_allowed?: boolean | undefined;
|
|
15932
15932
|
}, {
|
|
15933
15933
|
climate_preset_key: string;
|
|
15934
15934
|
thermostat_schedule_id: string;
|
|
15935
15935
|
device_id: string;
|
|
15936
|
-
max_override_period_minutes: number;
|
|
15937
15936
|
starts_at: string;
|
|
15938
15937
|
ends_at: string;
|
|
15939
15938
|
created_at: string;
|
|
@@ -15942,6 +15941,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
15942
15941
|
error_code: string;
|
|
15943
15942
|
}[];
|
|
15944
15943
|
name?: string | undefined;
|
|
15944
|
+
max_override_period_minutes?: number | null | undefined;
|
|
15945
15945
|
unstable_is_override_allowed?: boolean | undefined;
|
|
15946
15946
|
}>>>>;
|
|
15947
15947
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -16028,7 +16028,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16028
16028
|
climate_preset_key: string;
|
|
16029
16029
|
thermostat_schedule_id: string;
|
|
16030
16030
|
device_id: string;
|
|
16031
|
-
max_override_period_minutes: number;
|
|
16032
16031
|
starts_at: string;
|
|
16033
16032
|
ends_at: string;
|
|
16034
16033
|
created_at: string;
|
|
@@ -16037,6 +16036,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16037
16036
|
error_code: string;
|
|
16038
16037
|
}[];
|
|
16039
16038
|
name?: string | undefined;
|
|
16039
|
+
max_override_period_minutes?: number | null | undefined;
|
|
16040
16040
|
unstable_is_override_allowed?: boolean | undefined;
|
|
16041
16041
|
} | null | undefined;
|
|
16042
16042
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -16113,7 +16113,6 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16113
16113
|
climate_preset_key: string;
|
|
16114
16114
|
thermostat_schedule_id: string;
|
|
16115
16115
|
device_id: string;
|
|
16116
|
-
max_override_period_minutes: number;
|
|
16117
16116
|
starts_at: string;
|
|
16118
16117
|
ends_at: string;
|
|
16119
16118
|
created_at: string;
|
|
@@ -16122,6 +16121,7 @@ declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.objectUti
|
|
|
16122
16121
|
error_code: string;
|
|
16123
16122
|
}[];
|
|
16124
16123
|
name?: string | undefined;
|
|
16124
|
+
max_override_period_minutes?: number | null | undefined;
|
|
16125
16125
|
unstable_is_override_allowed?: boolean | undefined;
|
|
16126
16126
|
} | null | undefined;
|
|
16127
16127
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -19648,7 +19648,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
19648
19648
|
device_id: z.ZodString;
|
|
19649
19649
|
name: z.ZodOptional<z.ZodString>;
|
|
19650
19650
|
climate_preset_key: z.ZodString;
|
|
19651
|
-
max_override_period_minutes: z.ZodNumber
|
|
19651
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
19652
19652
|
starts_at: z.ZodString;
|
|
19653
19653
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
19654
19654
|
ends_at: z.ZodString;
|
|
@@ -19667,7 +19667,6 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
19667
19667
|
climate_preset_key: string;
|
|
19668
19668
|
thermostat_schedule_id: string;
|
|
19669
19669
|
device_id: string;
|
|
19670
|
-
max_override_period_minutes: number;
|
|
19671
19670
|
starts_at: string;
|
|
19672
19671
|
ends_at: string;
|
|
19673
19672
|
created_at: string;
|
|
@@ -19676,12 +19675,12 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
19676
19675
|
error_code: string;
|
|
19677
19676
|
}[];
|
|
19678
19677
|
name?: string | undefined;
|
|
19678
|
+
max_override_period_minutes?: number | null | undefined;
|
|
19679
19679
|
unstable_is_override_allowed?: boolean | undefined;
|
|
19680
19680
|
}, {
|
|
19681
19681
|
climate_preset_key: string;
|
|
19682
19682
|
thermostat_schedule_id: string;
|
|
19683
19683
|
device_id: string;
|
|
19684
|
-
max_override_period_minutes: number;
|
|
19685
19684
|
starts_at: string;
|
|
19686
19685
|
ends_at: string;
|
|
19687
19686
|
created_at: string;
|
|
@@ -19690,6 +19689,7 @@ declare const thermostat_schedule: z.ZodObject<{
|
|
|
19690
19689
|
error_code: string;
|
|
19691
19690
|
}[];
|
|
19692
19691
|
name?: string | undefined;
|
|
19692
|
+
max_override_period_minutes?: number | null | undefined;
|
|
19693
19693
|
unstable_is_override_allowed?: boolean | undefined;
|
|
19694
19694
|
}>;
|
|
19695
19695
|
type ThermostatSchedule = z.infer<typeof thermostat_schedule>;
|
|
@@ -24182,6 +24182,7 @@ declare const _default: {
|
|
|
24182
24182
|
max_override_period_minutes: {
|
|
24183
24183
|
description: string;
|
|
24184
24184
|
minimum: number;
|
|
24185
|
+
nullable: boolean;
|
|
24185
24186
|
type: string;
|
|
24186
24187
|
};
|
|
24187
24188
|
name: {
|
|
@@ -27666,6 +27667,7 @@ declare const _default: {
|
|
|
27666
27667
|
max_override_period_minutes: {
|
|
27667
27668
|
description: string;
|
|
27668
27669
|
minimum: number;
|
|
27670
|
+
nullable: boolean;
|
|
27669
27671
|
type: string;
|
|
27670
27672
|
};
|
|
27671
27673
|
name: {
|
|
@@ -41535,6 +41537,66 @@ declare const _default: {
|
|
|
41535
41537
|
'x-undocumented': string;
|
|
41536
41538
|
};
|
|
41537
41539
|
};
|
|
41540
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
41541
|
+
post: {
|
|
41542
|
+
description: string;
|
|
41543
|
+
operationId: string;
|
|
41544
|
+
requestBody: {
|
|
41545
|
+
content: {
|
|
41546
|
+
'application/json': {
|
|
41547
|
+
schema: {
|
|
41548
|
+
properties: {
|
|
41549
|
+
is_tailscale_connected: {
|
|
41550
|
+
nullable: boolean;
|
|
41551
|
+
type: string;
|
|
41552
|
+
};
|
|
41553
|
+
tailscale_ip_v4: {
|
|
41554
|
+
nullable: boolean;
|
|
41555
|
+
type: string;
|
|
41556
|
+
};
|
|
41557
|
+
};
|
|
41558
|
+
required: string[];
|
|
41559
|
+
type: string;
|
|
41560
|
+
};
|
|
41561
|
+
};
|
|
41562
|
+
};
|
|
41563
|
+
};
|
|
41564
|
+
responses: {
|
|
41565
|
+
200: {
|
|
41566
|
+
content: {
|
|
41567
|
+
'application/json': {
|
|
41568
|
+
schema: {
|
|
41569
|
+
properties: {
|
|
41570
|
+
ok: {
|
|
41571
|
+
type: string;
|
|
41572
|
+
};
|
|
41573
|
+
};
|
|
41574
|
+
required: string[];
|
|
41575
|
+
type: string;
|
|
41576
|
+
};
|
|
41577
|
+
};
|
|
41578
|
+
};
|
|
41579
|
+
description: string;
|
|
41580
|
+
};
|
|
41581
|
+
400: {
|
|
41582
|
+
description: string;
|
|
41583
|
+
};
|
|
41584
|
+
401: {
|
|
41585
|
+
description: string;
|
|
41586
|
+
};
|
|
41587
|
+
};
|
|
41588
|
+
security: {
|
|
41589
|
+
bridge_client_session: never[];
|
|
41590
|
+
}[];
|
|
41591
|
+
summary: string;
|
|
41592
|
+
tags: never[];
|
|
41593
|
+
'x-fern-sdk-group-name': string[];
|
|
41594
|
+
'x-fern-sdk-method-name': string;
|
|
41595
|
+
'x-response-key': null;
|
|
41596
|
+
'x-title': string;
|
|
41597
|
+
'x-undocumented': string;
|
|
41598
|
+
};
|
|
41599
|
+
};
|
|
41538
41600
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
41539
41601
|
get: {
|
|
41540
41602
|
description: string;
|
|
@@ -42626,9 +42688,10 @@ declare const _default: {
|
|
|
42626
42688
|
type: string;
|
|
42627
42689
|
};
|
|
42628
42690
|
max_override_period_minutes: {
|
|
42629
|
-
default:
|
|
42691
|
+
default: null;
|
|
42630
42692
|
description: string;
|
|
42631
42693
|
minimum: number;
|
|
42694
|
+
nullable: boolean;
|
|
42632
42695
|
type: string;
|
|
42633
42696
|
};
|
|
42634
42697
|
name: {
|
|
@@ -42964,6 +43027,7 @@ declare const _default: {
|
|
|
42964
43027
|
max_override_period_minutes: {
|
|
42965
43028
|
description: string;
|
|
42966
43029
|
minimum: number;
|
|
43030
|
+
nullable: boolean;
|
|
42967
43031
|
type: string;
|
|
42968
43032
|
};
|
|
42969
43033
|
name: {
|
|
@@ -43060,6 +43124,7 @@ declare const _default: {
|
|
|
43060
43124
|
max_override_period_minutes: {
|
|
43061
43125
|
description: string;
|
|
43062
43126
|
minimum: number;
|
|
43127
|
+
nullable: boolean;
|
|
43063
43128
|
type: string;
|
|
43064
43129
|
};
|
|
43065
43130
|
name: {
|
|
@@ -64998,7 +65063,7 @@ interface Routes {
|
|
|
64998
65063
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
64999
65064
|
climate_preset_key: string;
|
|
65000
65065
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
65001
|
-
max_override_period_minutes
|
|
65066
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
65002
65067
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
65003
65068
|
starts_at: string;
|
|
65004
65069
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -65739,7 +65804,7 @@ interface Routes {
|
|
|
65739
65804
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
65740
65805
|
climate_preset_key: string;
|
|
65741
65806
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
65742
|
-
max_override_period_minutes
|
|
65807
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
65743
65808
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
65744
65809
|
starts_at: string;
|
|
65745
65810
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -69683,7 +69748,7 @@ interface Routes {
|
|
|
69683
69748
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
69684
69749
|
climate_preset_key: string;
|
|
69685
69750
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
69686
|
-
max_override_period_minutes
|
|
69751
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
69687
69752
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
69688
69753
|
starts_at: string;
|
|
69689
69754
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -70386,7 +70451,7 @@ interface Routes {
|
|
|
70386
70451
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
70387
70452
|
climate_preset_key: string;
|
|
70388
70453
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
70389
|
-
max_override_period_minutes
|
|
70454
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
70390
70455
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
70391
70456
|
starts_at: string;
|
|
70392
70457
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -71127,7 +71192,7 @@ interface Routes {
|
|
|
71127
71192
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
71128
71193
|
climate_preset_key: string;
|
|
71129
71194
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
71130
|
-
max_override_period_minutes
|
|
71195
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
71131
71196
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
71132
71197
|
starts_at: string;
|
|
71133
71198
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -71829,7 +71894,7 @@ interface Routes {
|
|
|
71829
71894
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
71830
71895
|
climate_preset_key: string;
|
|
71831
71896
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
71832
|
-
max_override_period_minutes
|
|
71897
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
71833
71898
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
71834
71899
|
starts_at: string;
|
|
71835
71900
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -74531,7 +74596,7 @@ interface Routes {
|
|
|
74531
74596
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
74532
74597
|
climate_preset_key: string;
|
|
74533
74598
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
74534
|
-
max_override_period_minutes
|
|
74599
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
74535
74600
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
74536
74601
|
starts_at: string;
|
|
74537
74602
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -75233,7 +75298,7 @@ interface Routes {
|
|
|
75233
75298
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
75234
75299
|
climate_preset_key: string;
|
|
75235
75300
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
75236
|
-
max_override_period_minutes
|
|
75301
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
75237
75302
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
75238
75303
|
starts_at: string;
|
|
75239
75304
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -78800,6 +78865,18 @@ interface Routes {
|
|
|
78800
78865
|
};
|
|
78801
78866
|
};
|
|
78802
78867
|
};
|
|
78868
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
78869
|
+
route: '/seam/bridge/v1/bridge_client_sessions/report_status';
|
|
78870
|
+
method: 'POST';
|
|
78871
|
+
queryParams: {};
|
|
78872
|
+
jsonBody: {
|
|
78873
|
+
is_tailscale_connected: boolean | null;
|
|
78874
|
+
tailscale_ip_v4: string | null;
|
|
78875
|
+
};
|
|
78876
|
+
commonParams: {};
|
|
78877
|
+
formData: {};
|
|
78878
|
+
jsonResponse: {};
|
|
78879
|
+
};
|
|
78803
78880
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
78804
78881
|
route: '/seam/bridge/v1/bridge_connected_systems/list';
|
|
78805
78882
|
method: 'GET' | 'POST';
|
|
@@ -81273,7 +81350,7 @@ interface Routes {
|
|
|
81273
81350
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
81274
81351
|
climate_preset_key: string;
|
|
81275
81352
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
81276
|
-
max_override_period_minutes
|
|
81353
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
81277
81354
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
81278
81355
|
starts_at: string;
|
|
81279
81356
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -83956,7 +84033,7 @@ interface Routes {
|
|
|
83956
84033
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
83957
84034
|
climate_preset_key: string;
|
|
83958
84035
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
83959
|
-
max_override_period_minutes
|
|
84036
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
83960
84037
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
83961
84038
|
starts_at: string;
|
|
83962
84039
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -84658,7 +84735,7 @@ interface Routes {
|
|
|
84658
84735
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
84659
84736
|
climate_preset_key: string;
|
|
84660
84737
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
84661
|
-
max_override_period_minutes
|
|
84738
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
84662
84739
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
84663
84740
|
starts_at: string;
|
|
84664
84741
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -85879,13 +85956,13 @@ interface Routes {
|
|
|
85879
85956
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the thermostat schedule. */
|
|
85880
85957
|
climate_preset_key: string;
|
|
85881
85958
|
/** Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
85882
|
-
max_override_period_minutes?: number;
|
|
85959
|
+
max_override_period_minutes?: number | null;
|
|
85883
85960
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
85884
85961
|
starts_at: string;
|
|
85885
85962
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
85886
85963
|
ends_at: string;
|
|
85887
85964
|
/** Indicates whether a person at the thermostat or using the API can change the thermostat's settings while the schedule is active. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
85888
|
-
is_override_allowed?: boolean
|
|
85965
|
+
is_override_allowed?: boolean;
|
|
85889
85966
|
};
|
|
85890
85967
|
commonParams: {};
|
|
85891
85968
|
formData: {};
|
|
@@ -85901,7 +85978,7 @@ interface Routes {
|
|
|
85901
85978
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
85902
85979
|
climate_preset_key: string;
|
|
85903
85980
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
85904
|
-
max_override_period_minutes
|
|
85981
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
85905
85982
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
85906
85983
|
starts_at: string;
|
|
85907
85984
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -85954,7 +86031,7 @@ interface Routes {
|
|
|
85954
86031
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
85955
86032
|
climate_preset_key: string;
|
|
85956
86033
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
85957
|
-
max_override_period_minutes
|
|
86034
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
85958
86035
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
85959
86036
|
starts_at: string;
|
|
85960
86037
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -85996,7 +86073,7 @@ interface Routes {
|
|
|
85996
86073
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
85997
86074
|
climate_preset_key: string;
|
|
85998
86075
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
85999
|
-
max_override_period_minutes
|
|
86076
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
86000
86077
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
86001
86078
|
starts_at: string;
|
|
86002
86079
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -86027,7 +86104,7 @@ interface Routes {
|
|
|
86027
86104
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the thermostat schedule. */
|
|
86028
86105
|
climate_preset_key?: string | undefined;
|
|
86029
86106
|
/** Number of minutes for which a person at the thermostat or using the API can change the thermostat's settings after the activation of the scheduled climate preset. See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
86030
|
-
max_override_period_minutes?: number | undefined;
|
|
86107
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
86031
86108
|
/** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
86032
86109
|
starts_at?: string | undefined;
|
|
86033
86110
|
/** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
@@ -89169,7 +89246,7 @@ interface Routes {
|
|
|
89169
89246
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
89170
89247
|
climate_preset_key: string;
|
|
89171
89248
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
89172
|
-
max_override_period_minutes
|
|
89249
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
89173
89250
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
89174
89251
|
starts_at: string;
|
|
89175
89252
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -89873,7 +89950,7 @@ interface Routes {
|
|
|
89873
89950
|
/** Key of the [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets) to use for the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules). */
|
|
89874
89951
|
climate_preset_key: string;
|
|
89875
89952
|
/** Number of minutes for which a person at the thermostat can change the thermostat's settings after the activation of the scheduled [climate preset](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-climate-presets). See also [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions). */
|
|
89876
|
-
max_override_period_minutes
|
|
89953
|
+
max_override_period_minutes?: (number | null) | undefined;
|
|
89877
89954
|
/** Date and time at which the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
|
|
89878
89955
|
starts_at: string;
|
|
89879
89956
|
/** Indicates whether a person at the thermostat can change the thermostat's settings after the [thermostat schedule](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules) starts. */
|
|
@@ -211,7 +211,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
211
211
|
device_id: z.ZodString;
|
|
212
212
|
name: z.ZodOptional<z.ZodString>;
|
|
213
213
|
climate_preset_key: z.ZodString;
|
|
214
|
-
max_override_period_minutes: z.ZodNumber
|
|
214
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
215
215
|
starts_at: z.ZodString;
|
|
216
216
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
217
217
|
ends_at: z.ZodString;
|
|
@@ -230,7 +230,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
230
230
|
climate_preset_key: string;
|
|
231
231
|
thermostat_schedule_id: string;
|
|
232
232
|
device_id: string;
|
|
233
|
-
max_override_period_minutes: number;
|
|
234
233
|
starts_at: string;
|
|
235
234
|
ends_at: string;
|
|
236
235
|
created_at: string;
|
|
@@ -239,12 +238,12 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
239
238
|
error_code: string;
|
|
240
239
|
}[];
|
|
241
240
|
name?: string | undefined;
|
|
241
|
+
max_override_period_minutes?: number | null | undefined;
|
|
242
242
|
unstable_is_override_allowed?: boolean | undefined;
|
|
243
243
|
}, {
|
|
244
244
|
climate_preset_key: string;
|
|
245
245
|
thermostat_schedule_id: string;
|
|
246
246
|
device_id: string;
|
|
247
|
-
max_override_period_minutes: number;
|
|
248
247
|
starts_at: string;
|
|
249
248
|
ends_at: string;
|
|
250
249
|
created_at: string;
|
|
@@ -253,6 +252,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
253
252
|
error_code: string;
|
|
254
253
|
}[];
|
|
255
254
|
name?: string | undefined;
|
|
255
|
+
max_override_period_minutes?: number | null | undefined;
|
|
256
256
|
unstable_is_override_allowed?: boolean | undefined;
|
|
257
257
|
}>>>>;
|
|
258
258
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -339,7 +339,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
339
339
|
climate_preset_key: string;
|
|
340
340
|
thermostat_schedule_id: string;
|
|
341
341
|
device_id: string;
|
|
342
|
-
max_override_period_minutes: number;
|
|
343
342
|
starts_at: string;
|
|
344
343
|
ends_at: string;
|
|
345
344
|
created_at: string;
|
|
@@ -348,6 +347,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
348
347
|
error_code: string;
|
|
349
348
|
}[];
|
|
350
349
|
name?: string | undefined;
|
|
350
|
+
max_override_period_minutes?: number | null | undefined;
|
|
351
351
|
unstable_is_override_allowed?: boolean | undefined;
|
|
352
352
|
} | null | undefined;
|
|
353
353
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -424,7 +424,6 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
424
424
|
climate_preset_key: string;
|
|
425
425
|
thermostat_schedule_id: string;
|
|
426
426
|
device_id: string;
|
|
427
|
-
max_override_period_minutes: number;
|
|
428
427
|
starts_at: string;
|
|
429
428
|
ends_at: string;
|
|
430
429
|
created_at: string;
|
|
@@ -433,6 +432,7 @@ export declare const capability_properties: z.ZodIntersection<z.ZodObject<z.obje
|
|
|
433
432
|
error_code: string;
|
|
434
433
|
}[];
|
|
435
434
|
name?: string | undefined;
|
|
435
|
+
max_override_period_minutes?: number | null | undefined;
|
|
436
436
|
unstable_is_override_allowed?: boolean | undefined;
|
|
437
437
|
} | null | undefined;
|
|
438
438
|
min_cooling_set_point_celsius?: number | undefined;
|