@seamapi/types 1.292.2 → 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.
Files changed (33) hide show
  1. package/dist/connect.cjs +42 -15
  2. package/dist/connect.cjs.map +1 -1
  3. package/dist/connect.d.cts +161 -43
  4. package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js → assa-abloy-vostio.js} +1 -1
  5. package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.js.map → assa-abloy-vostio.js.map} +1 -1
  6. package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js → dormakaba-community.js} +1 -1
  7. package/lib/seam/connect/models/acs/metadata/{dormakaba_community.js.map → dormakaba-community.js.map} +1 -1
  8. package/lib/seam/connect/models/acs/metadata/index.d.ts +2 -2
  9. package/lib/seam/connect/models/acs/metadata/index.js +2 -2
  10. package/lib/seam/connect/models/devices/capability-properties/index.d.ts +5 -0
  11. package/lib/seam/connect/models/devices/capability-properties/thermostat.d.ts +5 -0
  12. package/lib/seam/connect/models/devices/device.d.ts +7 -0
  13. package/lib/seam/connect/models/devices/phone.d.ts +5 -0
  14. package/lib/seam/connect/models/devices/unmanaged-device.d.ts +5 -0
  15. package/lib/seam/connect/models/thermostats/climate-preset.js +5 -3
  16. package/lib/seam/connect/models/thermostats/climate-preset.js.map +1 -1
  17. package/lib/seam/connect/models/thermostats/thermostat-schedule.d.ts +3 -0
  18. package/lib/seam/connect/models/thermostats/thermostat-schedule.js +8 -0
  19. package/lib/seam/connect/models/thermostats/thermostat-schedule.js.map +1 -1
  20. package/lib/seam/connect/openapi.d.ts +31 -1
  21. package/lib/seam/connect/openapi.js +25 -9
  22. package/lib/seam/connect/openapi.js.map +1 -1
  23. package/lib/seam/connect/route-types.d.ts +115 -42
  24. package/package.json +1 -1
  25. package/src/lib/seam/connect/models/acs/metadata/index.ts +2 -2
  26. package/src/lib/seam/connect/models/thermostats/climate-preset.ts +7 -5
  27. package/src/lib/seam/connect/models/thermostats/thermostat-schedule.ts +10 -0
  28. package/src/lib/seam/connect/openapi.ts +32 -10
  29. package/src/lib/seam/connect/route-types.ts +115 -42
  30. /package/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.d.ts → assa-abloy-vostio.d.ts} +0 -0
  31. /package/lib/seam/connect/models/acs/metadata/{dormakaba_community.d.ts → dormakaba-community.d.ts} +0 -0
  32. /package/src/lib/seam/connect/models/acs/metadata/{assa_abloy_vostio.ts → assa-abloy-vostio.ts} +0 -0
  33. /package/src/lib/seam/connect/models/acs/metadata/{dormakaba_community.ts → dormakaba-community.ts} +0 -0
@@ -9689,7 +9689,8 @@ export interface Routes {
9689
9689
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
9690
9690
  /** Temperature to which the thermostat should heat (in °F). */
9691
9691
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
9692
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
9692
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
9693
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
9693
9694
  manual_override_allowed?: boolean | undefined;
9694
9695
  } | undefined;
9695
9696
  /**
@@ -9717,7 +9718,8 @@ export interface Routes {
9717
9718
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
9718
9719
  /** Temperature to which the thermostat should heat (in °F). */
9719
9720
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
9720
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
9721
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
9722
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
9721
9723
  manual_override_allowed?: boolean | undefined;
9722
9724
  } | undefined;
