taxtank-core 0.21.14 → 0.21.15
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 +3 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/transaction/transaction.js +4 -1
- package/fesm2015/taxtank-core.js +3 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/transaction/transaction.d.ts +1 -0
- package/package.json +1 -1
|
@@ -6031,6 +6031,9 @@
|
|
|
6031
6031
|
enumerable: false,
|
|
6032
6032
|
configurable: true
|
|
6033
6033
|
});
|
|
6034
|
+
Transaction.prototype.isFindAndMatch = function () {
|
|
6035
|
+
return this.operation === exports.TransactionOperationEnum.FIND_AND_MATCH;
|
|
6036
|
+
};
|
|
6034
6037
|
Object.defineProperty(Transaction.prototype, "debit", {
|
|
6035
6038
|
get: function () {
|
|
6036
6039
|
return this.isDebit() ? Math.abs(this.amount) : 0;
|