(chain: string[], workflowId: string)
| 47 | * Builds the next call chain by appending the current workflow ID. |
| 48 | */ |
| 49 | export function buildNextCallChain(chain: string[], workflowId: string): string[] { |
| 50 | return [...chain, workflowId] |
| 51 | } |
no outgoing calls
no test coverage detected