hoffmation-base 3.0.0-alpha.30 → 3.0.0-alpha.31

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 (103) hide show
  1. package/lib/models/action/baseAction.d.ts +4 -0
  2. package/lib/models/action/baseAction.js +10 -0
  3. package/lib/models/action/humiditySensorChangeAction.d.ts +16 -0
  4. package/lib/models/action/humiditySensorChangeAction.js +15 -0
  5. package/lib/models/action/index.d.ts +1 -0
  6. package/lib/models/action/index.js +5 -0
  7. package/lib/models/action/motionSensorAction.d.ts +16 -0
  8. package/lib/models/action/motionSensorAction.js +15 -0
  9. package/lib/models/action/presenceGroupFirstEnterAction.d.ts +7 -0
  10. package/lib/models/action/presenceGroupFirstEnterAction.js +13 -0
  11. package/lib/models/action/presenceGroupLastLeftAction.d.ts +7 -0
  12. package/lib/models/action/presenceGroupLastLeftAction.js +13 -0
  13. package/lib/models/action/shutterPositionChangedAction.d.ts +13 -0
  14. package/lib/models/action/shutterPositionChangedAction.js +15 -0
  15. package/lib/models/action/temperatureSensorChangeAction.d.ts +16 -0
  16. package/lib/models/action/temperatureSensorChangeAction.js +15 -0
  17. package/lib/models/command/ShutterSetLevelCommand.d.ts +1 -1
  18. package/lib/models/command/ShutterSetLevelCommand.js +1 -1
  19. package/lib/models/command/WindowRestoreDesiredPositionCommand.d.ts +1 -1
  20. package/lib/models/command/WindowRestoreDesiredPositionCommand.js +1 -1
  21. package/lib/models/command/WindowSetDesiredPositionCommand.d.ts +1 -1
  22. package/lib/models/command/WindowSetDesiredPositionCommand.js +1 -1
  23. package/lib/models/command/WindowSetRolloByWeatherStatusCommand.d.ts +1 -1
  24. package/lib/models/command/WindowSetRolloByWeatherStatusCommand.js +1 -1
  25. package/lib/models/command/actuatorSetStateCommand.d.ts +1 -1
  26. package/lib/models/command/actuatorSetStateCommand.js +1 -1
  27. package/lib/models/command/actuatorToggleCommand.d.ts +1 -1
  28. package/lib/models/command/actuatorToggleCommand.js +1 -1
  29. package/lib/models/command/actuatorWriteStateToDeviceCommand.d.ts +1 -1
  30. package/lib/models/command/actuatorWriteStateToDeviceCommand.js +1 -1
  31. package/lib/models/command/baseCommand.d.ts +1 -1
  32. package/lib/models/command/baseCommand.js +2 -2
  33. package/lib/models/command/blockAutomaticCommand.d.ts +1 -1
  34. package/lib/models/command/blockAutomaticCommand.js +1 -1
  35. package/lib/models/command/blockAutomaticLiftBlockCommand.d.ts +1 -1
  36. package/lib/models/command/blockAutomaticLiftBlockCommand.js +1 -1
  37. package/lib/models/command/blockAutomaticUntilCommand.d.ts +1 -1
  38. package/lib/models/command/blockAutomaticUntilCommand.js +1 -1
  39. package/lib/models/command/commandType.d.ts +6 -0
  40. package/lib/models/command/commandType.js +6 -0
  41. package/lib/models/command/dimmerSetLightCommand.d.ts +1 -1
  42. package/lib/models/command/dimmerSetLightCommand.js +1 -1
  43. package/lib/models/command/floorSetAllShuttersCommand.d.ts +1 -1
  44. package/lib/models/command/floorSetAllShuttersCommand.js +1 -1
  45. package/lib/models/command/lampSetLightCommand.d.ts +1 -1
  46. package/lib/models/command/lampSetLightCommand.js +1 -1
  47. package/lib/models/command/lampSetTimeBasedCommand.d.ts +1 -1
  48. package/lib/models/command/lampSetTimeBasedCommand.js +1 -1
  49. package/lib/models/command/lampToggleLightCommand.d.ts +1 -1
  50. package/lib/models/command/lampToggleLightCommand.js +1 -1
  51. package/lib/models/command/ledSetLightCommand.d.ts +1 -1
  52. package/lib/models/command/ledSetLightCommand.js +1 -1
  53. package/lib/models/command/lightGroupSwitchTimeConditionalCommand.d.ts +1 -1
  54. package/lib/models/command/lightGroupSwitchTimeConditionalCommand.js +1 -1
  55. package/lib/models/command/restoreTargetAutomaticValueCommand.d.ts +1 -1
  56. package/lib/models/command/restoreTargetAutomaticValueCommand.js +1 -1
  57. package/lib/models/command/roomRestoreLightCommand.d.ts +1 -1
  58. package/lib/models/command/roomRestoreLightCommand.js +1 -1
  59. package/lib/models/command/roomRestoreShutterPositionCommand.d.ts +1 -1
  60. package/lib/models/command/roomRestoreShutterPositionCommand.js +1 -1
  61. package/lib/models/command/roomSetLightTimeBasedCommand.d.ts +1 -1
  62. package/lib/models/command/roomSetLightTimeBasedCommand.js +1 -1
  63. package/lib/models/command/shutterSunriseUpCommand.d.ts +1 -1
  64. package/lib/models/command/shutterSunriseUpCommand.js +1 -1
  65. package/lib/models/command/shutterSunsetDownCommand.d.ts +1 -1
  66. package/lib/models/command/shutterSunsetDownCommand.js +1 -1
  67. package/lib/models/command/wledSetLightCommand.d.ts +1 -1
  68. package/lib/models/command/wledSetLightCommand.js +1 -1
  69. package/lib/models/index.d.ts +1 -0
  70. package/lib/models/index.js +1 -0
  71. package/lib/server/devices/baseDeviceInterfaces/iHumiditySensor.d.ts +2 -1
  72. package/lib/server/devices/baseDeviceInterfaces/iMotionSensor.d.ts +2 -1
  73. package/lib/server/devices/baseDeviceInterfaces/iShutter.d.ts +1 -1
  74. package/lib/server/devices/baseDeviceInterfaces/iTemperatureSensor.d.ts +2 -1
  75. package/lib/server/devices/blueIris/cameraDevice.d.ts +2 -1
  76. package/lib/server/devices/blueIris/cameraDevice.js +2 -1
  77. package/lib/server/devices/dachs/dachsTemperatureSensor.d.ts +2 -1
  78. package/lib/server/devices/dachs/dachsTemperatureSensor.js +3 -2
  79. package/lib/server/devices/groups/Window.d.ts +2 -1
  80. package/lib/server/devices/groups/Window.js +4 -4
  81. package/lib/server/devices/groups/presenceGroup.d.ts +5 -2
  82. package/lib/server/devices/groups/presenceGroup.js +36 -39
  83. package/lib/server/devices/hmIPDevices/hmIpBewegung.d.ts +2 -1
  84. package/lib/server/devices/hmIPDevices/hmIpBewegung.js +2 -1
  85. package/lib/server/devices/hmIPDevices/hmIpHeizgruppe.d.ts +4 -2
  86. package/lib/server/devices/hmIPDevices/hmIpHeizgruppe.js +6 -4
  87. package/lib/server/devices/hmIPDevices/hmIpPraezenz.d.ts +8 -7
  88. package/lib/server/devices/hmIPDevices/hmIpPraezenz.js +10 -9
  89. package/lib/server/devices/hmIPDevices/hmIpRoll.js +2 -1
  90. package/lib/server/devices/sharedFunctions/lampUtils.d.ts +10 -2
  91. package/lib/server/devices/sharedFunctions/lampUtils.js +29 -5
  92. package/lib/server/devices/wledDevice.js +7 -0
  93. package/lib/server/devices/zigbee/BaseDevices/zigbeeDimmer.js +7 -0
  94. package/lib/server/devices/zigbee/BaseDevices/zigbeeMotionSensor.d.ts +3 -2
  95. package/lib/server/devices/zigbee/BaseDevices/zigbeeMotionSensor.js +2 -1
  96. package/lib/server/devices/zigbee/BaseDevices/zigbeeShutter.d.ts +1 -1
  97. package/lib/server/devices/zigbee/BaseDevices/zigbeeShutter.js +2 -1
  98. package/lib/server/devices/zigbee/zigbeeSonoffTemp.d.ts +4 -2
  99. package/lib/server/devices/zigbee/zigbeeSonoffTemp.js +6 -4
  100. package/lib/server/services/ac/ac-device.js +3 -3
  101. package/lib/server/services/govee/own-govee-device.js +7 -0
  102. package/lib/tsconfig.tsbuildinfo +1 -1
  103. package/package.json +1 -1
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hoffmation-base",
3
3
  "description": "Base Libraries and functions for own Hoffmation projects",
4
- "version": "3.0.0-alpha.30",
4
+ "version": "3.0.0-alpha.31",
5
5
  "files": [
6
6
  "lib/**/*"
7
7
  ],