taxtank-core 0.17.2 → 0.17.5
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/bundles/taxtank-core.umd.js +8 -3
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/db/Models/transaction/transaction-base.js +10 -1
- package/esm2015/lib/models/transaction/transaction.js +2 -5
- package/fesm2015/taxtank-core.js +8 -4
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/db/Models/transaction/transaction-base.d.ts +5 -1
- package/lib/models/transaction/transaction.d.ts +0 -1
- package/package.json +1 -1
|
@@ -2721,6 +2721,14 @@
|
|
|
2721
2721
|
};
|
|
2722
2722
|
return TransactionBase;
|
|
2723
2723
|
}(AbstractModel));
|
|
2724
|
+
__decorate([
|
|
2725
|
+
classTransformer.Exclude({ toPlainOnly: true }),
|
|
2726
|
+
classTransformer.Type(function () { return Object; }),
|
|
2727
|
+
classTransformer.Transform(function (_b) {
|
|
2728
|
+
var obj = _b.obj;
|
|
2729
|
+
return obj.file;
|
|
2730
|
+
})
|
|
2731
|
+
], TransactionBase.prototype, "file", void 0);
|
|
2724
2732
|
|
|
2725
2733
|
var Depreciation$1 = /** @class */ (function (_super) {
|
|
2726
2734
|
__extends(Depreciation, _super);
|
|
@@ -5033,9 +5041,6 @@
|
|
|
5033
5041
|
__decorate([
|
|
5034
5042
|
classTransformer.Type(function () { return TransactionAllocation; })
|
|
5035
5043
|
], Transaction.prototype, "allocations", void 0);
|
|
5036
|
-
__decorate([
|
|
5037
|
-
classTransformer.Exclude({ toPlainOnly: true })
|
|
5038
|
-
], Transaction.prototype, "file", void 0);
|
|
5039
5044
|
|
|
5040
5045
|
var BankTransaction = /** @class */ (function (_super) {
|
|
5041
5046
|
__extends(BankTransaction, _super);
|