zudello-execute-local 1.0.30 → 1.0.32
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/index.js +24 -0
- package/package.json +2 -2
package/index.js
CHANGED
|
@@ -193,6 +193,26 @@ const runScript = async (handler, source, object) => {
|
|
|
193
193
|
const JobReady = new JobReadySDK(auth, '${externalConnectionUUID}', '${authData.organization_uuid}', '${authData.external_api_url}', '${authData.api_version}', logger)
|
|
194
194
|
`;
|
|
195
195
|
break;
|
|
196
|
+
case "x3":
|
|
197
|
+
triggerExternal = `
|
|
198
|
+
const X3 = new X3SDK(auth, '${externalConnectionUUID}', '${authData.organization_uuid}', '${authData.external_api_url}', '${authData.api_version}', logger)
|
|
199
|
+
`;
|
|
200
|
+
break;
|
|
201
|
+
case "navision":
|
|
202
|
+
triggerExternal = `
|
|
203
|
+
const Navision = new NavisionSDK(auth, '${externalConnectionUUID}', '${authData.organization_uuid}', '${authData.external_api_url}', '${authData.api_version}', logger)
|
|
204
|
+
`;
|
|
205
|
+
break;
|
|
206
|
+
case "myobAccountRight":
|
|
207
|
+
triggerExternal = `
|
|
208
|
+
const MYOBAccountRight = new MYOBAccountRightSDK(auth, '${externalConnectionUUID}', '${authData.organization_uuid}', '${authData.external_api_url}', '${authData.api_version}', logger)
|
|
209
|
+
`;
|
|
210
|
+
break;
|
|
211
|
+
case "sunSystems":
|
|
212
|
+
triggerExternal = `
|
|
213
|
+
const SunSystems = new SunSystemsSDK(auth, '${externalConnectionUUID}', '${authData.organization_uuid}', '${authData.external_api_url}', '${authData.api_version}', logger)
|
|
214
|
+
`;
|
|
215
|
+
break;
|
|
196
216
|
}
|
|
197
217
|
}
|
|
198
218
|
|
|
@@ -205,6 +225,7 @@ const runScript = async (handler, source, object) => {
|
|
|
205
225
|
NetsuiteSDK,
|
|
206
226
|
NetsuiteSoapSDK,
|
|
207
227
|
IntacctSDK,
|
|
228
|
+
X3SDK,
|
|
208
229
|
BusinessCentralSDK,
|
|
209
230
|
ZenotiSDK,
|
|
210
231
|
DearSDK,
|
|
@@ -212,7 +233,10 @@ const runScript = async (handler, source, object) => {
|
|
|
212
233
|
FoSDK,
|
|
213
234
|
RetailExpressSDK,
|
|
214
235
|
MYOBAcumaticaSDK,
|
|
236
|
+
MYOBAccountRightSDK,
|
|
215
237
|
SybizSDK,
|
|
238
|
+
SunSystemsSDK,
|
|
239
|
+
NavisionSDK,
|
|
216
240
|
XeroSDK,
|
|
217
241
|
JobReadySDK,
|
|
218
242
|
Logger,
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "zudello-execute-local",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.32",
|
|
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.
|
|
23
|
+
"zudello-integration-sdk": "^1.0.36"
|
|
24
24
|
}
|
|
25
25
|
}
|