repositories
loading repo index
repositories
loading repo index
repository
loading code, commits, and activity
public Clawd ADK gateway launch mirror
stars
latest
clone command
git clone gitlawb://did:key:z6Mkq5mY...iFZ5/my-project-publ...git clone gitlawb://did:key:z6Mkq5mY.../my-project-publ...2fa351d6docs: add automaton and perps launch sources16d ago| #1 | export interface HistoryManager { |
| #2 | addHistory( |
| #3 | memoryId: string, |
| #4 | previousValue: string | null, |
| #5 | newValue: string | null, |
| #6 | action: string, |
| #7 | createdAt?: string, |
| #8 | updatedAt?: string, |
| #9 | isDeleted?: number, |
| #10 | ): Promise<void>; |
| #11 | getHistory(memoryId: string): Promise<any[]>; |
| #12 | reset(): Promise<void>; |
| #13 | close(): void; |
| #14 | } |
| #15 |