@felloh-org/lambda-wrapper 1.11.27 → 1.11.28

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.
@@ -95,6 +95,23 @@ let Refund = (_dec = (0, _typeorm.Entity)({
95
95
  _initializerDefineProperty(this, "deleted_at", _descriptor12, this);
96
96
  }
97
97
 
98
+ getPublicData() {
99
+ var _this$status, _this$requesting_user, _this$authorised_user, _this$organisation;
100
+
101
+ return {
102
+ id: this.transaction.id,
103
+ amount: this.amount,
104
+ status: this.status && typeof ((_this$status = this.status) === null || _this$status === void 0 ? void 0 : _this$status.getPublicData) === 'function' ? this.status.getPublicData() : null,
105
+ 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,
106
+ authorised_user: this.authorised_user && typeof ((_this$authorised_user = this.authorised_user) === null || _this$authorised_user === void 0 ? void 0 : _this$authorised_user.getPublicData) === 'function' ? this.authorised_user.getPublicCompactData() : null,
107
+ authorisation_code: this.authorisation_code,
108
+ authorised_at: this.authorised_at,
109
+ organisation: this.organisation && typeof ((_this$organisation = this.organisation) === null || _this$organisation === void 0 ? void 0 : _this$organisation.getPublicCompactData) === 'function' ? this.organisation.getPublicCompactData() : null,
110
+ completed_at: this.completed_at,
111
+ created_at: this.created_at
112
+ };
113
+ }
114
+
98
115
  }, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "transaction", [_dec2, _dec3], {
99
116
  configurable: true,
100
117
  enumerable: true,
@@ -25,6 +25,12 @@ let RefundStatus = (_dec = (0, _typeorm.Entity)({
25
25
  _initializerDefineProperty(this, "created_at", _descriptor2, this);
26
26
  }
27
27
 
28
+ getPublicData() {
29
+ return {
30
+ id: this.id
31
+ };
32
+ }
33
+
28
34
  }, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "id", [_dec2], {
29
35
  configurable: true,
30
36
  enumerable: true,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@felloh-org/lambda-wrapper",
3
- "version": "1.11.27",
3
+ "version": "1.11.28",
4
4
  "description": "Lambda wrapper for all Felloh Serverless Projects",
5
5
  "main": "dist/index.js",
6
6
  "engines": {