mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-24 06:29:34 +00:00
Terminalize Gateway-backed async task records from the run result while preserving aborted, failed, cancelled, and lost outcomes.\n\nThanks @likewen-tech.
38 lines
1003 B
TypeScript
38 lines
1003 B
TypeScript
export {
|
|
cancelTaskById,
|
|
createTaskRecord,
|
|
deleteTaskRecordById,
|
|
ensureTaskRegistryReady,
|
|
resetTaskRegistryControlRuntimeForTests,
|
|
findLatestTaskForOwnerKey,
|
|
findLatestTaskForFlowId,
|
|
findLatestTaskForRelatedSessionKey,
|
|
findTaskByRunId,
|
|
finalizeTaskRunByRunId,
|
|
getTaskById,
|
|
getTaskRegistrySnapshot,
|
|
getTaskRegistrySummary,
|
|
listTaskRecords,
|
|
listTasksForFlowId,
|
|
listTasksForOwnerKey,
|
|
listTasksForRelatedSessionKey,
|
|
linkTaskToFlowById,
|
|
markTaskLostById,
|
|
markTaskRunningByRunId,
|
|
markTaskTerminalById,
|
|
markTaskTerminalByRunId,
|
|
maybeDeliverTaskTerminalUpdate,
|
|
recordTaskProgressByRunId,
|
|
resetTaskRegistryDeliveryRuntimeForTests,
|
|
resolveTaskForLookupToken,
|
|
resetTaskRegistryForTests,
|
|
isParentFlowLinkError,
|
|
setTaskRegistryControlRuntimeForTests,
|
|
setTaskRegistryDeliveryRuntimeForTests,
|
|
setTaskCleanupAfterById,
|
|
setTaskProgressById,
|
|
setTaskRunDeliveryStatusByRunId,
|
|
setTaskTimingById,
|
|
updateTaskNotifyPolicyById,
|
|
} from "./task-registry.js";
|