emilsoftware-utilities 1.2.6 → 1.2.7

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": "emilsoftware-utilities",
3
- "version": "1.2.6",
3
+ "version": "1.2.7",
4
4
  "description": "Utilities for EmilSoftware",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/src/utilities.ts CHANGED
@@ -136,7 +136,7 @@ const sendExecMessage = (res: Response, executionObject: any, title: string): Re
136
136
  let response = {
137
137
  Status: {
138
138
  errorCode: "0", errorDescription: "",
139
- }, Sql: sSql, ID: executionObject?.id, Title: title
139
+ }, Sql: sSql, ID: executionObject?.id, data: executionObject, Title: title
140
140
  };
141
141
  return res.send(response);
142
142
  } catch (error) {
package/utilities.js CHANGED
@@ -127,7 +127,7 @@ var sendExecMessage = function (res, executionObject, title) {
127
127
  var response = {
128
128
  Status: {
129
129
  errorCode: "0", errorDescription: "",
130
- }, Sql: sSql, ID: executionObject === null || executionObject === void 0 ? void 0 : executionObject.id, Title: title
130
+ }, Sql: sSql, ID: executionObject === null || executionObject === void 0 ? void 0 : executionObject.id, data: executionObject, Title: title
131
131
  };
132
132
  return res.send(response);
133
133
  }