taxtank-core 0.21.3 → 0.21.6
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 +30 -16
- package/bundles/taxtank-core.umd.js.map +1 -1
- package/esm2015/lib/collections/depreciation.collection.js +3 -3
- package/esm2015/lib/models/bank/bank-account.js +7 -1
- package/esm2015/lib/services/http/bank/bank-connection/bank-connection.service.js +12 -10
- package/esm2015/lib/services/http/bank/basiq/basiq.service.js +5 -6
- package/esm2015/lib/services/http/chart-accounts/chart-accounts.service.js +8 -1
- package/fesm2015/taxtank-core.js +30 -16
- package/fesm2015/taxtank-core.js.map +1 -1
- package/lib/models/bank/bank-account.d.ts +4 -0
- package/package.json +1 -1
|
@@ -39,6 +39,10 @@ export declare class BankAccount extends BankAccountBase {
|
|
|
39
39
|
* check if bank account related to work tank
|
|
40
40
|
*/
|
|
41
41
|
isPropertyTank(): boolean;
|
|
42
|
+
/**
|
|
43
|
+
* check if bank account related to sole tank
|
|
44
|
+
*/
|
|
45
|
+
isSoleTank(): boolean;
|
|
42
46
|
/**
|
|
43
47
|
* Get Bank account property by id
|
|
44
48
|
* @param id Id of property
|