@manyos/smileconnect-api 1.37.0 → 1.38.1

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.
@@ -102,7 +102,7 @@ async function executeCode(code, requestData, params, logStream, executedByScrip
102
102
  try {
103
103
  const result = await vm.run(
104
104
  `return new Promise(async function(resolve, reject) {try {${code}} catch (error) {reject(error);}});`,
105
- 'vm.js');
105
+ scriptId || 'vm.js');
106
106
  log.debug('script ended', result);
107
107
  return result;
108
108
  } catch (e) {