botmux-workflow-core 3.18.14 → 3.19.3

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.
@@ -5741,7 +5741,11 @@ async function runWorkflow(dag, deps, opts) {
5741
5741
  nodeId: node.id,
5742
5742
  ...instanceId ? { instanceId } : {},
5743
5743
  attemptId,
5744
- sessionInfo: { sessionId: info.sessionId, webPort: info.webPort },
5744
+ sessionInfo: {
5745
+ sessionId: info.sessionId,
5746
+ webPort: info.webPort,
5747
+ ...info.viewToken ? { viewToken: info.viewToken } : {}
5748
+ },
5745
5749
  ptyLogPath: info.ptyLogPath
5746
5750
  });
5747
5751
  }