taxtank-core 0.28.26 → 0.28.28
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 +2 -1
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/models/bank/bank-account.js +2 -2
- package/esm2015/lib/models/endpoint/endpoints.const.js +2 -1
- package/fesm2015/taxtank-core.js +2 -1
- package/fesm2015/taxtank-core.js.map +1 -1
- package/package.json +1 -1
|
@@ -987,6 +987,7 @@
|
|
|
987
987
|
DEPRECIATIONS_GET: new Endpoint('GET', '\\/depreciations'),
|
|
988
988
|
DEPRECIATIONS_POST: new Endpoint('POST', '\\/depreciations'),
|
|
989
989
|
DEPRECIATIONS_PUT: new Endpoint('PUT', '\\/depreciations\\/\\d+'),
|
|
990
|
+
DEPRECIATIONS_DELETE: new Endpoint('DELETE', '\\/depreciations\\/\\d+'),
|
|
990
991
|
DEPRECIATION_RECEIPTS_POST: new Endpoint('POST', '\\/depreciations\\/\\d+\\/receipts'),
|
|
991
992
|
DEPRECIATION_RECEIPTS_DELETE: new Endpoint('DELETE', '\\/depreciations\\/\\d+\\/receipts\\/\\d+'),
|
|
992
993
|
EMPLOYEES_GET: new Endpoint('GET', '\\/employees'),
|
|
@@ -5754,7 +5755,7 @@
|
|
|
5754
5755
|
* Get last digits of account number
|
|
5755
5756
|
*/
|
|
5756
5757
|
get: function () {
|
|
5757
|
-
return "xxxx" + this.accountNumber.slice(-4
|
|
5758
|
+
return "xxxx" + this.accountNumber.slice(-4);
|
|
5758
5759
|
},
|
|
5759
5760
|
enumerable: false,
|
|
5760
5761
|
configurable: true
|