Notify when a service goes from critical to warning

Hi, I got working notifications in my setup with director. They don’t seem however notify if a service goes back down from critical to warning.
I don’t see any states or transitions director offers here that might be the correct one … anyone got a hint for me?

My notification works from critical to warning.

apply Notification "TEST" to Service {
    command = "service-notification"
    interval = 0s
    assign where host.vars.enable_test_notification
    states = [ Critical, OK, Unknown, Warning ]
    types = [
        Acknowledgement,
        Custom,
        DowntimeEnd,
        DowntimeRemoved,
        DowntimeStart,
        Problem,
        Recovery
    ]
    users = [ "ME" ]
}

Ah, foud the issue.
That notification is only configured to alert on critical, not on warning. That seems to cause no notification if it goes down from critical to warning (but not all the way to ok). That’s not quite what i would expect but it’s not totally unreasonable either … hmm