zudello-execute-local 1.1.3 → 1.1.4

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.3",
3
+ "version": "1.1.4",
4
4
  "description": "Zudello Execute tool for local runs",
5
5
  "main": "index.js",
6
6
  "bin": {
@@ -20,6 +20,6 @@
20
20
  "performance-now": "^2.1.0",
21
21
  "vm2": "^3.9.19",
22
22
  "yargs": "^17.7.2",
23
- "zudello-integration-sdk": "^1.0.51"
23
+ "zudello-integration-sdk": "^1.0.52"
24
24
  }
25
- }
25
+ }
@@ -173,7 +173,7 @@ const runScript = async (handler, source, object, loggerMode, dirNamePath, dirNa
173
173
 
174
174
  const classesInUse = [
175
175
  'Logger', 'Metadata', 'Tags', 'Trigger', 'Properties', 'MiscHelper',
176
- 'ModelHelper', 'DatasetHelper', 'S3Client', 'Auth', 'ZudelloSDK', 'ZudelloAuthSDK'
176
+ 'ModelHelper', 'DatasetHelper', 'S3Client', 'Auth', 'ZudelloSDK', 'ZudelloAuthSDK', 'ZudelloStoreSDK'
177
177
  ]
178
178
 
179
179
  const initAuth = `
@@ -186,6 +186,7 @@ const runScript = async (handler, source, object, loggerMode, dirNamePath, dirNa
186
186
  const initZudello = `
187
187
  const Zudello = new ZudelloSDK(auth, '${authData.organization_uuid}', '${authData.api_url}', '${authData.api_version}', logger)
188
188
  const ZudelloAuth = new ZudelloAuthSDK(auth, '${authData.organization_uuid}', '${authData.auth_api_url}', '${authData.api_version}', logger)
189
+ const ZudelloStore = new ZudelloStoreSDK(auth, '${authData.organization_uuid}', '${authData.auth_api_url}', '${authData.api_version}', logger)
189
190
  `
190
191
 
191
192
  let initExternalConnections = ''