@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
@@ -4668,6 +4668,12 @@ export default {
4668
4668
  format: 'uuid',
4669
4669
  type: 'string',
4670
4670
  },
4671
+ unstable_is_override_allowed: {
4672
+ description:
4673
+ "Indicates whether a person at the thermostat can change the thermostat's settings.",
4674
+ type: 'boolean',
4675
+ 'x-undocumented': 'Unstable',
4676
+ },
4671
4677
  },
4672
4678
  required: [
4673
4679
  'thermostat_schedule_id',
@@ -4740,9 +4746,12 @@ export default {
4740
4746
  type: 'string',
4741
4747
  },
4742
4748
  manual_override_allowed: {
4749
+ deprecated: true,
4743
4750
  description:
4744
4751
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4745
4752
  type: 'boolean',
4753
+ 'x-deprecated':
4754
+ "Use 'thermostat_schedule.is_override_allowed'",
4746
4755
  },
4747
4756
  name: {
4748
4757
  default: null,
@@ -4835,9 +4844,12 @@ export default {
4835
4844
  type: 'string',
4836
4845
  },
4837
4846
  manual_override_allowed: {
4847
+ deprecated: true,
4838
4848
  description:
4839
4849
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4840
4850
  type: 'boolean',
4851
+ 'x-deprecated':
4852
+ "Use 'thermostat_schedule.is_override_allowed'",
4841
4853
  },
4842
4854
  name: {
4843
4855
  default: null,
@@ -4908,9 +4920,12 @@ export default {
4908
4920
  type: 'string',
4909
4921
  },
4910
4922
  manual_override_allowed: {
4923
+ deprecated: true,
4911
4924
  description:
4912
4925
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
4913
4926
  type: 'boolean',
4927
+ 'x-deprecated':
4928
+ "Use 'thermostat_schedule.is_override_allowed'",
4914
4929
  },
4915
4930
  name: {
4916
4931
  default: null,
@@ -5470,6 +5485,12 @@ export default {
5470
5485
  format: 'uuid',
5471
5486
  type: 'string',
5472
5487
  },
5488
+ unstable_is_override_allowed: {
5489
+ description:
5490
+ "Indicates whether a person at the thermostat can change the thermostat's settings.",
5491
+ type: 'boolean',
5492
+ 'x-undocumented': 'Unstable',
5493
+ },
5473
5494
  },
5474
5495
  required: [
5475
5496
  'thermostat_schedule_id',
@@ -15895,11 +15916,7 @@ export default {
15895
15916
  enum: ['off', 'heat', 'cool', 'heat_cool'],
15896
15917
  type: 'string',
15897
15918
  },
15898
- manual_override_allowed: {
15899
- description:
15900
- "Indicates whether a person at the thermostat can change the thermostat's settings.",
15901
- type: 'boolean',
15902
- },
15919
+ manual_override_allowed: { default: true, type: 'boolean' },
15903
15920
  name: {
15904
15921
  default: null,
15905
15922
  description:
@@ -15908,11 +15925,7 @@ export default {
15908
15925
  type: 'string',
15909
15926
  },
15910
15927
  },
15911
- required: [
15912
- 'device_id',
15913
- 'climate_preset_key',
15914
- 'manual_override_allowed',
15915
- ],
15928
+ required: ['device_id', 'climate_preset_key'],
15916
15929
  type: 'object',
15917
15930
  },
15918
15931
  },
@@ -16623,6 +16636,7 @@ export default {
16623
16636
  'Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
16624
16637
  type: 'string',
16625
16638
  },
16639
+ is_override_allowed: { default: false, type: 'boolean' },
16626
16640
  max_override_period_minutes: {
16627
16641
  default: 0,
16628
16642
  description:
@@ -16884,6 +16898,7 @@ export default {
16884
16898
  'Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
16885
16899
  type: 'string',
16886
16900
  },
16901
+ is_override_allowed: { type: 'boolean' },
16887
16902
  max_override_period_minutes: {
16888
16903
  description:
16889
16904
  "Number of minutes for which a person at the thermostat 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).",
@@ -16959,6 +16974,7 @@ export default {
16959
16974
  'Date and time at which the thermostat schedule ends, in [ISO 8601](https://www.iso.org/iso-8601-date-and-time-format.html) format.',
16960
16975
  type: 'string',
16961
16976
  },
16977
+ is_override_allowed: { type: 'boolean' },
16962
16978
  max_override_period_minutes: {
16963
16979
  description:
16964
16980
  "Number of minutes for which a person at the thermostat 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).",
@@ -17363,9 +17379,12 @@ export default {
17363
17379
  type: 'string',
17364
17380
  },
17365
17381
  manual_override_allowed: {
17382
+ deprecated: true,
17366
17383
  description:
17367
17384
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
17368
17385
  type: 'boolean',
17386
+ 'x-deprecated':
17387
+ "Use 'thermostat_schedule.is_override_allowed'",
17369
17388
  },
17370
17389
  name: {
17371
17390
  default: null,
@@ -17467,9 +17486,12 @@ export default {
17467
17486
  type: 'string',
17468
17487
  },
17469
17488
  manual_override_allowed: {
17489
+ deprecated: true,
17470
17490
  description:
17471
17491
  "Indicates whether a person at the thermostat can change the thermostat's settings.",
17472
17492
  type: 'boolean',
17493
+ 'x-deprecated':
17494
+ "Use 'thermostat_schedule.is_override_allowed'",
17473
17495
  },
17474
17496
  name: {
17475
17497
  default: null,