taxtank-core 1.0.82 → 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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "taxtank-core",
3
- "version": "1.0.82",
3
+ "version": "1.0.83",
4
4
  "private": false,
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^19.0.2",
@@ -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;
@@ -1,4 +1,6 @@
1
1
  export declare enum BankAccountStatusEnum {
2
2
  INACTIVE = 0,
3
- ACTIVE = 1
3
+ ACTIVE = 1,
4
+ DISCONNECTED = 2,
5
+ REPLACED = 3
4
6
  }
@@ -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;