mirror of
https://github.com/openclaw/openclaw.git
synced 2026-07-21 00:51:36 +00:00
* refactor(deadcode): trim auto-reply and CLI exports * refactor(deadcode): trim cron and task exports * refactor(deadcode): trim fleet and process exports * test(deadcode): exercise live task and process seams * test(fleet): cover stream redaction through owner module * refactor(security): trim dead internal exports * refactor(secrets): trim dead internal exports * refactor(deadcode): trim remaining src exports * refactor(deadcode): remove test-only runtime exports * refactor(deadcode): trim pairing test exports * refactor(deadcode): reconcile refreshed baseline * test(auto-reply): deduplicate queue state imports
22 lines
569 B
TypeScript
22 lines
569 B
TypeScript
// Internal task-flow registry facade for runtime modules.
|
|
export {
|
|
createTaskFlowForTask,
|
|
createManagedTaskFlow,
|
|
deleteTaskFlowRecordById,
|
|
ensureTaskFlowRegistryReady,
|
|
failFlow,
|
|
finishFlow,
|
|
getTaskFlowById,
|
|
listTaskFlowRecords,
|
|
requestFlowCancel,
|
|
reloadTaskFlowRegistryFromStore,
|
|
resolveTaskFlowForLookupToken,
|
|
resetTaskFlowRegistryForTests,
|
|
resumeFlow,
|
|
setFlowWaiting,
|
|
syncFlowFromTaskResult,
|
|
updateFlowRecordByIdExpectedRevision,
|
|
} from "./task-flow-registry.js";
|
|
|
|
export type { TaskFlowUpdateResult } from "./task-flow-registry.js";
|