refactor(extensions): remove unused private helpers

This commit is contained in:
Vincent Koc
2026-06-18 14:53:30 +08:00
parent 48c63fcb27
commit 2a0aeb59be
3 changed files with 0 additions and 18 deletions

View File

@@ -165,16 +165,6 @@ export async function writeMemoryCoreWorkspaceEntry(
);
}
export async function deleteMemoryCoreWorkspaceEntry(params: {
namespace: string;
workspaceDir: string;
key: string;
}): Promise<boolean> {
return await openWorkspaceStore(params.namespace).delete(
memoryCoreWorkspaceEntryKey(params.workspaceDir, params.key),
);
}
export async function clearMemoryCoreWorkspaceNamespace(params: {
namespace: string;
workspaceDir: string;

View File

@@ -2526,10 +2526,6 @@ export function resolveShortTermRecallStorePath(workspaceDir: string): string {
return resolveStorePath(workspaceDir);
}
export function resolveShortTermPhaseSignalStorePath(workspaceDir: string): string {
return resolvePhaseSignalPath(workspaceDir);
}
export function resolveShortTermRecallLockPath(workspaceDir: string): string {
return resolveLockPath(workspaceDir);
}

View File

@@ -104,10 +104,6 @@ export async function claimRecentInboundMessageDelivery(
return claim.kind;
}
export async function claimRecentInboundMessage(key: string): Promise<boolean> {
return (await claimRecentInboundMessageDelivery(key)) === "claimed";
}
export async function commitRecentInboundMessage(key: string): Promise<void> {
await claimableInboundMessages.commit(key);
}