@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
|
@@ -136,7 +136,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
136
136
|
device_id: z.ZodString;
|
|
137
137
|
name: z.ZodOptional<z.ZodString>;
|
|
138
138
|
climate_preset_key: z.ZodString;
|
|
139
|
-
max_override_period_minutes: z.ZodNumber
|
|
139
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
140
140
|
starts_at: z.ZodString;
|
|
141
141
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
142
142
|
ends_at: z.ZodString;
|
|
@@ -155,7 +155,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
155
155
|
climate_preset_key: string;
|
|
156
156
|
thermostat_schedule_id: string;
|
|
157
157
|
device_id: string;
|
|
158
|
-
max_override_period_minutes: number;
|
|
159
158
|
starts_at: string;
|
|
160
159
|
ends_at: string;
|
|
161
160
|
created_at: string;
|
|
@@ -164,12 +163,12 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
164
163
|
error_code: string;
|
|
165
164
|
}[];
|
|
166
165
|
name?: string | undefined;
|
|
166
|
+
max_override_period_minutes?: number | null | undefined;
|
|
167
167
|
unstable_is_override_allowed?: boolean | undefined;
|
|
168
168
|
}, {
|
|
169
169
|
climate_preset_key: string;
|
|
170
170
|
thermostat_schedule_id: string;
|
|
171
171
|
device_id: string;
|
|
172
|
-
max_override_period_minutes: number;
|
|
173
172
|
starts_at: string;
|
|
174
173
|
ends_at: string;
|
|
175
174
|
created_at: string;
|
|
@@ -178,6 +177,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
178
177
|
error_code: string;
|
|
179
178
|
}[];
|
|
180
179
|
name?: string | undefined;
|
|
180
|
+
max_override_period_minutes?: number | null | undefined;
|
|
181
181
|
unstable_is_override_allowed?: boolean | undefined;
|
|
182
182
|
}>>>>;
|
|
183
183
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -264,7 +264,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
264
264
|
climate_preset_key: string;
|
|
265
265
|
thermostat_schedule_id: string;
|
|
266
266
|
device_id: string;
|
|
267
|
-
max_override_period_minutes: number;
|
|
268
267
|
starts_at: string;
|
|
269
268
|
ends_at: string;
|
|
270
269
|
created_at: string;
|
|
@@ -273,6 +272,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
273
272
|
error_code: string;
|
|
274
273
|
}[];
|
|
275
274
|
name?: string | undefined;
|
|
275
|
+
max_override_period_minutes?: number | null | undefined;
|
|
276
276
|
unstable_is_override_allowed?: boolean | undefined;
|
|
277
277
|
} | null | undefined;
|
|
278
278
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -349,7 +349,6 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
349
349
|
climate_preset_key: string;
|
|
350
350
|
thermostat_schedule_id: string;
|
|
351
351
|
device_id: string;
|
|
352
|
-
max_override_period_minutes: number;
|
|
353
352
|
starts_at: string;
|
|
354
353
|
ends_at: string;
|
|
355
354
|
created_at: string;
|
|
@@ -358,6 +357,7 @@ export declare const thermostat_capability_properties: z.ZodObject<{
|
|
|
358
357
|
error_code: string;
|
|
359
358
|
}[];
|
|
360
359
|
name?: string | undefined;
|
|
360
|
+
max_override_period_minutes?: number | null | undefined;
|
|
361
361
|
unstable_is_override_allowed?: boolean | undefined;
|
|
362
362
|
} | null | undefined;
|
|
363
363
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -3396,7 +3396,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3396
3396
|
device_id: z.ZodString;
|
|
3397
3397
|
name: z.ZodOptional<z.ZodString>;
|
|
3398
3398
|
climate_preset_key: z.ZodString;
|
|
3399
|
-
max_override_period_minutes: z.ZodNumber
|
|
3399
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
3400
3400
|
starts_at: z.ZodString;
|
|
3401
3401
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
3402
3402
|
ends_at: z.ZodString;
|
|
@@ -3415,7 +3415,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3415
3415
|
climate_preset_key: string;
|
|
3416
3416
|
thermostat_schedule_id: string;
|
|
3417
3417
|
device_id: string;
|
|
3418
|
-
max_override_period_minutes: number;
|
|
3419
3418
|
starts_at: string;
|
|
3420
3419
|
ends_at: string;
|
|
3421
3420
|
created_at: string;
|
|
@@ -3424,12 +3423,12 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3424
3423
|
error_code: string;
|
|
3425
3424
|
}[];
|
|
3426
3425
|
name?: string | undefined;
|
|
3426
|
+
max_override_period_minutes?: number | null | undefined;
|
|
3427
3427
|
unstable_is_override_allowed?: boolean | undefined;
|
|
3428
3428
|
}, {
|
|
3429
3429
|
climate_preset_key: string;
|
|
3430
3430
|
thermostat_schedule_id: string;
|
|
3431
3431
|
device_id: string;
|
|
3432
|
-
max_override_period_minutes: number;
|
|
3433
3432
|
starts_at: string;
|
|
3434
3433
|
ends_at: string;
|
|
3435
3434
|
created_at: string;
|
|
@@ -3438,6 +3437,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3438
3437
|
error_code: string;
|
|
3439
3438
|
}[];
|
|
3440
3439
|
name?: string | undefined;
|
|
3440
|
+
max_override_period_minutes?: number | null | undefined;
|
|
3441
3441
|
unstable_is_override_allowed?: boolean | undefined;
|
|
3442
3442
|
}>>>>;
|
|
3443
3443
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -3524,7 +3524,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3524
3524
|
climate_preset_key: string;
|
|
3525
3525
|
thermostat_schedule_id: string;
|
|
3526
3526
|
device_id: string;
|
|
3527
|
-
max_override_period_minutes: number;
|
|
3528
3527
|
starts_at: string;
|
|
3529
3528
|
ends_at: string;
|
|
3530
3529
|
created_at: string;
|
|
@@ -3533,6 +3532,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3533
3532
|
error_code: string;
|
|
3534
3533
|
}[];
|
|
3535
3534
|
name?: string | undefined;
|
|
3535
|
+
max_override_period_minutes?: number | null | undefined;
|
|
3536
3536
|
unstable_is_override_allowed?: boolean | undefined;
|
|
3537
3537
|
} | null | undefined;
|
|
3538
3538
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -3609,7 +3609,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3609
3609
|
climate_preset_key: string;
|
|
3610
3610
|
thermostat_schedule_id: string;
|
|
3611
3611
|
device_id: string;
|
|
3612
|
-
max_override_period_minutes: number;
|
|
3613
3612
|
starts_at: string;
|
|
3614
3613
|
ends_at: string;
|
|
3615
3614
|
created_at: string;
|
|
@@ -3618,6 +3617,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
3618
3617
|
error_code: string;
|
|
3619
3618
|
}[];
|
|
3620
3619
|
name?: string | undefined;
|
|
3620
|
+
max_override_period_minutes?: number | null | undefined;
|
|
3621
3621
|
unstable_is_override_allowed?: boolean | undefined;
|
|
3622
3622
|
} | null | undefined;
|
|
3623
3623
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -4748,7 +4748,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4748
4748
|
climate_preset_key: string;
|
|
4749
4749
|
thermostat_schedule_id: string;
|
|
4750
4750
|
device_id: string;
|
|
4751
|
-
max_override_period_minutes: number;
|
|
4752
4751
|
starts_at: string;
|
|
4753
4752
|
ends_at: string;
|
|
4754
4753
|
created_at: string;
|
|
@@ -4757,6 +4756,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
4757
4756
|
error_code: string;
|
|
4758
4757
|
}[];
|
|
4759
4758
|
name?: string | undefined;
|
|
4759
|
+
max_override_period_minutes?: number | null | undefined;
|
|
4760
4760
|
unstable_is_override_allowed?: boolean | undefined;
|
|
4761
4761
|
} | null | undefined;
|
|
4762
4762
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -5323,7 +5323,6 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5323
5323
|
climate_preset_key: string;
|
|
5324
5324
|
thermostat_schedule_id: string;
|
|
5325
5325
|
device_id: string;
|
|
5326
|
-
max_override_period_minutes: number;
|
|
5327
5326
|
starts_at: string;
|
|
5328
5327
|
ends_at: string;
|
|
5329
5328
|
created_at: string;
|
|
@@ -5332,6 +5331,7 @@ export declare const device: z.ZodObject<z.objectUtil.extendShape<{
|
|
|
5332
5331
|
error_code: string;
|
|
5333
5332
|
}[];
|
|
5334
5333
|
name?: string | undefined;
|
|
5334
|
+
max_override_period_minutes?: number | null | undefined;
|
|
5335
5335
|
unstable_is_override_allowed?: boolean | undefined;
|
|
5336
5336
|
} | null | undefined;
|
|
5337
5337
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -1627,7 +1627,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1627
1627
|
device_id: z.ZodString;
|
|
1628
1628
|
name: z.ZodOptional<z.ZodString>;
|
|
1629
1629
|
climate_preset_key: z.ZodString;
|
|
1630
|
-
max_override_period_minutes: z.ZodNumber
|
|
1630
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
1631
1631
|
starts_at: z.ZodString;
|
|
1632
1632
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
1633
1633
|
ends_at: z.ZodString;
|
|
@@ -1646,7 +1646,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1646
1646
|
climate_preset_key: string;
|
|
1647
1647
|
thermostat_schedule_id: string;
|
|
1648
1648
|
device_id: string;
|
|
1649
|
-
max_override_period_minutes: number;
|
|
1650
1649
|
starts_at: string;
|
|
1651
1650
|
ends_at: string;
|
|
1652
1651
|
created_at: string;
|
|
@@ -1655,12 +1654,12 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1655
1654
|
error_code: string;
|
|
1656
1655
|
}[];
|
|
1657
1656
|
name?: string | undefined;
|
|
1657
|
+
max_override_period_minutes?: number | null | undefined;
|
|
1658
1658
|
unstable_is_override_allowed?: boolean | undefined;
|
|
1659
1659
|
}, {
|
|
1660
1660
|
climate_preset_key: string;
|
|
1661
1661
|
thermostat_schedule_id: string;
|
|
1662
1662
|
device_id: string;
|
|
1663
|
-
max_override_period_minutes: number;
|
|
1664
1663
|
starts_at: string;
|
|
1665
1664
|
ends_at: string;
|
|
1666
1665
|
created_at: string;
|
|
@@ -1669,6 +1668,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1669
1668
|
error_code: string;
|
|
1670
1669
|
}[];
|
|
1671
1670
|
name?: string | undefined;
|
|
1671
|
+
max_override_period_minutes?: number | null | undefined;
|
|
1672
1672
|
unstable_is_override_allowed?: boolean | undefined;
|
|
1673
1673
|
}>>>>;
|
|
1674
1674
|
min_cooling_set_point_celsius: z.ZodOptional<z.ZodNumber>;
|
|
@@ -1755,7 +1755,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1755
1755
|
climate_preset_key: string;
|
|
1756
1756
|
thermostat_schedule_id: string;
|
|
1757
1757
|
device_id: string;
|
|
1758
|
-
max_override_period_minutes: number;
|
|
1759
1758
|
starts_at: string;
|
|
1760
1759
|
ends_at: string;
|
|
1761
1760
|
created_at: string;
|
|
@@ -1764,6 +1763,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1764
1763
|
error_code: string;
|
|
1765
1764
|
}[];
|
|
1766
1765
|
name?: string | undefined;
|
|
1766
|
+
max_override_period_minutes?: number | null | undefined;
|
|
1767
1767
|
unstable_is_override_allowed?: boolean | undefined;
|
|
1768
1768
|
} | null | undefined;
|
|
1769
1769
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -1840,7 +1840,6 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1840
1840
|
climate_preset_key: string;
|
|
1841
1841
|
thermostat_schedule_id: string;
|
|
1842
1842
|
device_id: string;
|
|
1843
|
-
max_override_period_minutes: number;
|
|
1844
1843
|
starts_at: string;
|
|
1845
1844
|
ends_at: string;
|
|
1846
1845
|
created_at: string;
|
|
@@ -1849,6 +1848,7 @@ export declare const unmanaged_device: z.ZodObject<z.objectUtil.extendShape<z.ob
|
|
|
1849
1848
|
error_code: string;
|
|
1850
1849
|
}[];
|
|
1851
1850
|
name?: string | undefined;
|
|
1851
|
+
max_override_period_minutes?: number | null | undefined;
|
|
1852
1852
|
unstable_is_override_allowed?: boolean | undefined;
|
|
1853
1853
|
} | null | undefined;
|
|
1854
1854
|
min_cooling_set_point_celsius?: number | undefined;
|
|
@@ -4,7 +4,7 @@ export declare const thermostat_schedule: z.ZodObject<{
|
|
|
4
4
|
device_id: z.ZodString;
|
|
5
5
|
name: z.ZodOptional<z.ZodString>;
|
|
6
6
|
climate_preset_key: z.ZodString;
|
|
7
|
-
max_override_period_minutes: z.ZodNumber
|
|
7
|
+
max_override_period_minutes: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
|
|
8
8
|
starts_at: z.ZodString;
|
|
9
9
|
unstable_is_override_allowed: z.ZodOptional<z.ZodBoolean>;
|
|
10
10
|
ends_at: z.ZodString;
|
|
@@ -23,7 +23,6 @@ export declare const thermostat_schedule: z.ZodObject<{
|
|
|
23
23
|
climate_preset_key: string;
|
|
24
24
|
thermostat_schedule_id: string;
|
|
25
25
|
device_id: string;
|
|
26
|
-
max_override_period_minutes: number;
|
|
27
26
|
starts_at: string;
|
|
28
27
|
ends_at: string;
|
|
29
28
|
created_at: string;
|
|
@@ -32,12 +31,12 @@ export declare const thermostat_schedule: z.ZodObject<{
|
|
|
32
31
|
error_code: string;
|
|
33
32
|
}[];
|
|
34
33
|
name?: string | undefined;
|
|
34
|
+
max_override_period_minutes?: number | null | undefined;
|
|
35
35
|
unstable_is_override_allowed?: boolean | undefined;
|
|
36
36
|
}, {
|
|
37
37
|
climate_preset_key: string;
|
|
38
38
|
thermostat_schedule_id: string;
|
|
39
39
|
device_id: string;
|
|
40
|
-
max_override_period_minutes: number;
|
|
41
40
|
starts_at: string;
|
|
42
41
|
ends_at: string;
|
|
43
42
|
created_at: string;
|
|
@@ -46,6 +45,7 @@ export declare const thermostat_schedule: z.ZodObject<{
|
|
|
46
45
|
error_code: string;
|
|
47
46
|
}[];
|
|
48
47
|
name?: string | undefined;
|
|
48
|
+
max_override_period_minutes?: number | null | undefined;
|
|
49
49
|
unstable_is_override_allowed?: boolean | undefined;
|
|
50
50
|
}>;
|
|
51
51
|
export type ThermostatSchedule = z.infer<typeof thermostat_schedule>;
|
|
@@ -19,6 +19,8 @@ export const thermostat_schedule = z.object({
|
|
|
19
19
|
.number()
|
|
20
20
|
.int()
|
|
21
21
|
.nonnegative()
|
|
22
|
+
.nullable()
|
|
23
|
+
.optional()
|
|
22
24
|
.describe("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)."),
|
|
23
25
|
starts_at: z
|
|
24
26
|
.string()
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"thermostat-schedule.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/thermostat-schedule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,sBAAsB,EAAE,CAAC;SACtB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wIAAwI,CACzI;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,mGAAmG,CACpG;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iKAAiK,CAClK;IACH,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,0QAA0Q,CAC3Q;IACH,2BAA2B,EAAE,CAAC;SAC3B,MAAM,EAAE;SACR,GAAG,EAAE;SACL,WAAW,EAAE;SACb,QAAQ,CACP,sbAAsb,CACvb;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,8OAA8O,CAC/O;IACH,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP;;;;wOAIkO,CACnO;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,4OAA4O,CAC7O;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,qKAAqK,CACtK;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC;aACV,MAAM,EAAE;aACR,QAAQ,CACP,oGAAoG,CACrG;QACH,OAAO,EAAE,CAAC;aACP,MAAM,EAAE;aACR,QAAQ,CACP,wGAAwG,CACzG;KACJ,CAAC,CACH;SACA,QAAQ,CACP,yJAAyJ,CAC1J;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
1
|
+
{"version":3,"file":"thermostat-schedule.js","sourceRoot":"","sources":["../../../../../src/lib/seam/connect/models/thermostats/thermostat-schedule.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAA;AAEvB,MAAM,CAAC,MAAM,mBAAmB,GAAG,CAAC,CAAC,MAAM,CAAC;IAC1C,sBAAsB,EAAE,CAAC;SACtB,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,wIAAwI,CACzI;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,IAAI,EAAE;SACN,QAAQ,CACP,mGAAmG,CACpG;IACH,IAAI,EAAE,CAAC;SACJ,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,iKAAiK,CAClK;IACH,kBAAkB,EAAE,CAAC;SAClB,MAAM,EAAE;SACR,QAAQ,CACP,0QAA0Q,CAC3Q;IACH,2BAA2B,EAAE,CAAC;SAC3B,MAAM,EAAE;SACR,GAAG,EAAE;SACL,WAAW,EAAE;SACb,QAAQ,EAAE;SACV,QAAQ,EAAE;SACV,QAAQ,CACP,sbAAsb,CACvb;IACH,SAAS,EAAE,CAAC;SACT,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,8OAA8O,CAC/O;IACH,4BAA4B,EAAE,CAAC;SAC5B,OAAO,EAAE;SACT,QAAQ,EAAE;SACV,QAAQ,CACP;;;;wOAIkO,CACnO;IACH,OAAO,EAAE,CAAC;SACP,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,4OAA4O,CAC7O;IACH,UAAU,EAAE,CAAC;SACV,MAAM,EAAE;SACR,QAAQ,EAAE;SACV,QAAQ,CACP,qKAAqK,CACtK;IACH,MAAM,EAAE,CAAC;SACN,KAAK,CACJ,CAAC,CAAC,MAAM,CAAC;QACP,UAAU,EAAE,CAAC;aACV,MAAM,EAAE;aACR,QAAQ,CACP,oGAAoG,CACrG;QACH,OAAO,EAAE,CAAC;aACP,MAAM,EAAE;aACR,QAAQ,CACP,wGAAwG,CACzG;KACJ,CAAC,CACH;SACA,QAAQ,CACP,yJAAyJ,CAC1J;CACJ,CAAC,CAAC,QAAQ,CAAC;;;;;CAKX,CAAC,CAAA"}
|
|
@@ -4379,6 +4379,7 @@ declare const _default: {
|
|
|
4379
4379
|
max_override_period_minutes: {
|
|
4380
4380
|
description: string;
|
|
4381
4381
|
minimum: number;
|
|
4382
|
+
nullable: boolean;
|
|
4382
4383
|
type: string;
|
|
4383
4384
|
};
|
|
4384
4385
|
name: {
|
|
@@ -7863,6 +7864,7 @@ declare const _default: {
|
|
|
7863
7864
|
max_override_period_minutes: {
|
|
7864
7865
|
description: string;
|
|
7865
7866
|
minimum: number;
|
|
7867
|
+
nullable: boolean;
|
|
7866
7868
|
type: string;
|
|
7867
7869
|
};
|
|
7868
7870
|
name: {
|
|
@@ -21732,6 +21734,66 @@ declare const _default: {
|
|
|
21732
21734
|
'x-undocumented': string;
|
|
21733
21735
|
};
|
|
21734
21736
|
};
|
|
21737
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
21738
|
+
post: {
|
|
21739
|
+
description: string;
|
|
21740
|
+
operationId: string;
|
|
21741
|
+
requestBody: {
|
|
21742
|
+
content: {
|
|
21743
|
+
'application/json': {
|
|
21744
|
+
schema: {
|
|
21745
|
+
properties: {
|
|
21746
|
+
is_tailscale_connected: {
|
|
21747
|
+
nullable: boolean;
|
|
21748
|
+
type: string;
|
|
21749
|
+
};
|
|
21750
|
+
tailscale_ip_v4: {
|
|
21751
|
+
nullable: boolean;
|
|
21752
|
+
type: string;
|
|
21753
|
+
};
|
|
21754
|
+
};
|
|
21755
|
+
required: string[];
|
|
21756
|
+
type: string;
|
|
21757
|
+
};
|
|
21758
|
+
};
|
|
21759
|
+
};
|
|
21760
|
+
};
|
|
21761
|
+
responses: {
|
|
21762
|
+
200: {
|
|
21763
|
+
content: {
|
|
21764
|
+
'application/json': {
|
|
21765
|
+
schema: {
|
|
21766
|
+
properties: {
|
|
21767
|
+
ok: {
|
|
21768
|
+
type: string;
|
|
21769
|
+
};
|
|
21770
|
+
};
|
|
21771
|
+
required: string[];
|
|
21772
|
+
type: string;
|
|
21773
|
+
};
|
|
21774
|
+
};
|
|
21775
|
+
};
|
|
21776
|
+
description: string;
|
|
21777
|
+
};
|
|
21778
|
+
400: {
|
|
21779
|
+
description: string;
|
|
21780
|
+
};
|
|
21781
|
+
401: {
|
|
21782
|
+
description: string;
|
|
21783
|
+
};
|
|
21784
|
+
};
|
|
21785
|
+
security: {
|
|
21786
|
+
bridge_client_session: never[];
|
|
21787
|
+
}[];
|
|
21788
|
+
summary: string;
|
|
21789
|
+
tags: never[];
|
|
21790
|
+
'x-fern-sdk-group-name': string[];
|
|
21791
|
+
'x-fern-sdk-method-name': string;
|
|
21792
|
+
'x-response-key': null;
|
|
21793
|
+
'x-title': string;
|
|
21794
|
+
'x-undocumented': string;
|
|
21795
|
+
};
|
|
21796
|
+
};
|
|
21735
21797
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
21736
21798
|
get: {
|
|
21737
21799
|
description: string;
|
|
@@ -22823,9 +22885,10 @@ declare const _default: {
|
|
|
22823
22885
|
type: string;
|
|
22824
22886
|
};
|
|
22825
22887
|
max_override_period_minutes: {
|
|
22826
|
-
default:
|
|
22888
|
+
default: null;
|
|
22827
22889
|
description: string;
|
|
22828
22890
|
minimum: number;
|
|
22891
|
+
nullable: boolean;
|
|
22829
22892
|
type: string;
|
|
22830
22893
|
};
|
|
22831
22894
|
name: {
|
|
@@ -23161,6 +23224,7 @@ declare const _default: {
|
|
|
23161
23224
|
max_override_period_minutes: {
|
|
23162
23225
|
description: string;
|
|
23163
23226
|
minimum: number;
|
|
23227
|
+
nullable: boolean;
|
|
23164
23228
|
type: string;
|
|
23165
23229
|
};
|
|
23166
23230
|
name: {
|
|
@@ -23257,6 +23321,7 @@ declare const _default: {
|
|
|
23257
23321
|
max_override_period_minutes: {
|
|
23258
23322
|
description: string;
|
|
23259
23323
|
minimum: number;
|
|
23324
|
+
nullable: boolean;
|
|
23260
23325
|
type: string;
|
|
23261
23326
|
};
|
|
23262
23327
|
name: {
|
|
@@ -7475,6 +7475,7 @@ export default {
|
|
|
7475
7475
|
max_override_period_minutes: {
|
|
7476
7476
|
description: "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).",
|
|
7477
7477
|
minimum: 0,
|
|
7478
|
+
nullable: true,
|
|
7478
7479
|
type: 'integer',
|
|
7479
7480
|
},
|
|
7480
7481
|
name: {
|
|
@@ -7501,7 +7502,6 @@ export default {
|
|
|
7501
7502
|
'thermostat_schedule_id',
|
|
7502
7503
|
'device_id',
|
|
7503
7504
|
'climate_preset_key',
|
|
7504
|
-
'max_override_period_minutes',
|
|
7505
7505
|
'starts_at',
|
|
7506
7506
|
'ends_at',
|
|
7507
7507
|
'created_at',
|
|
@@ -12674,6 +12674,7 @@ export default {
|
|
|
12674
12674
|
max_override_period_minutes: {
|
|
12675
12675
|
description: "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).",
|
|
12676
12676
|
minimum: 0,
|
|
12677
|
+
nullable: true,
|
|
12677
12678
|
type: 'integer',
|
|
12678
12679
|
},
|
|
12679
12680
|
name: {
|
|
@@ -12700,7 +12701,6 @@ export default {
|
|
|
12700
12701
|
'thermostat_schedule_id',
|
|
12701
12702
|
'device_id',
|
|
12702
12703
|
'climate_preset_key',
|
|
12703
|
-
'max_override_period_minutes',
|
|
12704
12704
|
'starts_at',
|
|
12705
12705
|
'ends_at',
|
|
12706
12706
|
'created_at',
|
|
@@ -25917,6 +25917,55 @@ export default {
|
|
|
25917
25917
|
'x-undocumented': 'Seam Bridge Client only.',
|
|
25918
25918
|
},
|
|
25919
25919
|
},
|
|
25920
|
+
'/seam/bridge/v1/bridge_client_sessions/report_status': {
|
|
25921
|
+
post: {
|
|
25922
|
+
description: "Report a Seam Bridge Bridge client's status.",
|
|
25923
|
+
operationId: 'seamBridgeV1BridgeClientSessionsReportStatusPost',
|
|
25924
|
+
requestBody: {
|
|
25925
|
+
content: {
|
|
25926
|
+
'application/json': {
|
|
25927
|
+
schema: {
|
|
25928
|
+
properties: {
|
|
25929
|
+
is_tailscale_connected: { nullable: true, type: 'boolean' },
|
|
25930
|
+
tailscale_ip_v4: { nullable: true, type: 'string' },
|
|
25931
|
+
},
|
|
25932
|
+
required: ['is_tailscale_connected', 'tailscale_ip_v4'],
|
|
25933
|
+
type: 'object',
|
|
25934
|
+
},
|
|
25935
|
+
},
|
|
25936
|
+
},
|
|
25937
|
+
},
|
|
25938
|
+
responses: {
|
|
25939
|
+
200: {
|
|
25940
|
+
content: {
|
|
25941
|
+
'application/json': {
|
|
25942
|
+
schema: {
|
|
25943
|
+
properties: { ok: { type: 'boolean' } },
|
|
25944
|
+
required: ['ok'],
|
|
25945
|
+
type: 'object',
|
|
25946
|
+
},
|
|
25947
|
+
},
|
|
25948
|
+
},
|
|
25949
|
+
description: 'OK',
|
|
25950
|
+
},
|
|
25951
|
+
400: { description: 'Bad Request' },
|
|
25952
|
+
401: { description: 'Unauthorized' },
|
|
25953
|
+
},
|
|
25954
|
+
security: [{ bridge_client_session: [] }],
|
|
25955
|
+
summary: '/seam/bridge/v1/bridge_client_sessions/report_status',
|
|
25956
|
+
tags: [],
|
|
25957
|
+
'x-fern-sdk-group-name': [
|
|
25958
|
+
'seam',
|
|
25959
|
+
'bridge',
|
|
25960
|
+
'v1',
|
|
25961
|
+
'bridge_client_sessions',
|
|
25962
|
+
],
|
|
25963
|
+
'x-fern-sdk-method-name': 'report_status',
|
|
25964
|
+
'x-response-key': null,
|
|
25965
|
+
'x-title': "Report a Bridge Client's Status",
|
|
25966
|
+
'x-undocumented': 'Seam Bridge Client only.',
|
|
25967
|
+
},
|
|
25968
|
+
},
|
|
25920
25969
|
'/seam/bridge/v1/bridge_connected_systems/list': {
|
|
25921
25970
|
get: {
|
|
25922
25971
|
description: 'Returns the bridge connected systems associated with the session token used.',
|
|
@@ -26825,9 +26874,10 @@ export default {
|
|
|
26825
26874
|
type: 'boolean',
|
|
26826
26875
|
},
|
|
26827
26876
|
max_override_period_minutes: {
|
|
26828
|
-
default:
|
|
26877
|
+
default: null,
|
|
26829
26878
|
description: "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).",
|
|
26830
26879
|
minimum: 0,
|
|
26880
|
+
nullable: true,
|
|
26831
26881
|
type: 'integer',
|
|
26832
26882
|
},
|
|
26833
26883
|
name: {
|
|
@@ -27082,6 +27132,7 @@ export default {
|
|
|
27082
27132
|
max_override_period_minutes: {
|
|
27083
27133
|
description: "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).",
|
|
27084
27134
|
minimum: 0,
|
|
27135
|
+
nullable: true,
|
|
27085
27136
|
type: 'integer',
|
|
27086
27137
|
},
|
|
27087
27138
|
name: {
|
|
@@ -27155,6 +27206,7 @@ export default {
|
|
|
27155
27206
|
max_override_period_minutes: {
|
|
27156
27207
|
description: "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).",
|
|
27157
27208
|
minimum: 0,
|
|
27209
|
+
nullable: true,
|
|
27158
27210
|
type: 'integer',
|
|
27159
27211
|
},
|
|
27160
27212
|
name: {
|