@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/cli.cjs CHANGED
@@ -146485,7 +146485,10 @@ var StreamerServer = class {
146485
146485
  const projectPath = jsonlCwd ?? conv?.projectPath;
146486
146486
  if (!projectPath) {
146487
146487
  if (!conv && !jsonlPath) {
146488
- json2(res, 404, { error: "Conversation not found" });
146488
+ json2(res, 404, {
146489
+ error: "Conversation history file is missing; it can no longer be resumed",
146490
+ code: "history_file_missing"
146491
+ });
146489
146492
  return;
146490
146493
  }
146491
146494
  json2(res, 400, { error: "Could not determine project path" });