@ethosagent/core 0.4.10 → 0.4.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.ts CHANGED
@@ -697,6 +697,7 @@ declare class InMemorySessionStore implements SessionStore {
697
697
  }>;
698
698
  recordCompactionTurn(sessionId: string, turnNumber: number): Promise<void>;
699
699
  pruneOldSessions(olderThan: Date): Promise<number>;
700
+ undoTurns(_sessionId: string, _n: number): Promise<number>;
700
701
  vacuum(): Promise<void>;
701
702
  }
702
703
 
package/dist/index.js CHANGED
@@ -921,6 +921,9 @@ var InMemorySessionStore = class {
921
921
  }
922
922
  return count;
923
923
  }
924
+ async undoTurns(_sessionId, _n) {
925
+ return 0;
926
+ }
924
927
  async vacuum() {
925
928
  }
926
929
  };