@threadbase-sh/streamer 1.31.0 → 1.31.1

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.cjs CHANGED
@@ -7728,7 +7728,10 @@ var StreamerServer = class {
7728
7728
  const projectPath = jsonlCwd ?? conv?.projectPath;
7729
7729
  if (!projectPath) {
7730
7730
  if (!conv && !jsonlPath) {
7731
- json(res, 404, { error: "Conversation not found" });
7731
+ json(res, 404, {
7732
+ error: "Conversation history file is missing; it can no longer be resumed",
7733
+ code: "history_file_missing"
7734
+ });
7732
7735
  return;
7733
7736
  }
7734
7737
  json(res, 400, { error: "Could not determine project path" });