@felloh-org/lambda-wrapper 1.11.29 → 1.11.31
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,22 +95,26 @@ let Refund = (_dec = (0, _typeorm.Entity)({
|
|
|
95
95
|
_initializerDefineProperty(this, "deleted_at", _descriptor12, this);
|
|
96
96
|
}
|
|
97
97
|
|
|
98
|
-
getPublicData() {
|
|
98
|
+
getPublicData(showAuthorisationCode = false) {
|
|
99
99
|
var _this$status, _this$requesting_user, _this$authorised_user, _this$organisation, _this$transaction;
|
|
100
100
|
|
|
101
|
-
|
|
102
|
-
id: this.transaction.id,
|
|
101
|
+
const response = {
|
|
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,
|
|
106
105
|
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
106
|
authorised_at: this.authorised_at,
|
|
109
107
|
organisation: this.organisation && typeof ((_this$organisation = this.organisation) === null || _this$organisation === void 0 ? void 0 : _this$organisation.getPublicCompactData) === 'function' ? this.organisation.getPublicCompactData() : null,
|
|
110
108
|
completed_at: this.completed_at,
|
|
111
109
|
transaction: this.transaction && typeof ((_this$transaction = this.transaction) === null || _this$transaction === void 0 ? void 0 : _this$transaction.getPublicData) === 'function' ? this.transaction.getPublicData() : null,
|
|
112
110
|
created_at: this.created_at
|
|
113
111
|
};
|
|
112
|
+
|
|
113
|
+
if (showAuthorisationCode === true) {
|
|
114
|
+
response.authorisation_code = this.authorisation_code;
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
return response;
|
|
114
118
|
}
|
|
115
119
|
|
|
116
120
|
}, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "transaction", [_dec2, _dec3], {
|
|
@@ -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
|
|