v2.2 extended analysis render update

This commit is contained in:
2026-06-15 16:37:19 +02:00
parent 71bcfe65d7
commit bd44049e5e
37 changed files with 1964 additions and 836 deletions

View File

@@ -0,0 +1,30 @@
[
{
"name": "Success Path (Order to Shipment)",
"description": "The standard customer journey: Order Placement -> Availability Check -> Payment -> Shipment.",
"steps": [
"PLACE_ORDER",
"CHECK_AVAILABILITY->PENDING_PAYMENT",
"PAY_ORDER",
"SHIP_ORDER"
]
},
{
"name": "Immediate Cancellation",
"description": "User cancels the order immediately after payment.",
"steps": [
"PLACE_ORDER",
"CHECK_AVAILABILITY->PENDING_PAYMENT",
"PAY_ORDER",
"CANCEL_ORDER"
]
},
{
"name": "Stock Out Flow",
"description": "Order is cancelled because items are out of stock.",
"steps": [
"PLACE_ORDER",
"CHECK_AVAILABILITY->CANCELLED"
]
}
]