@ikonintegration/ikapi 3.1.36 → 3.1.38

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": "@ikonintegration/ikapi",
3
- "version": "3.1.36",
3
+ "version": "3.1.38",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "module": "main.js",
@@ -18,7 +18,7 @@
18
18
  "@aws-sdk/node-http-handler": "3.190.0",
19
19
  "@aws-sdk/util-dynamodb": "3.190.0",
20
20
  "@aws-sdk/util-endpoints": "3.190.0",
21
- "@ikonintegration/mod-resources-tracker-client": "0.0.18",
21
+ "@ikonintegration/mod-resources-tracker-client": "0.0.19",
22
22
  "abind": "^1.0.5",
23
23
  "bluebird": "^3.7.2",
24
24
  "email-templates": "^8.0.8",
@@ -60,6 +60,8 @@ export default class IKTransaction {
60
60
  await this._resp.build(this._context, this, this._syncReturn);
61
61
  executionFailed = !!(this._resp.getBody() && this._resp.getBody().rollback);
62
62
  } else if (this._syncReturn && this._resp) { //sync return can return other than ikresponse
63
+ this.logger.log("Sync return with different response object:");
64
+ this.logger.debug(this._resp);
63
65
  executionFailed = false;
64
66
  } else {
65
67
  this._resp = this._getErrorResponse(IKGlobals.ErrorResponseInvalidServerResponse, IKGlobals.ErrorCode_APIError)