Monorepo consolidation: workspace, shared types, transport plans, docker/swam assets
This commit is contained in:
27
runner/config/saga_on_event.json
Normal file
27
runner/config/saga_on_event.json
Normal file
@@ -0,0 +1,27 @@
|
||||
{
|
||||
"specVersion": "1.1",
|
||||
"id": "noop_saga",
|
||||
"name": "noop_saga",
|
||||
"inputs": [
|
||||
{ "name": "saga_state", "type": "Any" },
|
||||
{ "name": "event", "type": "Any" }
|
||||
],
|
||||
"nodes": [
|
||||
{
|
||||
"id": "const",
|
||||
"type": "Const",
|
||||
"data": {
|
||||
"value": {
|
||||
"new_saga_state": {},
|
||||
"work_items": [],
|
||||
"schedules": []
|
||||
}
|
||||
}
|
||||
},
|
||||
{ "id": "output", "type": "Output", "data": {} }
|
||||
],
|
||||
"edges": [
|
||||
{ "id": "e1", "source": "const", "sourceHandle": "out", "target": "output", "targetHandle": "value" }
|
||||
],
|
||||
"outputNodeId": "output"
|
||||
}
|
||||
Reference in New Issue
Block a user