this is all of the changes now

This commit is contained in:
2026-02-18 18:43:42 -06:00
parent 77cf18c02f
commit a1b9b8d2b1
22 changed files with 619 additions and 535 deletions

View File

@@ -282,7 +282,7 @@ def test_conditional_workflow_branching(client: AttuneClient, test_pack):
"action": workflow["ref"],
"enabled": True,
"parameters": {
"condition": "{{ trigger.payload.condition }}",
"condition": "{{ event.payload.condition }}",
},
}
rule_response = client.post("/rules", json=rule_payload)
@@ -665,7 +665,7 @@ print(json.dumps({'result': result, 'step': 2}))
"action": workflow["ref"],
"enabled": True,
"parameters": {
"input_text": "{{ trigger.payload.text }}",
"input_text": "{{ event.payload.text }}",
},
}
rule_response = client.post("/rules", json=rule_payload)