@felloh-org/lambda-wrapper 1.11.27 → 1.11.29
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,24 @@ 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, _this$transaction;
|
|
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
|
+
transaction: this.transaction && typeof ((_this$transaction = this.transaction) === null || _this$transaction === void 0 ? void 0 : _this$transaction.getPublicData) === 'function' ? this.transaction.getPublicData() : null,
|
|
112
|
+
created_at: this.created_at
|
|
113
|
+
};
|
|
114
|
+
}
|
|
115
|
+
|
|
98
116
|
}, (_descriptor = _applyDecoratedDescriptor(_class2.prototype, "transaction", [_dec2, _dec3], {
|
|
99
117
|
configurable: true,
|
|
100
118
|
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,
|
|
@@ -202,6 +202,10 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
|
|
|
202
202
|
response.settlement = this.settlement;
|
|
203
203
|
}
|
|
204
204
|
|
|
205
|
+
if (this.refund !== null && typeof this.refund.getPublicData === 'function') {
|
|
206
|
+
response.refund = this.refund.getPublicData();
|
|
207
|
+
}
|
|
208
|
+
|
|
205
209
|
if (this.booking !== null && typeof this.booking.id !== 'undefined' && typeof this.booking.getPublicData === 'function') {
|
|
206
210
|
response.booking = this.booking.getPublicData();
|
|
207
211
|
}
|
|
@@ -253,6 +257,10 @@ let Transaction = (_dec = (0, _typeorm.Entity)({
|
|
|
253
257
|
response.settlement = this.settlement;
|
|
254
258
|
}
|
|
255
259
|
|
|
260
|
+
if (this.refund !== null && typeof this.refund.getPublicData === 'function') {
|
|
261
|
+
response.refund = this.refund.getPublicData();
|
|
262
|
+
}
|
|
263
|
+
|
|
256
264
|
if (this.booking !== null && typeof this.booking.id !== 'undefined' && typeof this.booking.getPublicCompactData === 'function') {
|
|
257
265
|
response.booking = this.booking.getPublicCompactData();
|
|
258
266
|
}
|