Hello everyone, I have a scenario where I would like to define multiple states as "requiredScenarioState". I create some data and want to allow a delete afterwards. But I also have a modify, where the delete can also happen afterwards. While the data doesn't exist, both are not allowed. So my create moves the scenario into the "created" state. The modify and the delete have "requiredScenarioState": "created". But after the modify, the scenario moves into "modified", so the delete is no longer possible. I solved it by creating two more or less identical copies of the delete, one with "requiredScenarioState": "created" and one with "requiredScenarioState": "modified", but it would be nice to be able to define something like "requiredScenarioState": "created|modified". Is that somehow possible? I found nothing in the docs, here or on GitHub