sincce the update to the new HACS integration Microsoft Edge TTS v0.7.2.
I can not use a msg.payload to send tts text to an action node with edge tts
I did create in the version before a node in nodered:

with makeMSG:
msg.payload ={
data: {
message:'Nood Red is opnieuw opgestart'
},
};
return msg;
and do send this to an action node to speak.
and in the action node data field:
{
"entity_id": [
"media_player.google_home_overloop",
"media_player.nest_zithoek"
]
}
I know I do need to change the entity_id now in media_player_entity_id
This is not possible anymore in the latest new version v0.7.2
Giving error:
name: "HomeAssistantError" message: "required key not provided @ data['message']" stack: string HomeAssistantError: required key not provided @ data['message'] at getErrorData (/data/node_modules/node-red-contrib-home-assistant-websocket/dist/common/errors/inputErrorHandler.js:54:13) at inputErrorHandler (/data/node_modules/node-red-contrib-home-assistant-websocket/dist/common/errors/inputErrorHandler.js:74:38) at ActionController._InputOutputController_preOnInput (/data/node_modules/node-red-contrib-home-assistant-websocket/dist/common/controllers/InputOutputController.js:69:51)
Any ideas? Or is it just a bug?
I did return to v0.1.0


