@lobehub/cli 0.0.12-beta.3 → 0.0.12-beta.4

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
@@ -209115,7 +209115,10 @@ const exec = async (options) => {
209115
209115
  }
209116
209116
  const exitedClean = !ingestError && (code === 0 || signal === "SIGTERM");
209117
209117
  try {
209118
- await sink.finish({ result: exitedClean ? "success" : "error" });
209118
+ await sink.finish({
209119
+ result: exitedClean ? "success" : "error",
209120
+ sessionId: handle.sessionId
209121
+ });
209119
209122
  } catch (err) {
209120
209123
  log$7.error("Failed to send heteroFinish:", err instanceof Error ? err.message : String(err));
209121
209124
  }
package/man/man1/lh.1 CHANGED
@@ -1,6 +1,6 @@
1
1
  .\" Code generated by `npm run man:generate`; DO NOT EDIT.
2
2
  .\" Manual command details come from the Commander command tree.
3
- .TH LH 1 "" "@lobehub/cli 0.0.12\-beta.3" "User Commands"
3
+ .TH LH 1 "" "@lobehub/cli 0.0.12\-beta.4" "User Commands"
4
4
  .SH NAME
5
5
  lh \- LobeHub CLI \- manage and connect to LobeHub services
6
6
  .SH SYNOPSIS
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/cli",
3
- "version": "0.0.12-beta.3",
3
+ "version": "0.0.12-beta.4",
4
4
  "type": "module",
5
5
  "bin": {
6
6
  "lh": "./dist/index.js",