hoffmation-base 3.0.0-alpha.2 → 3.0.0-alpha.20

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 (74) hide show
  1. package/lib/models/command/ShutterSetLevelCommand.js +2 -1
  2. package/lib/models/command/WindowRestoreDesiredPositionCommand.js +1 -0
  3. package/lib/models/command/WindowSetDesiredPositionCommand.js +1 -0
  4. package/lib/models/command/WindowSetRolloByWeatherStatusCommand.js +1 -0
  5. package/lib/models/command/actuatorSetStateCommand.js +3 -2
  6. package/lib/models/command/actuatorToggleCommand.js +2 -1
  7. package/lib/models/command/actuatorWriteStateToDeviceCommand.d.ts +1 -1
  8. package/lib/models/command/actuatorWriteStateToDeviceCommand.js +7 -2
  9. package/lib/models/command/baseCommand.d.ts +4 -1
  10. package/lib/models/command/baseCommand.js +25 -6
  11. package/lib/models/command/blockAutomaticCommand.d.ts +17 -0
  12. package/lib/models/command/blockAutomaticCommand.js +22 -0
  13. package/lib/models/command/blockAutomaticLiftBlockCommand.d.ts +12 -0
  14. package/lib/models/command/blockAutomaticLiftBlockCommand.js +17 -0
  15. package/lib/models/command/blockAutomaticUntilCommand.d.ts +17 -0
  16. package/lib/models/command/blockAutomaticUntilCommand.js +22 -0
  17. package/lib/models/command/commandSource.js +1 -0
  18. package/lib/models/command/commandType.d.ts +3 -0
  19. package/lib/models/command/commandType.js +3 -0
  20. package/lib/models/command/dimmerSetLightCommand.js +6 -5
  21. package/lib/models/command/index.d.ts +3 -0
  22. package/lib/models/command/index.js +7 -1
  23. package/lib/models/command/lampSetLightCommand.js +2 -1
  24. package/lib/models/command/lampSetTimeBasedCommand.js +1 -1
  25. package/lib/models/command/lampToggleLightCommand.js +1 -1
  26. package/lib/models/command/ledSetLightCommand.js +2 -1
  27. package/lib/models/command/lightGroupSwitchTimeConditionalCommand.js +1 -0
  28. package/lib/models/command/restoreTargetAutomaticValueCommand.js +2 -1
  29. package/lib/models/command/roomRestoreLightCommand.js +1 -0
  30. package/lib/models/command/roomRestoreShutterPositionCommand.js +1 -0
  31. package/lib/models/command/shutterSunriseUpCommand.js +1 -0
  32. package/lib/models/command/shutterSunsetDownCommand.js +1 -0
  33. package/lib/models/command/wledSetLightCommand.d.ts +1 -0
  34. package/lib/models/command/wledSetLightCommand.js +4 -0
  35. package/lib/models/deviceSettings/acSettings.d.ts +7 -1
  36. package/lib/models/deviceSettings/acSettings.js +11 -4
  37. package/lib/models/deviceSettings/actuatorSettings.d.ts +17 -0
  38. package/lib/models/deviceSettings/actuatorSettings.js +23 -5
  39. package/lib/models/deviceSettings/ledSettings.js +10 -18
  40. package/lib/models/deviceSettings/wledSettings.js +5 -13
  41. package/lib/models/groupSettings/heatGroupSettings.d.ts +4 -0
  42. package/lib/models/groupSettings/heatGroupSettings.js +4 -0
  43. package/lib/models/rooms/RoomBase.js +2 -2
  44. package/lib/server/devices/IoBrokerBaseDevice.d.ts +2 -0
  45. package/lib/server/devices/IoBrokerBaseDevice.js +12 -1
  46. package/lib/server/devices/baseDeviceInterfaces/iAcDevice.d.ts +0 -5
  47. package/lib/server/devices/groups/heatGroup.d.ts +1 -0
  48. package/lib/server/devices/groups/heatGroup.js +2 -3
  49. package/lib/server/devices/groups/lightGroup.d.ts +2 -2
  50. package/lib/server/devices/groups/lightGroup.js +11 -10
  51. package/lib/server/devices/hmIPDevices/hmIpLampe.js +1 -2
  52. package/lib/server/devices/hmIPDevices/hmIpRoll.js +2 -2
  53. package/lib/server/devices/sharedFunctions/lampUtils.d.ts +1 -0
  54. package/lib/server/devices/sharedFunctions/lampUtils.js +30 -15
  55. package/lib/server/devices/wledDevice.d.ts +1 -0
  56. package/lib/server/devices/wledDevice.js +13 -8
  57. package/lib/server/devices/zigbee/BaseDevices/ZigbeeActuator.js +1 -2
  58. package/lib/server/devices/zigbee/BaseDevices/zigbeeDevice.d.ts +0 -2
  59. package/lib/server/devices/zigbee/BaseDevices/zigbeeDevice.js +9 -18
  60. package/lib/server/devices/zigbee/BaseDevices/zigbeeDimmer.js +8 -8
  61. package/lib/server/devices/zigbee/BaseDevices/zigbeeLedRGBCCT.d.ts +2 -1
  62. package/lib/server/devices/zigbee/BaseDevices/zigbeeLedRGBCCT.js +6 -4
  63. package/lib/server/devices/zigbee/BaseDevices/zigbeeShutter.js +3 -3
  64. package/lib/server/services/ac/ac-device.d.ts +0 -5
  65. package/lib/server/services/ac/ac-device.js +17 -18
  66. package/lib/server/services/ac/daikin-service.js +2 -1
  67. package/lib/server/services/ac/own-daikin-device.js +12 -4
  68. package/lib/server/services/api/api-service.d.ts +65 -2
  69. package/lib/server/services/api/api-service.js +108 -18
  70. package/lib/server/services/blockAutomaticHandler.d.ts +6 -8
  71. package/lib/server/services/blockAutomaticHandler.js +11 -14
  72. package/lib/server/services/govee/own-govee-device.js +4 -7
  73. package/lib/tsconfig.tsbuildinfo +1 -1
  74. 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.2",
4
+ "version": "3.0.0-alpha.20",
5
5
  "files": [
6
6
  "lib/**/*"
7
7
  ],