mirror of
https://github.com/domfelipe/vibeflow-n8n.git
synced 2026-08-07 06:36:42 +00:00
Add VF010-VF013, structural outcome contracts, adversarial fixtures, documentation, and Friday release materials.
29 lines
870 B
JSON
29 lines
870 B
JSON
{
|
|
"name": "Unsafe refund without outcome contract",
|
|
"nodes": [
|
|
{
|
|
"id": "webhook",
|
|
"name": "Public refund webhook",
|
|
"type": "n8n-nodes-base.webhook",
|
|
"parameters": { "authentication": "none", "path": "refund" }
|
|
},
|
|
{
|
|
"id": "refund",
|
|
"name": "Issue refund",
|
|
"type": "n8n-nodes-base.httpRequest",
|
|
"onError": "continueErrorOutput",
|
|
"parameters": { "method": "POST", "url": "https://payments.invalid/refund" }
|
|
},
|
|
{
|
|
"id": "swallow",
|
|
"name": "Swallow refund failure",
|
|
"type": "n8n-nodes-base.noOp",
|
|
"parameters": {}
|
|
}
|
|
],
|
|
"connections": {
|
|
"Public refund webhook": { "main": [[{ "node": "Issue refund", "type": "main", "index": 0 }]] },
|
|
"Issue refund": { "main": [[], [{ "node": "Swallow refund failure", "type": "main", "index": 0 }]] }
|
|
},
|
|
"settings": {}
|
|
}
|