Is it possible to configure dynamic visibility rules for agent script sections based on real-time queue attributes within the Architect flow?
The current implementation requires the script to be fully rendered before the queue entry, but we need to hide sensitive compliance steps unless the is_priority_call attribute is true. The payload structure below is being used, yet the visibility toggle remains static.
{
"script_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
"version": 2,
"sections": [
{
"id": "sec_compliance_01",
"visibility_rule": "attribute.is_priority_call == true"
}
]
}
This environment is EU-FR. The documentation suggests attribute-based filtering, but the UI does not reflect the conditional logic during runtime.