fix: recover interrupted paired turn attempts

This commit is contained in:
ejclaw
2026-05-27 05:57:29 +09:00
parent c4e0e7459f
commit 0177437a8a
5 changed files with 283 additions and 1 deletions

View File

@@ -117,6 +117,7 @@ export {
listPairedWorkspacesForTask,
markPairedTurnRunning,
refreshPairedTaskExecutionLease,
recoverInterruptedPairedTurnAttemptsForService,
releasePairedTaskExecutionLease,
reservePairedTurnReservation,
setChannelOwnerLease,
@@ -133,7 +134,10 @@ export type {
MemorySourceKind,
RecallMemoryQuery,
} from './db/memories.js';
export type { PairedTurnAttemptRecord } from './db/paired-turn-attempts.js';
export type {
InterruptedPairedTurnAttemptRecoveryCandidate,
PairedTurnAttemptRecord,
} from './db/paired-turn-attempts.js';
export type { PairedTurnRecord } from './db/paired-turns.js';
export type { ChatInfo } from './db/messages.js';
export type { WorkItem } from './db/work-items.js';