taxtank-core 1.0.80 → 1.0.83
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/README.md +5 -5
- package/fesm2022/taxtank-core-common.mjs.map +1 -1
- package/fesm2022/taxtank-core.mjs +19 -13
- package/fesm2022/taxtank-core.mjs.map +1 -1
- package/package.json +1 -1
- package/src/lib/collections/bank-account.collection.d.ts +1 -0
- package/src/lib/db/Enums/bank/bank-account-status.enum.d.ts +3 -1
- package/src/lib/models/depreciation/depreciation.d.ts +0 -1
package/package.json
CHANGED
@@ -21,6 +21,7 @@ export declare class BankAccountCollection extends Collection<BankAccount> {
|
|
21
21
|
* get collection of active bank accounts
|
22
22
|
*/
|
23
23
|
getActive(): BankAccountCollection;
|
24
|
+
getConnected(): BankAccountCollection;
|
24
25
|
getLoanAccounts(): BankAccountCollection;
|
25
26
|
getLoanAndOffsetAccounts(): BankAccountCollection;
|
26
27
|
getDebitAccounts(): BankAccountCollection;
|
@@ -12,7 +12,6 @@ import { Expense } from '../../interfaces';
|
|
12
12
|
export declare class Depreciation extends DepreciationBase implements Expense {
|
13
13
|
static writtenOffThreshold: number;
|
14
14
|
static lowValuePoolThreshold: number;
|
15
|
-
purchaseDate: Date;
|
16
15
|
date: Date;
|
17
16
|
claimStartDate: Date;
|
18
17
|
lowValuePoolDate: Date;
|