@streamapp/stream 0.0.5 → 0.0.6

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/bin/stream.mjs CHANGED
@@ -70,7 +70,7 @@ if (opts.help) {
70
70
  process.exit(0);
71
71
  }
72
72
  if (opts.version) {
73
- console.log(true ? "0.0.5" : "dev");
73
+ console.log(true ? "0.0.6" : "dev");
74
74
  process.exit(0);
75
75
  }
76
76
  var here = dirname(fileURLToPath(import.meta.url));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@streamapp/stream",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "description": "Stream — a self-hostable information-flow layer: many sources into one inbox, exposed to AI over MCP",
5
5
  "type": "module",
6
6
  "bin": {
@@ -174395,7 +174395,7 @@ async function runDesktopRecipeLocked(recipe, params, driver) {
174395
174395
  await driver.sleep(step.ms);
174396
174396
  }
174397
174397
  } catch (e) {
174398
- if (e instanceof ForegroundRefused) return stepFailed(step, e.message);
174398
+ if (e instanceof ForegroundRefused) return blocked("drift", e.message);
174399
174399
  throw e;
174400
174400
  }
174401
174401
  }