(
id: string,
agentState: unknown,
expectedVersion: number,
namespace: string
)
| 48 | } |
| 49 | |
| 50 | updateSessionAgentState( |
| 51 | id: string, |
| 52 | agentState: unknown, |
| 53 | expectedVersion: number, |
| 54 | namespace: string |
| 55 | ): VersionedUpdateResult<unknown | null> { |
| 56 | return updateSessionAgentState(this.db, id, agentState, expectedVersion, namespace) |
| 57 | } |
| 58 | |
| 59 | setSessionTodos(id: string, todos: unknown, todosUpdatedAt: number, namespace: string): boolean { |
| 60 | return setSessionTodos(this.db, id, todos, todosUpdatedAt, namespace) |
no test coverage detected