TTS not working after update

Starting with 2022.7 tts notifications sent via HACS Alexa media player have stopped working. Setting the type to announce does work but tts does not. I’ve uninstalled the integration and removed it from HACS and reinstalled both. I have also updated to 2022.7.7

This does not work:

service: notify.alexa_media_office_echo
data:
  message: This is a test
  data:
    type: tts

This does work:

service: notify.alexa_media_office_echo
data:
  message: This is a test
  data:
    type: announce

I’m not seeing any errors in the logs.

Not sure if you’ve found a solution by now - I had to change my actions from

service: notify.mobile_app_dashboard
data_template:
  title: "{{ trigger.to_state.name }} now {{ trigger.to_state.state }}"
  message: TTS
  data:
    ttl: 0
    priority: high
    channel: alarm_stream

to this

service: notify.mobile_app_dashboard
data:
  message: TTS
  data:
    tts_text: "{{ trigger.to_state.name }} now {{ trigger.to_state.state }}"
    media_stream: alarm_stream
    priority: high

Note that there is no need for using ‘data_template’ any more, it works fine with the ‘data’ definition.