@seamapi/types 1.293.0 → 1.293.1
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 +22 -15
- package/dist/connect.cjs.map +1 -1
- package/dist/connect.d.cts +92 -43
- package/lib/seam/connect/models/thermostats/climate-preset.js +5 -3
- package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
- package/lib/seam/connect/openapi.d.ts +11 -1
- package/lib/seam/connect/openapi.js +12 -9
- package/lib/seam/connect/openapi.js.map +1 -1
- package/lib/seam/connect/route-types.d.ts +81 -42
- package/package.json +1 -1
- package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
- package/src/lib/seam/connect/openapi.ts +17 -10
- package/src/lib/seam/connect/route-types.ts +81 -42
|
@@ -4524,8 +4524,10 @@ export default {
|
|
|
4524
4524
|
type: 'string',
|
|
4525
4525
|
},
|
|
4526
4526
|
manual_override_allowed: {
|
|
4527
|
+
deprecated: true,
|
|
4527
4528
|
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4528
4529
|
type: 'boolean',
|
|
4530
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
4529
4531
|
},
|
|
4530
4532
|
name: {
|
|
4531
4533
|
default: null,
|
|
@@ -4608,8 +4610,10 @@ export default {
|
|
|
4608
4610
|
type: 'string',
|
|
4609
4611
|
},
|
|
4610
4612
|
manual_override_allowed: {
|
|
4613
|
+
deprecated: true,
|
|
4611
4614
|
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4612
4615
|
type: 'boolean',
|
|
4616
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
4613
4617
|
},
|
|
4614
4618
|
name: {
|
|
4615
4619
|
default: null,
|
|
@@ -4670,8 +4674,10 @@ export default {
|
|
|
4670
4674
|
type: 'string',
|
|
4671
4675
|
},
|
|
4672
4676
|
manual_override_allowed: {
|
|
4677
|
+
deprecated: true,
|
|
4673
4678
|
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
4674
4679
|
type: 'boolean',
|
|
4680
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
4675
4681
|
},
|
|
4676
4682
|
name: {
|
|
4677
4683
|
default: null,
|
|
@@ -15348,10 +15354,7 @@ export default {
|
|
|
15348
15354
|
enum: ['off', 'heat', 'cool', 'heat_cool'],
|
|
15349
15355
|
type: 'string',
|
|
15350
15356
|
},
|
|
15351
|
-
manual_override_allowed: {
|
|
15352
|
-
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
15353
|
-
type: 'boolean',
|
|
15354
|
-
},
|
|
15357
|
+
manual_override_allowed: { default: true, type: 'boolean' },
|
|
15355
15358
|
name: {
|
|
15356
15359
|
default: null,
|
|
15357
15360
|
description: 'User-friendly name to identify the climate preset.',
|
|
@@ -15359,11 +15362,7 @@ export default {
|
|
|
15359
15362
|
type: 'string',
|
|
15360
15363
|
},
|
|
15361
15364
|
},
|
|
15362
|
-
required: [
|
|
15363
|
-
'device_id',
|
|
15364
|
-
'climate_preset_key',
|
|
15365
|
-
'manual_override_allowed',
|
|
15366
|
-
],
|
|
15365
|
+
required: ['device_id', 'climate_preset_key'],
|
|
15367
15366
|
type: 'object',
|
|
15368
15367
|
},
|
|
15369
15368
|
},
|
|
@@ -16751,8 +16750,10 @@ export default {
|
|
|
16751
16750
|
type: 'string',
|
|
16752
16751
|
},
|
|
16753
16752
|
manual_override_allowed: {
|
|
16753
|
+
deprecated: true,
|
|
16754
16754
|
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
16755
16755
|
type: 'boolean',
|
|
16756
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
16756
16757
|
},
|
|
16757
16758
|
name: {
|
|
16758
16759
|
default: null,
|
|
@@ -16846,8 +16847,10 @@ export default {
|
|
|
16846
16847
|
type: 'string',
|
|
16847
16848
|
},
|
|
16848
16849
|
manual_override_allowed: {
|
|
16850
|
+
deprecated: true,
|
|
16849
16851
|
description: "Indicates whether a person at the thermostat can change the thermostat's settings.",
|
|
16850
16852
|
type: 'boolean',
|
|
16853
|
+
'x-deprecated': "Use 'thermostat_schedule.is_override_allowed'",
|
|
16851
16854
|
},
|
|
16852
16855
|
name: {
|
|
16853
16856
|
default: null,
|