@seamapi/types 1.410.0 → 1.410.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.
@@ -55189,7 +55189,7 @@ export interface Routes {
55189
55189
  heating_set_point_fahrenheit?: number | undefined;
55190
55190
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
55191
55191
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
55192
- manual_override_allowed: boolean;
55192
+ manual_override_allowed?: boolean | undefined;
55193
55193
  };
55194
55194
  commonParams: {};
55195
55195
  formData: {};
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.410.0",
3
+ "version": "1.410.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -37435,11 +37435,7 @@ export default {
37435
37435
  type: 'string',
37436
37436
  },
37437
37437
  },
37438
- required: [
37439
- 'device_id',
37440
- 'climate_preset_key',
37441
- 'manual_override_allowed',
37442
- ],
37438
+ required: ['device_id', 'climate_preset_key'],
37443
37439
  type: 'object',
37444
37440
  },
37445
37441
  },
@@ -37545,11 +37541,7 @@ export default {
37545
37541
  type: 'string',
37546
37542
  },
37547
37543
  },
37548
- required: [
37549
- 'device_id',
37550
- 'climate_preset_key',
37551
- 'manual_override_allowed',
37552
- ],
37544
+ required: ['device_id', 'climate_preset_key'],
37553
37545
  type: 'object',
37554
37546
  },
37555
37547
  },
@@ -64952,7 +64952,7 @@ export interface Routes {
64952
64952
  heating_set_point_fahrenheit?: number | undefined
64953
64953
  /** Indicates whether a person at the thermostat can change the thermostat's settings. See [Specifying Manual Override Permissions](https://docs.seam.co/latest/capability-guides/thermostats/creating-and-managing-thermostat-schedules#specifying-manual-override-permissions).
64954
64954
  * @deprecated Use 'thermostat_schedule.is_override_allowed' */
64955
- manual_override_allowed: boolean
64955
+ manual_override_allowed?: boolean | undefined
64956
64956
  }
64957
64957
  commonParams: {}
64958
64958
  formData: {}