meshy-node 0.6.4 → 0.6.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.
@@ -1,4 +1,4 @@
1
- import{c as a}from"./index-DN5st9yl.js";/**
1
+ import{c as a}from"./index-dPEhtfos.js";/**
2
2
  * @license lucide-react v1.7.0 - ISC
3
3
  *
4
4
  * This source code is licensed under the ISC license.
@@ -5,8 +5,8 @@
5
5
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
6
6
  <title>Meshy Dashboard</title>
7
7
  <link rel="icon" type="image/svg+xml" href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>&#x1F578;</text></svg>" />
8
- <script type="module" crossorigin src="/assets/index-DN5st9yl.js"></script>
9
- <link rel="stylesheet" crossorigin href="/assets/index-CtsPt3oz.css">
8
+ <script type="module" crossorigin src="/assets/index-dPEhtfos.js"></script>
9
+ <link rel="stylesheet" crossorigin href="/assets/index-DylAWcjk.css">
10
10
  </head>
11
11
  <body>
12
12
  <div id="root"></div>
package/main.cjs CHANGED
@@ -57569,6 +57569,7 @@ var CodexEngine = class extends ExecutionEngine {
57569
57569
  const cwd = task.effectiveProjectPath ?? task.project ?? process.cwd();
57570
57570
  const initialContent = getTaskInitialMessageContent(task);
57571
57571
  const { prompt, imagePaths } = this.prepareAssets(task.id, initialContent);
57572
+ this.markCodexPromptEchoEmitted(task.id, prompt, imagePaths.length > 0);
57572
57573
  const args = this.buildArgs(imagePaths, { model: config2.model, mode: config2.mode ?? "bypass" });
57573
57574
  this.ensureLogDir();
57574
57575
  this.logger.info("Spawning codex CLI", { taskId: task.id, title: task.title, cwd });
@@ -57608,6 +57609,7 @@ var CodexEngine = class extends ExecutionEngine {
57608
57609
  this.appendLog(taskId, userEvent);
57609
57610
  this.emitOutput(taskId, userEvent);
57610
57611
  const { prompt, imagePaths } = this.prepareAssets(taskId, content);
57612
+ this.markCodexPromptEchoEmitted(taskId, prompt, imagePaths.length > 0);
57611
57613
  const args = this.buildArgs(imagePaths, {
57612
57614
  model,
57613
57615
  sessionId: session.sessionId,
@@ -57757,6 +57759,10 @@ var CodexEngine = class extends ExecutionEngine {
57757
57759
  markTranscriptEventEmitted(taskId, event) {
57758
57760
  this.getEmittedTranscriptSignatures(taskId).add(transcriptEventSignature(event));
57759
57761
  }
57762
+ markCodexPromptEchoEmitted(taskId, prompt, hasImages) {
57763
+ if (!hasImages || !prompt.trim()) return;
57764
+ this.markTranscriptEventEmitted(taskId, buildTaskUserLogEvent([{ type: "text", text: prompt }]));
57765
+ }
57760
57766
  startNativeSessionMirror(taskId, sessionId) {
57761
57767
  this.stopNativeSessionMirror(taskId);
57762
57768
  const mirror = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "meshy-node",
3
- "version": "0.6.4",
3
+ "version": "0.6.6",
4
4
  "private": false,
5
5
  "description": "Standalone Meshy node package with bundled runtime and dashboard assets.",
6
6
  "type": "commonjs",
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "packageName": "meshy-node",
3
- "packageVersion": "0.6.4",
3
+ "packageVersion": "0.6.6",
4
4
  "packages": {
5
5
  "workspace": {
6
6
  "name": "meshy",
7
- "version": "0.6.4"
7
+ "version": "0.6.6"
8
8
  },
9
9
  "node": {
10
10
  "name": "meshy-node",
11
- "version": "0.6.4"
11
+ "version": "0.6.6"
12
12
  },
13
13
  "core": {
14
14
  "name": "@meshy/core",
@@ -25,7 +25,7 @@
25
25
  },
26
26
  "repository": {
27
27
  "url": "https://github.com/ai-microsoft/meshy",
28
- "branch": "release05_23_1",
29
- "commit": "c3ee1e4"
28
+ "branch": "release0524",
29
+ "commit": "5db596d"
30
30
  }
31
31
  }