@turbotic/taai-agent 0.0.6 → 0.0.7

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/build/run.js +1 -1
  2. package/package.json +1 -1
package/build/run.js CHANGED
@@ -736,7 +736,7 @@ class Runner {
736
736
  resume = false;
737
737
  }
738
738
  const scriptFramePath = path_1.default.join(__dirname, '..', 'script-frame', 'build', 'index.js');
739
- const cmd = this.automationVersion === "3" ? `${scriptFramePath} -a ${resume === true ? 'resume' : 'run'} ${resume === true ? '-t ' + runTokenId : ''} -e ${process.env.EXECUTION_ID} -u ${agentEndpoint} ${runFromStepId ? '-s ' + runFromStepId : ''} ${runOne ? '-o' : ''} ${temporaryRunTokenId ? '--tempTokenId ' + temporaryRunTokenId : ''}` : `node code.js`;
739
+ const cmd = this.automationVersion === "3" ? `node ${scriptFramePath} -a ${resume === true ? 'resume' : 'run'} ${resume === true ? '-t ' + runTokenId : ''} -e ${process.env.EXECUTION_ID} -u ${agentEndpoint} ${runFromStepId ? '-s ' + runFromStepId : ''} ${runOne ? '-o' : ''} ${temporaryRunTokenId ? '--tempTokenId ' + temporaryRunTokenId : ''}` : `node code.js`;
740
740
  // Reset buffers for new run
741
741
  this.__stdoutBuffer = '';
742
742
  this.__stderrBuffer = '';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@turbotic/taai-agent",
3
- "version": "0.0.6",
3
+ "version": "0.0.7",
4
4
  "main": "build/index.js",
5
5
  "bin": {
6
6
  "taai-agent": "build/index.js"