zudello-execute-local 1.1.0 → 1.1.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "zudello-execute-local",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Zudello Execute tool for local runs",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -138,8 +138,6 @@ const initiateNodeVM = (dirNamePath) => {
138
138
  const runScript = async (handler, source, object, loggerMode, dirNamePath, dirNameFilePath) => {
139
139
  const nodeVM = initiateNodeVM(dirNamePath)
140
140
 
141
- console.log(process.env)
142
-
143
141
  const authData = {
144
142
  team_uuid: process.env.AUTH_TEAM_UUID,
145
143
  jwt_token: process.env.AUTH_JWT_TOKEN,
@@ -150,10 +148,6 @@ const runScript = async (handler, source, object, loggerMode, dirNamePath, dirNa
150
148
  auth_api_url: process.env.AUTH_AUTH_API_URL
151
149
  }
152
150
 
153
- console.log(authData)
154
- console.log(dirNamePath)
155
- console.log(dirNameFilePath)
156
-
157
151
  const externalIntegrationName = process.env.EXTERNAL_INTEGRATION_NAME
158
152
  const externalConnectionUUID = process.env.EXTERNAL_CONNECTION_UUID
159
153