@felloh-org/lambda-wrapper 1.11.29 → 1.11.30

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.
@@ -99,7 +99,6 @@ let Refund = (_dec = (0, _typeorm.Entity)({
99
99
  var _this$status, _this$requesting_user, _this$authorised_user, _this$organisation, _this$transaction;
100
100
 
101
101
  return {
102
- id: this.transaction.id,
103
102
  amount: this.amount,
104
103
  status: this.status && typeof ((_this$status = this.status) === null || _this$status === void 0 ? void 0 : _this$status.getPublicData) === 'function' ? this.status.getPublicData() : null,
105
104
  requesting_user: this.requesting_user && typeof ((_this$requesting_user = this.requesting_user) === null || _this$requesting_user === void 0 ? void 0 : _this$requesting_user.getPublicData) === 'function' ? this.requesting_user.getPublicCompactData() : null,
@@ -179,6 +179,8 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
179
179
  }
180
180
 
181
181
  getPublicData() {
182
+ var _this$refund, _this$refund$status, _this$refund2;
183
+
182
184
  const response = {
183
185
  id: this.id,
184
186
  amount: this.amount,
@@ -202,7 +204,7 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
202
204
  response.settlement = this.settlement;
203
205
  }
204
206
 
205
- if (this.refund !== null && typeof this.refund.getPublicData === 'function') {
207
+ if (this.refund !== null && typeof ((_this$refund = this.refund) === null || _this$refund === void 0 ? void 0 : (_this$refund$status = _this$refund.status) === null || _this$refund$status === void 0 ? void 0 : _this$refund$status.id) !== 'undefined' && typeof ((_this$refund2 = this.refund) === null || _this$refund2 === void 0 ? void 0 : _this$refund2.getPublicData) === 'function') {
206
208
  response.refund = this.refund.getPublicData();
207
209
  }
208
210
 
@@ -240,6 +242,8 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
240
242
  }
241
243
 
242
244
  getPublicCompactData() {
245
+ var _this$refund3, _this$refund3$status, _this$refund4;
246
+
243
247
  const response = {
244
248
  id: this.id,
245
249
  amount: this.amount,
@@ -257,7 +261,7 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
257
261
  response.settlement = this.settlement;
258
262
  }
259
263
 
260
- if (this.refund !== null && typeof this.refund.getPublicData === 'function') {
264
+ if (this.refund !== null && typeof ((_this$refund3 = this.refund) === null || _this$refund3 === void 0 ? void 0 : (_this$refund3$status = _this$refund3.status) === null || _this$refund3$status === void 0 ? void 0 : _this$refund3$status.id) !== 'undefined' && typeof ((_this$refund4 = this.refund) === null || _this$refund4 === void 0 ? void 0 : _this$refund4.getPublicData) === 'function') {
261
265
  response.refund = this.refund.getPublicData();
262
266
  }
263
267
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felloh-org/lambda-wrapper",
3
- "version": "1.11.29",
3
+ "version": "1.11.30",
4
4
  "description": "Lambda wrapper for all Felloh Serverless Projects",
5
5
  "main": "dist/index.js",
6
6
  "engines": {