oasis_test 0.1.39 → 0.1.40

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.
Files changed (2) hide show
  1. package/dist/index.js +4 -3
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -55440,10 +55440,11 @@ async function startServe(opts) {
55440
55440
  }
55441
55441
  }
55442
55442
  }
55443
+ const sessionLine = chatSessionId ? `chat_session_id: ${chatSessionId}` : `runtime_session_id: ${runtimeSessionId}`;
55443
55444
  const taskHeader = workspace ? [
55444
55445
  "# \u4E0E\u5DE5\u5355\u7BA1\u7406\u8005\u5BF9\u8BDD",
55445
55446
  "",
55446
- `runtime_session_id: ${runtimeSessionId}`,
55447
+ sessionLine,
55447
55448
  `actor_id: ${actorId}`,
55448
55449
  `workspace: ${workspace}`,
55449
55450
  "",
@@ -55451,7 +55452,7 @@ async function startServe(opts) {
55451
55452
  ] : [
55452
55453
  "# \u5373\u65F6\u8111\u66B4\u5BF9\u8BDD",
55453
55454
  "",
55454
- `runtime_session_id: ${runtimeSessionId}`,
55455
+ sessionLine,
55455
55456
  `actor_id: ${actorId}`,
55456
55457
  "",
55457
55458
  "\u8BF7\u76F4\u63A5\u56DE\u7B54\u7528\u6237\u95EE\u9898\u3002\u9664\u975E\u7528\u6237\u660E\u786E\u8981\u6C42\u5199\u5165\u7CFB\u7EDF\uFF0C\u5426\u5219\u4E0D\u8981\u521B\u5EFA\u6216\u4FEE\u6539 artifact\u3002"
@@ -58121,7 +58122,7 @@ ${res.warning}`);
58121
58122
  }
58122
58123
 
58123
58124
  // src/index.ts
58124
- var PKG_VERSION = true ? "0.1.39" : "dev";
58125
+ var PKG_VERSION = true ? "0.1.40" : "dev";
58125
58126
  var OASIS_DIR = path18.join(os10.homedir(), ".oasis");
58126
58127
  var CONFIG_FILE = path18.join(OASIS_DIR, "node-config.json");
58127
58128
  var PID_FILE = path18.join(OASIS_DIR, "node.pid");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "oasis_test",
3
- "version": "0.1.39",
3
+ "version": "0.1.40",
4
4
  "description": "Oasis node daemon + CLI — background daemon, auto-start, full server CLI",
5
5
  "bin": {
6
6
  "oasis": "./dist/index.js"