Keymaster warning after upgrade

I have keymaster and it send verbal notifications to various speakers around the house, or at least it did.

Here’s the code in scripts that I have been using and up until today was working perfectly.

File_editor_–Home_Assistant-_2022-09-13_17.50.43

When some one used there code to unlock the door it would say “xxx is home” or “xxx is here”

Now it does nothing an throws up this warning.

Settings_–Home_Assistant-_2022-09-13_17.50.29

Any ideas, I’ve been on this for hours and the fact that it worked is so frustrating.

Thanks in advance.

Check if the service is renamed to something else as old_name_1, it happened to me for cover service i implemented using script

Thank you for that, I am very new to HA, where would I find those services? Thanks

Cracked it, changed the volume up code and it now works… New code is

keymaster_front_door_lock_manual_notify:
  mode: parallel
  sequence:
    - service: media_player.volume_set
      data:
        volume_level: 0.7
      target:
        entity_id:
            - media_player.dining_room_speaker
            - media_player.living_room_display
            - media_player.office_display
            - media_player.spa_room_speaker
    - service: tts.cloud_say
      data:
        entity_id: 
            - media_player.dining_room_speaker
            - media_player.living_room_display
            - media_player.office_display
            - media_player.spa_room_speaker
        message: "{{ message }}"

Thank you