taxtank-core 0.5.0 → 0.5.1
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 -0
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/interfaces/income-source-forecast.interface.js +1 -1
- package/esm2015/lib/models/income-source/income-source-forecast.js +1 -1
- package/esm2015/lib/models/income-source/salary-forecast.js +1 -1
- package/esm2015/lib/models/income-source/sole-forecast.js +5 -1
- package/esm2015/lib/services/income-source/sole-forecast.service.js +1 -1
- package/fesm2015/taxtank-core.js +4 -0
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/interfaces/income-source-forecast.interface.d.ts +1 -0
- package/lib/models/income-source/income-source-forecast.d.ts +0 -3
- package/lib/models/income-source/salary-forecast.d.ts +0 -8
- package/lib/models/income-source/sole-forecast.d.ts +1 -4
- package/package.json +1 -1
|
@@ -5124,6 +5124,14 @@
|
|
|
5124
5124
|
function SoleForecast() {
|
|
5125
5125
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
5126
5126
|
}
|
|
5127
|
+
Object.defineProperty(SoleForecast.prototype, "netPay", {
|
|
5128
|
+
get: function () {
|
|
5129
|
+
return this.amount;
|
|
5130
|
+
},
|
|
5131
|
+
enumerable: false,
|
|
5132
|
+
configurable: true
|
|
5133
|
+
});
|
|
5134
|
+
;
|
|
5127
5135
|
return SoleForecast;
|
|
5128
5136
|
}(SoleForecast$1));
|
|
5129
5137
|
__decorate([
|