This commit is contained in:
2026-05-17 12:43:53 -07:00
commit 7c8def0aaa
7507 changed files with 1419399 additions and 0 deletions

17
dist/tools/memory-api.d.ts vendored Normal file
View File

@@ -0,0 +1,17 @@
export interface MemoryEntry {
key: string;
type: string;
value: string;
}
export interface MemoryInput {
key: string;
type: string;
value: string;
}
export declare function toEntry(input: MemoryInput): MemoryEntry;
export declare function saveMemoryToStore(sessionKey: string, input: MemoryInput): {
saved: true;
entry: MemoryEntry;
};
export declare function listMemoryFromStore(sessionKey: string): MemoryEntry[];
export declare function clearMemoryStore(sessionKey: string): void;