@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.js CHANGED
@@ -7692,7 +7692,10 @@ var StreamerServer = class {
7692
7692
  const projectPath = jsonlCwd ?? conv?.projectPath;
7693
7693
  if (!projectPath) {
7694
7694
  if (!conv && !jsonlPath) {
7695
- json(res, 404, { error: "Conversation not found" });
7695
+ json(res, 404, {
7696
+ error: "Conversation history file is missing; it can no longer be resumed",
7697
+ code: "history_file_missing"
7698
+ });
7696
7699
  return;
7697
7700
  }
7698
7701
  json(res, 400, { error: "Could not determine project path" });