(params: {
flowId: string
rootDir?: string
currentDir?: string
priority?: 'now' | 'next' | 'later'
workload?: string
})
| 829 | } |
| 830 | |
| 831 | export async function recoverManagedAutonomyFlowPrompt(params: { |
| 832 | flowId: string |
| 833 | rootDir?: string |
| 834 | currentDir?: string |
| 835 | priority?: 'now' | 'next' | 'later' |
| 836 | workload?: string |
| 837 | }): Promise<QueuedCommand | null> { |
| 838 | return createOrRecoverManagedFlowStepCommand(params) |
| 839 | } |
| 840 | |
| 841 | export async function resumeManagedAutonomyFlowPrompt(params: { |
| 842 | flowId: string |
no test coverage detected