mirror of
https://github.com/qwibitai/nanoclaw.git
synced 2026-07-06 18:52:03 +08:00
0626dcec92
These are leftovers from the April-2026 inbound/outbound session-DB split, marked @deprecated "kept temporarily for test compatibility": sessionDbPath, openSessionDb, writeSystemResponse (session-manager), getStuckProcessingIds (session-db, superseded by getProcessingClaims), getSessionDb (container connection + barrel re-export), and the dead registerResponseHandler/onShutdown re-exports from index.ts. The only real callers are two dev scripts, repointed to inboundDbPath / getInboundDb. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
20 lines
504 B
TypeScript
20 lines
504 B
TypeScript
export {
|
|
getInboundDb,
|
|
getOutboundDb,
|
|
initTestSessionDb,
|
|
closeSessionDb,
|
|
touchHeartbeat,
|
|
clearStaleProcessingAcks,
|
|
} from './connection.js';
|
|
export {
|
|
getPendingMessages,
|
|
markProcessing,
|
|
markCompleted,
|
|
markFailed,
|
|
getMessageIn,
|
|
findQuestionResponse,
|
|
} from './messages-in.js';
|
|
export type { MessageInRow } from './messages-in.js';
|
|
export { writeMessageOut, getUndeliveredMessages } from './messages-out.js';
|
|
export type { MessageOutRow, WriteMessageOut } from './messages-out.js';
|