9723
9725
  available_climate_presets?: Array<{
@@ -9743,7 +9745,8 @@ export interface Routes {
9743
9745
  cooling_set_point_fahrenheit?: number | undefined;
9744
9746
  /** Temperature to which the thermostat should heat (in °F). */
9745
9747
  heating_set_point_fahrenheit?: number | undefined;
9746
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
9748
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
9749
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
9747
9750
  manual_override_allowed: boolean;
9748
9751
  }> | undefined;
9749
9752
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -9761,6 +9764,8 @@ export interface Routes {
9761
9764
  max_override_period_minutes: number;
9762
9765
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
9763
9766
  starts_at: string;
9767
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
9768
+ unstable_is_override_allowed?: boolean | undefined;
9764
9769
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
9765
9770
  ends_at: string;
9766
9771
  /** Date and time at which the thermostat schedule was created. */
@@ -10234,7 +10239,8 @@ export interface Routes {
10234
10239
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
10235
10240
  /** Temperature to which the thermostat should heat (in °F). */
10236
10241
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
10237
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
10242
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
10243
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
10238
10244
  manual_override_allowed?: boolean | undefined;
10239
10245
  } | undefined;
10240
10246
  /**
@@ -10262,7 +10268,8 @@ export interface Routes {
10262
10268
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
10263
10269
  /** Temperature to which the thermostat should heat (in °F). */
10264
10270
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
10265
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
10271
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
10272
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
10266
10273
  manual_override_allowed?: boolean | undefined;
10267
10274
  } | undefined;
10268
10275
  available_climate_presets?: Array<{
@@ -10288,7 +10295,8 @@ export interface Routes {
10288
10295
  cooling_set_point_fahrenheit?: number | undefined;
10289
10296
  /** Temperature to which the thermostat should heat (in °F). */
10290
10297
  heating_set_point_fahrenheit?: number | undefined;
10291
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
10298
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
10299
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
10292
10300
  manual_override_allowed: boolean;
10293
10301
  }> | undefined;
10294
10302
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -10306,6 +10314,8 @@ export interface Routes {
10306
10314
  max_override_period_minutes: number;
10307
10315
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
10308
10316
  starts_at: string;
10317
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
10318
+ unstable_is_override_allowed?: boolean | undefined;
10309
10319
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
10310
10320
  ends_at: string;
10311
10321
  /** Date and time at which the thermostat schedule was created. */
@@ -11182,7 +11192,8 @@ export interface Routes {
11182
11192
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
11183
11193
  /** Temperature to which the thermostat should heat (in °F). */
11184
11194
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
11185
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11195
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11196
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11186
11197
  manual_override_allowed?: boolean | undefined;
11187
11198
  } | undefined;
11188
11199
  /**
@@ -11210,7 +11221,8 @@ export interface Routes {
11210
11221
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
11211
11222
  /** Temperature to which the thermostat should heat (in °F). */
11212
11223
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
11213
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11224
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11225
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11214
11226
  manual_override_allowed?: boolean | undefined;
11215
11227
  } | undefined;
11216
11228
  available_climate_presets?: Array<{
@@ -11236,7 +11248,8 @@ export interface Routes {
11236
11248
  cooling_set_point_fahrenheit?: number | undefined;
11237
11249
  /** Temperature to which the thermostat should heat (in °F). */
11238
11250
  heating_set_point_fahrenheit?: number | undefined;
11239
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11251
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11252
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11240
11253
  manual_override_allowed: boolean;
11241
11254
  }> | undefined;
11242
11255
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -11254,6 +11267,8 @@ export interface Routes {
11254
11267
  max_override_period_minutes: number;
11255
11268
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11256
11269
  starts_at: string;
11270
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11271
+ unstable_is_override_allowed?: boolean | undefined;
11257
11272
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11258
11273
  ends_at: string;
11259
11274
  /** Date and time at which the thermostat schedule was created. */
@@ -11690,7 +11705,8 @@ export interface Routes {
11690
11705
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
11691
11706
  /** Temperature to which the thermostat should heat (in °F). */
11692
11707
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
11693
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11708
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11709
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11694
11710
  manual_override_allowed?: boolean | undefined;
11695
11711
  } | undefined;
11696
11712
  /**
@@ -11718,7 +11734,8 @@ export interface Routes {
11718
11734
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
11719
11735
  /** Temperature to which the thermostat should heat (in °F). */
11720
11736
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
11721
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11737
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11738
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11722
11739
  manual_override_allowed?: boolean | undefined;
11723
11740
  } | undefined;
11724
11741
  available_climate_presets?: Array<{
@@ -11744,7 +11761,8 @@ export interface Routes {
11744
11761
  cooling_set_point_fahrenheit?: number | undefined;
11745
11762
  /** Temperature to which the thermostat should heat (in °F). */
11746
11763
  heating_set_point_fahrenheit?: number | undefined;
11747
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11764
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
11765
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
11748
11766
  manual_override_allowed: boolean;
11749
11767
  }> | undefined;
11750
11768
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -11762,6 +11780,8 @@ export interface Routes {
11762
11780
  max_override_period_minutes: number;
11763
11781
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11764
11782
  starts_at: string;
11783
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
11784
+ unstable_is_override_allowed?: boolean | undefined;
11765
11785
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
11766
11786
  ends_at: string;
11767
11787
  /** Date and time at which the thermostat schedule was created. */
@@ -12235,7 +12255,8 @@ export interface Routes {
12235
12255
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
12236
12256
  /** Temperature to which the thermostat should heat (in °F). */
12237
12257
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
12238
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12258
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12259
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12239
12260
  manual_override_allowed?: boolean | undefined;
12240
12261
  } | undefined;
12241
12262
  /**
@@ -12263,7 +12284,8 @@ export interface Routes {
12263
12284
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
12264
12285
  /** Temperature to which the thermostat should heat (in °F). */
12265
12286
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
12266
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12287
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12288
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12267
12289
  manual_override_allowed?: boolean | undefined;
12268
12290
  } | undefined;
12269
12291
  available_climate_presets?: Array<{
@@ -12289,7 +12311,8 @@ export interface Routes {
12289
12311
  cooling_set_point_fahrenheit?: number | undefined;
12290
12312
  /** Temperature to which the thermostat should heat (in °F). */
12291
12313
  heating_set_point_fahrenheit?: number | undefined;
12292
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12314
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12315
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12293
12316
  manual_override_allowed: boolean;
12294
12317
  }> | undefined;
12295
12318
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -12307,6 +12330,8 @@ export interface Routes {
12307
12330
  max_override_period_minutes: number;
12308
12331
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12309
12332
  starts_at: string;
12333
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12334
+ unstable_is_override_allowed?: boolean | undefined;
12310
12335
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12311
12336
  ends_at: string;
12312
12337
  /** Date and time at which the thermostat schedule was created. */
@@ -12743,7 +12768,8 @@ export interface Routes {
12743
12768
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
12744
12769
  /** Temperature to which the thermostat should heat (in °F). */
12745
12770
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
12746
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12771
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12772
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12747
12773
  manual_override_allowed?: boolean | undefined;
12748
12774
  } | undefined;
12749
12775
  /**
@@ -12771,7 +12797,8 @@ export interface Routes {
12771
12797
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
12772
12798
  /** Temperature to which the thermostat should heat (in °F). */
12773
12799
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
12774
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12800
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12801
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12775
12802
  manual_override_allowed?: boolean | undefined;
12776
12803
  } | undefined;
12777
12804
  available_climate_presets?: Array<{
@@ -12797,7 +12824,8 @@ export interface Routes {
12797
12824
  cooling_set_point_fahrenheit?: number | undefined;
12798
12825
  /** Temperature to which the thermostat should heat (in °F). */
12799
12826
  heating_set_point_fahrenheit?: number | undefined;
12800
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12827
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
12828
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
12801
12829
  manual_override_allowed: boolean;
12802
12830
  }> | undefined;
12803
12831
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -12815,6 +12843,8 @@ export interface Routes {
12815
12843
  max_override_period_minutes: number;
12816
12844
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12817
12845
  starts_at: string;
12846
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
12847
+ unstable_is_override_allowed?: boolean | undefined;
12818
12848
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
12819
12849
  ends_at: string;
12820
12850
  /** Date and time at which the thermostat schedule was created. */
@@ -14788,7 +14818,8 @@ export interface Routes {
14788
14818
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
14789
14819
  /** Temperature to which the thermostat should heat (in °F). */
14790
14820
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
14791
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
14821
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
14822
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
14792
14823
  manual_override_allowed?: boolean | undefined;
14793
14824
  } | undefined;
14794
14825
  /**
@@ -14816,7 +14847,8 @@ export interface Routes {
14816
14847
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
14817
14848
  /** Temperature to which the thermostat should heat (in °F). */
14818
14849
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
14819
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
14850
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
14851
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
14820
14852
  manual_override_allowed?: boolean | undefined;
14821
14853
  } | undefined;
14822
14854
  available_climate_presets?: Array<{
@@ -14842,7 +14874,8 @@ export interface Routes {
14842
14874
  cooling_set_point_fahrenheit?: number | undefined;
14843
14875
  /** Temperature to which the thermostat should heat (in °F). */
14844
14876
  heating_set_point_fahrenheit?: number | undefined;
14845
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
14877
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
14878
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
14846
14879
  manual_override_allowed: boolean;
14847
14880
  }> | undefined;
14848
14881
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -14860,6 +14893,8 @@ export interface Routes {
14860
14893
  max_override_period_minutes: number;
14861
14894
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
14862
14895
  starts_at: string;
14896
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
14897
+ unstable_is_override_allowed?: boolean | undefined;
14863
14898
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
14864
14899
  ends_at: string;
14865
14900
  /** Date and time at which the thermostat schedule was created. */
@@ -15296,7 +15331,8 @@ export interface Routes {
15296
15331
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
15297
15332
  /** Temperature to which the thermostat should heat (in °F). */
15298
15333
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
15299
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
15334
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
15335
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
15300
15336
  manual_override_allowed?: boolean | undefined;
15301
15337
  } | undefined;
15302
15338
  /**
@@ -15324,7 +15360,8 @@ export interface Routes {
15324
15360
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
15325
15361
  /** Temperature to which the thermostat should heat (in °F). */
15326
15362
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
15327
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
15363
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
15364
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
15328
15365
  manual_override_allowed?: boolean | undefined;
15329
15366
  } | undefined;
15330
15367
  available_climate_presets?: Array<{
@@ -15350,7 +15387,8 @@ export interface Routes {
15350
15387
  cooling_set_point_fahrenheit?: number | undefined;
15351
15388
  /** Temperature to which the thermostat should heat (in °F). */
15352
15389
  heating_set_point_fahrenheit?: number | undefined;
15353
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
15390
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
15391
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
15354
15392
  manual_override_allowed: boolean;
15355
15393
  }> | undefined;
15356
15394
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -15368,6 +15406,8 @@ export interface Routes {
15368
15406
  max_override_period_minutes: number;
15369
15407
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
15370
15408
  starts_at: string;
15409
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
15410
+ unstable_is_override_allowed?: boolean | undefined;
15371
15411
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
15372
15412
  ends_at: string;
15373
15413
  /** Date and time at which the thermostat schedule was created. */
@@ -19363,6 +19403,7 @@ export interface Routes {
19363
19403
  jsonBody: {
19364
19404
  /** ID of the desired thermostat device. */
19365
19405
  device_id: string;
19406
+ manual_override_allowed?: boolean;
19366
19407
  /** Unique key to identify the climate preset. */
19367
19408
  climate_preset_key: string;
19368
19409
  /** User-friendly name to identify the climate preset. */
@@ -19379,8 +19420,6 @@ export interface Routes {
19379
19420
  cooling_set_point_fahrenheit?: number | undefined;
19380
19421
  /** Temperature to which the thermostat should heat (in °F). */
19381
19422
  heating_set_point_fahrenheit?: number | undefined;
19382
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19383
- manual_override_allowed: boolean;
19384
19423
  };
19385
19424
  commonParams: {};
19386
19425
  formData: {};
@@ -19782,7 +19821,8 @@ export interface Routes {
19782
19821
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
19783
19822
  /** Temperature to which the thermostat should heat (in °F). */
19784
19823
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
19785
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19824
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
19825
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
19786
19826
  manual_override_allowed?: boolean | undefined;
19787
19827
  } | undefined;
19788
19828
  /**
@@ -19810,7 +19850,8 @@ export interface Routes {
19810
19850
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
19811
19851
  /** Temperature to which the thermostat should heat (in °F). */
19812
19852
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
19813
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19853
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
19854
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
19814
19855
  manual_override_allowed?: boolean | undefined;
19815
19856
  } | undefined;
19816
19857
  available_climate_presets?: Array<{
@@ -19836,7 +19877,8 @@ export interface Routes {
19836
19877
  cooling_set_point_fahrenheit?: number | undefined;
19837
19878
  /** Temperature to which the thermostat should heat (in °F). */
19838
19879
  heating_set_point_fahrenheit?: number | undefined;
19839
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19880
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
19881
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
19840
19882
  manual_override_allowed: boolean;
19841
19883
  }> | undefined;
19842
19884
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -19854,6 +19896,8 @@ export interface Routes {
19854
19896
  max_override_period_minutes: number;
19855
19897
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
19856
19898
  starts_at: string;
19899
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
19900
+ unstable_is_override_allowed?: boolean | undefined;
19857
19901
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
19858
19902
  ends_at: string;
19859
19903
  /** Date and time at which the thermostat schedule was created. */
@@ -21809,7 +21853,8 @@ export interface Routes {
21809
21853
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
21810
21854
  /** Temperature to which the thermostat should heat (in °F). */
21811
21855
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
21812
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
21856
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
21857
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
21813
21858
  manual_override_allowed?: boolean | undefined;
21814
21859
  } | undefined;
21815
21860
  /**
@@ -21837,7 +21882,8 @@ export interface Routes {
21837
21882
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
21838
21883
  /** Temperature to which the thermostat should heat (in °F). */
21839
21884
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
21840
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
21885
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
21886
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
21841
21887
  manual_override_allowed?: boolean | undefined;
21842
21888
  } | undefined;
21843
21889
  available_climate_presets?: Array<{
@@ -21863,7 +21909,8 @@ export interface Routes {
21863
21909
  cooling_set_point_fahrenheit?: number | undefined;
21864
21910
  /** Temperature to which the thermostat should heat (in °F). */
21865
21911
  heating_set_point_fahrenheit?: number | undefined;
21866
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
21912
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
21913
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
21867
21914
  manual_override_allowed: boolean;
21868
21915
  }> | undefined;
21869
21916
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -21881,6 +21928,8 @@ export interface Routes {
21881
21928
  max_override_period_minutes: number;
21882
21929
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
21883
21930
  starts_at: string;
21931
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
21932
+ unstable_is_override_allowed?: boolean | undefined;
21884
21933
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
21885
21934
  ends_at: string;
21886
21935
  /** Date and time at which the thermostat schedule was created. */
@@ -22317,7 +22366,8 @@ export interface Routes {
22317
22366
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
22318
22367
  /** Temperature to which the thermostat should heat (in °F). */
22319
22368
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
22320
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
22369
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
22370
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
22321
22371
  manual_override_allowed?: boolean | undefined;
22322
22372
  } | undefined;
22323
22373
  /**
@@ -22345,7 +22395,8 @@ export interface Routes {
22345
22395
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
22346
22396
  /** Temperature to which the thermostat should heat (in °F). */
22347
22397
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
22348
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
22398
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
22399
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
22349
22400
  manual_override_allowed?: boolean | undefined;
22350
22401
  } | undefined;
22351
22402
  available_climate_presets?: Array<{
@@ -22371,7 +22422,8 @@ export interface Routes {
22371
22422
  cooling_set_point_fahrenheit?: number | undefined;
22372
22423
  /** Temperature to which the thermostat should heat (in °F). */
22373
22424
  heating_set_point_fahrenheit?: number | undefined;
22374
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
22425
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
22426
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
22375
22427
  manual_override_allowed: boolean;
22376
22428
  }> | undefined;
22377
22429
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -22389,6 +22441,8 @@ export interface Routes {
22389
22441
  max_override_period_minutes: number;
22390
22442
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
22391
22443
  starts_at: string;
22444
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
22445
+ unstable_is_override_allowed?: boolean | undefined;
22392
22446
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
22393
22447
  ends_at: string;
22394
22448
  /** Date and time at which the thermostat schedule was created. */
@@ -23210,6 +23264,7 @@ export interface Routes {
23210
23264
  starts_at: string;
23211
23265
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23212
23266
  ends_at: string;
23267
+ is_override_allowed?: boolean | undefined;
23213
23268
  };
23214
23269
  commonParams: {};
23215
23270
  formData: {};
@@ -23228,6 +23283,8 @@ export interface Routes {
23228
23283
  max_override_period_minutes: number;
23229
23284
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23230
23285
  starts_at: string;
23286
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
23287
+ unstable_is_override_allowed?: boolean | undefined;
23231
23288
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23232
23289
  ends_at: string;
23233
23290
  /** Date and time at which the thermostat schedule was created. */
@@ -23274,6 +23331,8 @@ export interface Routes {
23274
23331
  max_override_period_minutes: number;
23275
23332
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23276
23333
  starts_at: string;
23334
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
23335
+ unstable_is_override_allowed?: boolean | undefined;
23277
23336
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23278
23337
  ends_at: string;
23279
23338
  /** Date and time at which the thermostat schedule was created. */
@@ -23309,6 +23368,8 @@ export interface Routes {
23309
23368
  max_override_period_minutes: number;
23310
23369
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23311
23370
  starts_at: string;
23371
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
23372
+ unstable_is_override_allowed?: boolean | undefined;
23312
23373
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23313
23374
  ends_at: string;
23314
23375
  /** Date and time at which the thermostat schedule was created. */
@@ -23335,6 +23396,7 @@ export interface Routes {
23335
23396
  starts_at?: string | undefined;
23336
23397
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
23337
23398
  ends_at?: string | undefined;
23399
+ is_override_allowed?: boolean | undefined;
23338
23400
  };
23339
23401
  commonParams: {};
23340
23402
  formData: {};
@@ -24136,7 +24198,8 @@ export interface Routes {
24136
24198
  cooling_set_point_fahrenheit?: number | undefined;
24137
24199
  /** Temperature to which the thermostat should heat (in °F). */
24138
24200
  heating_set_point_fahrenheit?: number | undefined;
24139
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24201
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
24202
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
24140
24203
  manual_override_allowed: boolean;
24141
24204
  };
24142
24205
  commonParams: {};
@@ -24701,7 +24764,8 @@ export interface Routes {
24701
24764
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
24702
24765
  /** Temperature to which the thermostat should heat (in °F). */
24703
24766
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
24704
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24767
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
24768
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
24705
24769
  manual_override_allowed?: boolean | undefined;
24706
24770
  } | undefined;
24707
24771
  /**
@@ -24729,7 +24793,8 @@ export interface Routes {
24729
24793
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
24730
24794
  /** Temperature to which the thermostat should heat (in °F). */
24731
24795
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
24732
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24796
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
24797
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
24733
24798
  manual_override_allowed?: boolean | undefined;
24734
24799
  } | undefined;
24735
24800
  available_climate_presets?: Array<{
@@ -24755,7 +24820,8 @@ export interface Routes {
24755
24820
  cooling_set_point_fahrenheit?: number | undefined;
24756
24821
  /** Temperature to which the thermostat should heat (in °F). */
24757
24822
  heating_set_point_fahrenheit?: number | undefined;
24758
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24823
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
24824
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
24759
24825
  manual_override_allowed: boolean;
24760
24826
  }> | undefined;
24761
24827
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -24773,6 +24839,8 @@ export interface Routes {
24773
24839
  max_override_period_minutes: number;
24774
24840
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
24775
24841
  starts_at: string;
24842
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
24843
+ unstable_is_override_allowed?: boolean | undefined;
24776
24844
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
24777
24845
  ends_at: string;
24778
24846
  /** Date and time at which the thermostat schedule was created. */
@@ -25211,7 +25279,8 @@ export interface Routes {
25211
25279
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
25212
25280
  /** Temperature to which the thermostat should heat (in °F). */
25213
25281
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
25214
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
25282
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
25283
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
25215
25284
  manual_override_allowed?: boolean | undefined;
25216
25285
  } | undefined;
25217
25286
  /**
@@ -25239,7 +25308,8 @@ export interface Routes {
25239
25308
  cooling_set_point_fahrenheit?: (number | undefined) | undefined;
25240
25309
  /** Temperature to which the thermostat should heat (in °F). */
25241
25310
  heating_set_point_fahrenheit?: (number | undefined) | undefined;
25242
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
25311
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
25312
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
25243
25313
  manual_override_allowed?: boolean | undefined;
25244
25314
  } | undefined;
25245
25315
  available_climate_presets?: Array<{
@@ -25265,7 +25335,8 @@ export interface Routes {
25265
25335
  cooling_set_point_fahrenheit?: number | undefined;
25266
25336
  /** Temperature to which the thermostat should heat (in °F). */
25267
25337
  heating_set_point_fahrenheit?: number | undefined;
25268
- /** Indicates whether a person at the thermostat can change the thermostat's settings. */
25338
+ /** Indicates whether a person at the thermostat can change the thermostat's settings.
25339
+ * @deprecated Use 'thermostat_schedule.is_override_allowed' */
25269
25340
  manual_override_allowed: boolean;
25270
25341
  }> | undefined;
25271
25342
  fallback_climate_preset_key?: (string | null) | undefined;
@@ -25283,6 +25354,8 @@ export interface Routes {
25283
25354
  max_override_period_minutes: number;
25284
25355
  /** Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
25285
25356
  starts_at: string;
25357
+ /** Indicates whether a person at the thermostat can change the thermostat's settings. */
25358
+ unstable_is_override_allowed?: boolean | undefined;
25286
25359
  /** Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format. */
25287
25360
  ends_at: string;
25288
25361
  /** Date and time at which the thermostat schedule was created. */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@seamapi/types",
3
- "version": "1.292.2",
3
+ "version": "1.293.1",
4
4
  "description": "TypeScript types for the Seam API.",
5
5
  "type": "module",
6
6
  "main": "index.js",
@@ -1,5 +1,5 @@
1
- export * from './assa_abloy_vostio.js'
2
- export * from './dormakaba_community.js'
1
+ export * from './assa-abloy-vostio.js'
2
+ export * from './dormakaba-community.js'
3
3
  export * from './latch.js'
4
4
  export * from './salto.js'
5
5
  export * from './visionline.js'
@@ -47,11 +47,13 @@ export const climate_preset = z.object({
47
47
  .number()
48
48
  .optional()
49
49
  .describe('Temperature to which the thermostat should heat (in °F).'),
50
- manual_override_allowed: z
51
- .boolean()
52
- .describe(
53
- "Indicates whether a person at the thermostat can change the thermostat's settings.",
54
- ),
50
+ manual_override_allowed: z.boolean().describe(
51
+ `
52
+ ---
53
+ deprecated: Use 'thermostat_schedule.is_override_allowed'
54
+ ---
55
+ Indicates whether a person at the thermostat can change the thermostat's settings.`,
56
+ ),
55
57
  })
56
58
 
57
59
  export type ClimatePreset = z.infer<typeof climate_preset>
@@ -32,6 +32,16 @@ export const thermostat_schedule = z
32
32
  .describe(
33
33
  'Date and time at which the thermostat schedule starts, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
34
34
  ),
35
+ unstable_is_override_allowed: z
36
+ .boolean()
37
+ .optional()
38
+ .describe(
39
+ `
40
+ ---
41
+ undocumented: Unstable
42
+ ---
43
+ Indicates whether a person at the thermostat can change the thermostat's settings.`,
44
+ ),
35
45
  ends_at: z
36
46
  .string()
37
47
  .datetime()